.hero-section {
    min-height: 100vh;
    padding: 140px 0 40px 0;
    display: flex;
    align-items: center;
    position: relative;
    /* 移除白霧，完全呈現原圖 */
    background-image: url('../assets/images/hero-bg_2.webp');
    background-position: 25% center;
    background-size: 135% auto;
    background-repeat: no-repeat;
}

.hero-content-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: -60px;
}

/* 將文字區塊向右推近畫面中央 */
.hero-left-transparent {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10%;
}

.ai-badge {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 6px 16px;
    border-radius: 980px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 24px;
    display: inline-block;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* 所有文字設定為純黑 #000000，加上極強白底光圈避免與背景樹木混色 */
.hero-title {
    font-size: clamp(3rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9), 0 0 25px rgba(255, 255, 255, 1), 0 0 45px rgba(255, 255, 255, 1);
}

.hero-title span {
    color: #000000;
}

.hero-desc {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 36px;
    font-weight: 800;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 1);
}

.hero-btn-group {
    display: flex;
    gap: 16px;
    width: 100%;
}

.hero-right-dashboard-container {
    max-width: 280px;
    width: 100%;
    margin-top: 80px;
    margin-right: 4%;
}

/* Dashboard 透明度降至 25% (0.25) */
.stream-dashboard-box {
    padding: 30px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(12, 18, 28, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.db-stream-list {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.db-stream-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.db-stream-item:first-child {
    padding-top: 0;
}

.db-stream-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.db-stream-item .db-icon {
    font-size: 1.6rem;
    width: 40px;
    text-align: center;
}

.db-stream-item-text {
    display: flex;
    flex-direction: column;
}

.db-stream-item-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.db-stream-item-text strong {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    font-family: monospace;
    margin-top: 2px;
}

.game-btn {
    text-wrap: balance;
}

@media (max-width: 1200px) {
    .hero-section {
        min-height: auto;
        padding-top: 170px;
        background-size: cover;
        background-position: 35% center;
    }

    .hero-content-wrapper {
        margin-top: 0;
        gap: 32px;
    }

    .hero-left-transparent {
        max-width: 100%;
        margin-left: 0;
    }

    .hero-right-dashboard-container {
        max-width: 360px;
        margin-top: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 160px 0 36px;
    }

    .hero-content-wrapper {
        text-align: center;
    }

    .hero-left-transparent {
        align-items: center;
    }

    .hero-btn-group {
        flex-direction: column;
    }

    .hero-btn-group .ed-btn {
        width: 100%;
    }

    .hero-title {
        font-size: clamp(2.1rem, 8vw, 3rem);
    }

    .hero-desc {
        font-size: 1rem;
    }

    .stream-dashboard-box {
        padding: 24px 18px;
    }
}