/* ======================================================= */
/* 💻 SECTION 1: 全局样式、基础设置与 PC 端大布局（黑金奢华配色方案） */
/* ======================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: #0b0c10; /* 原有奢华暗黑底色 */
    color: #eeeeee;
    line-height: 1.4;
}

a { 
    text-decoration: none; 
}

/* 留空虚线块 */
.img-placeholder {
    border: 2px dashed #3a3a3a;
    background-color: #15161a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 12px;
    font-weight: 600;
}

/* --- 1. 顶部全导航 --- */
.site-header {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.97) 0%, rgba(0, 0, 0, 0.98) 100%);
    padding: 0 24px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 68px;
}

.logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    height: 42px;
}

.brand-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.subpage-nav {
    display: flex;
    gap: 6px;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    padding: 4px;
}

.nav-item {
    color: #b8b8b8;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: color 0.25s ease, background 0.25s ease;
    padding: 10px 22px;
    border-radius: 999px;
    position: relative;
    white-space: nowrap;
}

.nav-item:hover {
    color: #f0f0f0;
    background: rgba(255, 255, 255, 0.06);
}

.nav-item.active {
    color: #f0d060;
    background: rgba(212, 175, 55, 0.14);
}

.nav-item.active::after {
    display: none;
}

.nav-hot-fire {
    display: inline-block;
    margin-left: 4px;
    line-height: 1;
    animation: nav-fire-flicker 1.1s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes nav-fire-flicker {
    0%, 100% {
        transform: scale(1) translateY(0);
        filter: brightness(1) drop-shadow(0 0 2px rgba(255, 120, 0, 0.5));
    }
    25% {
        transform: scale(1.18) translateY(-1px) rotate(-4deg);
        filter: brightness(1.25) drop-shadow(0 0 5px rgba(255, 140, 0, 0.75));
    }
    50% {
        transform: scale(0.92) translateY(1px) rotate(3deg);
        filter: brightness(0.95) drop-shadow(0 0 3px rgba(255, 90, 0, 0.45));
    }
    75% {
        transform: scale(1.12) translateY(-2px) rotate(-2deg);
        filter: brightness(1.15) drop-shadow(0 0 6px rgba(255, 160, 0, 0.8));
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-hot-fire {
        animation: none;
    }
}

.auth-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.btn-signup {
    border: 1.5px solid rgba(212, 175, 55, 0.65);
    color: #d4af37;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
}

.btn-signup:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: #d4af37;
    color: #f0d060;
}

.btn-signin {
    background: linear-gradient(135deg, #e8c050 0%, #c9961a 100%);
    color: #1a1200;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
}

.btn-signin:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

/* --- 2. Homepage Hero Banner --- */
.hero-banner-section {
    width: 100%;
    background: linear-gradient(180deg, #050508 0%, #0b0c10 100%);
    border-bottom: 1px solid #26272b;
}

.hero-banner-stage {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 24px 20px 0;
}

.hero-banner-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(212, 175, 55, 0.08);
}

.hero-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center bottom;
    min-height: 280px;
    max-height: 520px;
}

.hero-banner-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 35%,
        rgba(0, 0, 0, 0.35) 70%,
        rgba(0, 0, 0, 0.82) 100%
    );
    pointer-events: none;
}

.hero-title-float {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    z-index: 3;
    width: min(94%, 880px);
    text-align: center;
    pointer-events: none;
}

.hero-title-float .hero-mini-tag {
    color: #f0d060;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.hero-title-float h1 {
    margin: 0;
    font-size: clamp(26px, 4.5vw, 50px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.9),
        0 0 48px rgba(212, 175, 55, 0.2);
}

.hero-below-content {
    max-width: 680px;
    margin: 0 auto;
    padding: clamp(52px, 9vw, 88px) 24px 44px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-below-content .hero-slogan {
    color: #a8a8a8;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 28px;
    max-width: 560px;
}

/* Promotions / standalone banner zone */
.main-banner-zone {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

body > .main-banner-zone {
    aspect-ratio: 1920 / 550;
    height: auto;
    padding: 0;
    background: #0b0c10;
}

body > .main-banner-zone .banner-viewport {
    border-radius: 0;
    max-height: none;
    box-shadow: none;
    border: none;
}

.banner-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    background: #000;
}

.banner-static-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

body > .main-banner-zone .banner-static-img {
    max-width: 1140px;
    margin: 0 auto;
    border-radius: 14px;
}

.banner-slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.08) 40%, transparent 70%);
    pointer-events: none;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 2px 0;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.banner-viewport:hover .banner-nav {
    opacity: 1;
}

.banner-nav:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.5);
}

.banner-prev { left: 12px; }
.banner-next { right: 12px; padding-left: 2px; }

.banner-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.banner-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.banner-dot.active {
    background: #f0d060;
    width: 20px;
    border-radius: 4px;
}

.banner-slide {
    width: 33.3333%;
    height: 100%;
    flex-shrink: 0;
}

.banner-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* --- 3. 首页公共排版主容器 --- */
.wrapper {
    max-width: 940px; /* 契合全新流线版心的聚合宽度 */
    margin: 0 auto;
    padding: 30px 15px;
}

.block-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px 0;
    border-bottom: 1px solid #26272b;
    padding-bottom: 10px;
}

.block-title-row h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.block-title-row a {
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
}

.block-title-subline {
    color: #888888;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

/* ======================================================= */
/* 🔥 优惠重构：交错大通栏布局（保留原版黑金奢华质感） */
/* ======================================================= */
.promo-row-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.promo-row-item {
    display: flex;
    background: #15161a;
    border-radius: 8px;
    overflow: hidden;
    min-height: 160px;
    border: 1px solid #26272b;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* 奇偶项交错排版关键逻辑 */
.promo-row-list .promo-row-item:nth-child(even) {
    flex-direction: row-reverse;
}

.promo-pic {
    width: 45%;
    min-height: 160px;
}

.promo-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-body {
    width: 55%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-body .promo-main-title {
    font-size: 18px;
    font-weight: 700;
    color: #d4af37; /* 金色标题高亮 */
    margin-bottom: 6px;
}

.promo-body .promo-short-info {
    font-size: 13px;
    color: #999999;
    margin-bottom: 15px;
    line-height: 1.5;
}

.promo-body .btn-claim-now {
    background: #26272b;
    color: #ffffff;
    border: 1px solid #3a3a3a;
    padding: 8px 20px;
    width: fit-content;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

/* 鼠标悬停在大卡片上时按钮触发奢华金色彩 */
.promo-row-item:hover .btn-claim-now {
    background: linear-gradient(90deg, #d4af37 0%, #aa7c11 100%);
    color: #000000;
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* ======================================================= */
/* 🔥 游戏重构：扁平单线行流布局（List Row Layout） */
/* ======================================================= */
.game-row-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.game-row-item {
    display: flex;
    align-items: center;
    background: #15161a;
    padding: 12px 20px;
    border-radius: 6px;
    justify-content: space-between;
    border: 1px solid #26272b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: border-color 0.3s;
}

.game-row-item:hover {
    border-color: #d4af37;
}

.game-left-side {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 70%;
}

.game-pic {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    flex-shrink: 0;
    overflow: hidden;
}

.game-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-meta-info {
    display: flex;
    flex-direction: column;
}

.game-name-txt {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.game-brand-txt {
    font-size: 12px;
    color: #666666;
    margin-top: 2px;
}

.btn-game-go {
    background: linear-gradient(90deg, #d4af37 0%, #aa7c11 100%);
    color: #000000;
    border: none;
    padding: 10px 25px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: opacity 0.2s;
}

.btn-game-go:hover {
    opacity: 0.9;
}

/* --- Game Lobby (Games Page) --- */
.game-lobby-section {
    margin: 48px 0 56px;
    padding: 36px 32px 40px;
    border-radius: 20px;
    background:
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(212, 175, 55, 0.12) 0%, transparent 55%),
        linear-gradient(165deg, rgba(22, 23, 30, 0.98) 0%, rgba(11, 12, 16, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.game-lobby-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.game-lobby-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 10px;
}

.game-lobby-title {
    margin: 0 0 10px;
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.game-lobby-subtitle {
    margin: 0;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.65;
    color: #8f8f8f;
}

.game-lobby-stat {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.22);
}

.game-lobby-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: #f0d060;
    line-height: 1;
}

.game-lobby-stat-label {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #a0a0a0;
}

.game-lobby-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.game-lobby-filter-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #666666;
    flex-shrink: 0;
}

.game-lobby-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.game-lobby-filter {
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #b0b0b0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.game-lobby-filter:hover {
    color: #f0f0f0;
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.06);
}

.game-lobby-filter.active {
    color: #0b0c10;
    border-color: transparent;
    background: linear-gradient(135deg, #f0d060 0%, #d4af37 45%, #aa7c11 100%);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.game-lobby-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.game-lobby-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.game-lobby-card.is-hidden {
    display: none;
}

.game-lobby-card-media {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    background: #1a1b22;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.game-lobby-card:hover .game-lobby-card-media {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.game-lobby-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.game-lobby-card:hover .game-lobby-card-media img {
    transform: scale(1.06);
}

.game-lobby-card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0b0c10;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    z-index: 2;
}

.game-lobby-card-tag-fish {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.35);
}

.game-lobby-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.game-lobby-card:hover .game-lobby-card-overlay {
    opacity: 1;
}

.game-lobby-play-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #0b0c10;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transform: translateY(8px);
    transition: transform 0.3s ease, background 0.2s ease;
}

.game-lobby-card:hover .game-lobby-play-btn {
    transform: translateY(0);
}

.game-lobby-play-btn:hover {
    background: #f0d060;
}

.game-lobby-card-title {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #e8e8e8;
    text-align: center;
    line-height: 1.35;
    padding: 0 4px;
}

.game-lobby-empty {
    margin: 24px 0 0;
    text-align: center;
    font-size: 14px;
    color: #888888;
}

@media (max-width: 1200px) {
    .game-lobby-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .game-lobby-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .game-lobby-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .game-lobby-section {
        margin: 32px 0 40px;
        padding: 24px 16px 28px;
        border-radius: 14px;
    }

    .game-lobby-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .game-lobby-filters {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        width: 100%;
        padding-bottom: 6px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .game-lobby-filters::-webkit-scrollbar {
        display: none;
    }

    .game-lobby-filter {
        flex-shrink: 0;
    }

    .game-lobby-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .game-lobby-stat {
        flex-direction: row;
        gap: 10px;
        min-width: auto;
        padding: 12px 16px;
    }

    .game-lobby-stat-label {
        margin-top: 0;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .game-lobby-title {
        font-size: 22px;
    }

    .game-lobby-card-title {
        font-size: 12px;
    }
}

/* --- 4. 优惠页面（Promo Page）专属板块样式 --- */
.promo-tabs {
    display: flex;
    gap: 12px;
    margin: 25px 0 35px 0;
    border-bottom: 1px solid #26272b;
    padding-bottom: 14px;
    width: 100%;
}

.tab-btn {
    background: #15161a;
    color: #a0a0a0;
    border: 1px solid #26272b;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: linear-gradient(90deg, #d4af37 0%, #aa7c11 100%);
    color: #000000;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

/* 优惠页面全面替换成最新的大通栏列表排版 */
.promo-page-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 60px;
}

.promo-card-large {
    position: relative;
    background: #15161a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #26272b;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
    display: flex; 
    transition: all 0.3s ease;
}

.promo-card-large:nth-child(even) {
    flex-direction: row-reverse; 
}

.promo-card-large:hover {
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.promo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e11d48;
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.promo-img-wrap {
    width: 56%;
    min-height: 200px;
    position: relative;
}

.promo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-detail-box {
    width: 55%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-detail-box .promo-main-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.promo-card-large:hover .promo-main-title {
    color: #d4af37;
}

.promo-detail-box .promo-short-info {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    padding-top: 20px;
    border-top: 1px solid #26272b;
}

.promo-date {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.promo-detail-box .btn-claim-now {
    background: #22252d;
    color: #ffffff;
    border: 1px solid #3a4150;
    padding: 10px 32px;
    width: auto;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.promo-card-large:hover .btn-claim-now {
    background: linear-gradient(90deg, #d4af37 0%, #aa7c11 100%);
    color: #000000;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* --- 5. Supplier 供应商展示区域 --- */
.supplier-section {
    margin: 60px 0 20px 0;
    background: linear-gradient(180deg, #111216 0%, #08090b 100%);
    padding: 45px 30px;
    border-radius: 8px;
    border: 1px solid #26272b;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.supplier-title {
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 35px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.supplier-title span {
    color: #d4af37;
}

.supplier-flex {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.supplier-logo-box {
    background: #0b0c10;
    border: 1px solid #26272b;
    padding: 15px 10px;
    border-radius: 4px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    text-align: center;
}

.supplier-logo-box span {
    color: #8a94a6;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.supplier-logo-box:hover {
    border-color: #d4af37;
    background: #15161a;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.supplier-logo-box:hover span {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255,255,255,0.4);
}

/* --- 底部数据流水线线框 --- */
.summary-stats-bar {
    display: flex;
    justify-content: space-between;
    background: #000000;
    padding: 25px;
    border-radius: 8px;
    margin-top: 50px;
    text-align: center;
    border: 1px solid #26272b;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.summary-stats-bar.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.summary-stats-bar > div {
    flex: 1;
}

.summary-stats-bar .stat-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.summary-stats-bar.is-visible .stat-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.summary-stats-bar.is-visible .stat-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.summary-stats-bar.is-visible .stat-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.summary-stats-bar.is-visible .stat-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

.summary-stats-bar > div:not(:last-child) {
    border-right: 1px solid #26272b;
}

.stat-val-text {
    font-size: 26px;
    font-weight: 800;
    color: #d4af37;
    transition: text-shadow 0.4s ease;
}

.stat-val-text.count-done {
    text-shadow: 0 0 16px rgba(212, 175, 55, 0.45);
}

.stat-val-static {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.5s ease 0.6s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s;
}

.summary-stats-bar.is-visible .stat-val-static {
    opacity: 1;
    transform: scale(1);
}

.stat-lbl-text { font-size: 11px; color: #888888; text-transform: uppercase; margin-top: 4px; letter-spacing: 0.5px; }

@media (prefers-reduced-motion: reduce) {
    .summary-stats-bar,
    .summary-stats-bar .stat-item,
    .stat-val-static {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* --- Jackpot & Winners Section --- */
:root {
    --winner-won-label: "played ";
}

.jackpot-section {
    margin-top: 50px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.jackpot-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.jackpot-unified-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(22, 23, 28, 0.95) 0%, rgba(11, 12, 16, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.jackpot-hero-card {
    position: relative;
    padding: 32px 36px 28px;
    background: radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.07) 0%, transparent 55%);
}

.jackpot-hero-content {
    max-width: 520px;
}

.jackpot-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #8fd4a8;
    background: rgba(143, 212, 168, 0.1);
    padding: 6px 14px 6px 10px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.jackpot-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8fd4a8;
    animation: jackpot-pulse 2.4s ease-in-out infinite;
}

@keyframes jackpot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.9); }
}

.jackpot-heading {
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 700;
    color: #f2f2f2;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.jackpot-tagline {
    font-size: 15px;
    color: #9a9a9a;
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 420px;
}

.jackpot-amount-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.jackpot-currency {
    font-size: 20px;
    font-weight: 600;
    color: rgba(212, 175, 55, 0.75);
}

.jackpot-amount {
    font-size: clamp(30px, 6vw, 44px);
    font-weight: 700;
    color: #f0d878;
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px;
    line-height: 1.05;
}

.jackpot-footnote {
    font-size: 13px;
    color: #6e6e6e;
    font-style: italic;
    line-height: 1.5;
}

.jackpot-flow-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
    position: relative;
}

.jackpot-flow-divider::before {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.jackpot-flow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.35);
    margin: 0 12px;
    flex-shrink: 0;
}

.winners-panel {
    padding: 24px 28px 28px;
    background: rgba(0, 0, 0, 0.2);
}

.winners-panel-header {
    margin-bottom: 18px;
}

.winners-header-text h3 {
    font-size: 17px;
    font-weight: 600;
    color: #ececec;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.winners-subline {
    font-size: 13px;
    color: #777;
    line-height: 1.45;
}

.winners-scroll-viewport {
    max-height: 320px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.winners-scroll-track {
    display: flex;
    flex-direction: column;
    animation: winners-scroll 55s linear infinite;
    animation-play-state: paused;
}

.jackpot-section.is-visible .winners-scroll-track {
    animation-play-state: running;
}

.winners-scroll-viewport:hover .winners-scroll-track {
    animation-play-state: paused;
}

@keyframes winners-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.winners-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 0;
}

.winner-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 10px;
    border-radius: 14px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.winners-scroll-viewport .winner-row {
    opacity: 1;
    transform: none;
}

.winner-row:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(4px);
}

.winner-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.winner-row:nth-child(6n+1) .winner-avatar { background: linear-gradient(135deg, #5c4d2e, #8a7340); }
.winner-row:nth-child(6n+2) .winner-avatar { background: linear-gradient(135deg, #2e4a5c, #40708a); }
.winner-row:nth-child(6n+3) .winner-avatar { background: linear-gradient(135deg, #4a2e5c, #70408a); }
.winner-row:nth-child(6n+4) .winner-avatar { background: linear-gradient(135deg, #2e5c4a, #408a6a); }
.winner-row:nth-child(6n+5) .winner-avatar { background: linear-gradient(135deg, #5c3e2e, #8a5840); }
.winner-row:nth-child(6n+6) .winner-avatar { background: linear-gradient(135deg, #3e3e5c, #58588a); }

.winner-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.winner-name {
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
}

.winner-game {
    font-size: 12px;
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.winner-game::before {
    content: var(--winner-won-label);
    color: #5a5a5a;
    font-style: italic;
}

.winner-prize {
    text-align: right;
    flex-shrink: 0;
}

.winner-amount {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #e8c96a;
    font-variant-numeric: tabular-nums;
}

.winner-time {
    display: block;
    font-size: 11px;
    color: #5c5c5c;
    margin-top: 2px;
}

@media (min-width: 768px) {
    .jackpot-unified-card {
        display: grid;
        grid-template-columns: 1fr auto 1.1fr;
        align-items: stretch;
    }

    .jackpot-hero-card {
        padding: 36px 32px 36px 36px;
        display: flex;
        align-items: center;
    }

    .jackpot-flow-divider {
        flex-direction: column;
        padding: 24px 0;
        width: auto;
    }

    .jackpot-flow-divider::before {
        width: 1px;
        height: 100%;
        background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    }

    .jackpot-flow-dot {
        margin: 10px 0;
    }

    .winners-panel {
        padding: 32px 32px 32px 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .winners-scroll-viewport {
        max-height: 280px;
    }
}

@media (max-width: 767px) {
    .jackpot-hero-card {
        padding: 26px 22px 22px;
    }

    .jackpot-flow-divider {
        padding: 0 22px;
    }

    .winners-panel {
        padding: 20px 18px 24px;
    }

    .winners-scroll-viewport {
        max-height: 280px;
    }

    .winner-row {
        gap: 12px;
        padding: 11px 6px;
    }

    .winner-avatar {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .winner-amount {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .jackpot-section,
    .winner-row {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .jackpot-live-dot {
        animation: none;
    }

    .winners-scroll-track {
        animation: none;
    }

    .winners-scroll-viewport {
        max-height: 360px;
        overflow-y: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .winner-row:hover {
        transform: none;
    }
}

/* --- App Download Section --- */
.app-download-section {
    margin-top: 50px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.app-download-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.app-download-card {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: stretch;
    border-radius: 20px;
    overflow: hidden;
    background: #0c1220;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    min-height: 320px;
}

.app-download-visual {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    background: linear-gradient(135deg, #1a1040 0%, #0d3d5c 40%, #1a5c3a 100%);
}

.app-visual-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 180, 50, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 70% 70%, rgba(50, 150, 255, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.app-phone-mockup {
    position: relative;
    z-index: 1;
    width: 148px;
    background: #111;
    border-radius: 28px;
    padding: 10px 8px 12px;
    border: 3px solid #2a2a2a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.app-phone-notch {
    width: 50px;
    height: 5px;
    background: #222;
    border-radius: 3px;
    margin: 0 auto 8px;
}

.app-phone-mockup img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.app-phone-home-bar {
    width: 36px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    margin: 8px auto 0;
}

.app-floating-chip {
    position: absolute;
    z-index: 2;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

.app-chip-1 {
    top: 18%;
    left: 8%;
    animation: app-chip-float 4s ease-in-out infinite;
}

.app-chip-2 {
    bottom: 16%;
    right: 6%;
    animation: app-chip-float 4s ease-in-out infinite 1.5s;
}

@keyframes app-chip-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.app-download-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 40px;
    background: linear-gradient(160deg, #0f1628 0%, #0a0e18 100%);
}

.app-download-badge {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #f0b429;
    background: rgba(240, 180, 41, 0.1);
    border: 1px solid rgba(240, 180, 41, 0.25);
    padding: 5px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
}

.app-download-title {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 800;
    color: #f5c842;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.app-download-desc {
    font-size: 14px;
    color: #b8c0d0;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 420px;
}

.app-download-perks {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-download-perks li {
    font-size: 13px;
    color: #9aa8be;
    padding-left: 22px;
    position: relative;
    line-height: 1.4;
}

.app-download-perks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f0b429;
    font-weight: 700;
    font-size: 12px;
}

.app-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    min-width: 220px;
    padding: 15px 32px;
    background: linear-gradient(135deg, #ffb020 0%, #f5920a 50%, #e87800 100%);
    color: #1a1000;
    font-size: 16px;
    font-weight: 800;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(245, 146, 10, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(245, 146, 10, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.app-download-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.app-platform-row {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.app-platform-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #6a7a90;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.app-platform-tag svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .app-download-card {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .app-download-visual {
        min-height: 220px;
        padding: 24px 20px;
    }

    .app-phone-mockup {
        width: 130px;
    }

    .app-phone-mockup img {
        height: 175px;
    }

    .app-chip-1 { left: 5%; top: 12%; }
    .app-chip-2 { right: 5%; bottom: 12%; }

    .app-download-content {
        padding: 28px 24px 32px;
        text-align: center;
        align-items: center;
    }

    .app-download-desc {
        max-width: 100%;
    }

    .app-download-perks {
        align-items: flex-start;
        text-align: left;
        width: 100%;
        max-width: 300px;
    }

    .app-download-btn {
        width: 100%;
        max-width: 300px;
    }

    .app-platform-row {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .app-download-section {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .app-chip-1,
    .app-chip-2 {
        animation: none;
    }
}

/* --- Site Content Section --- */
.site-content-section {
    margin-top: 60px;
    margin-bottom: 20px;
    opacity: 1;
    transform: translateY(24px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-content-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Promotions page: content visible without homepage scroll script */
#promoContentSection {
    opacity: 1;
    transform: translateY(0);
}

#gameContentSection {
    opacity: 1;
    transform: translateY(0);
}

#gameFaq {
    opacity: 1;
    transform: translateY(0);
}

#promoFaq {
    opacity: 1;
    transform: translateY(0);
}

#termsContentSection {
    opacity: 1;
    transform: translateY(0);
}

#privacyContentSection {
    opacity: 1;
    transform: translateY(0);
}

.site-content-body h1 {
    color: #f0f0f0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin: 0 0 16px;
}

.terms-meta-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 8px;
}

.terms-meta-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #a8a8a8;
}

.terms-meta-box p + p {
    margin-top: 8px;
}

.site-content-card {
    background: linear-gradient(160deg, rgba(18, 19, 24, 0.95) 0%, rgba(11, 12, 16, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 52px 56px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.site-content-body {
    max-width: 820px;
    margin: 0 auto;
}

.site-content-text {
    font-size: 16px;
    line-height: 1.85;
    color: #b8b8b8;
    margin: 0;
}

.site-content-text + .site-content-text {
    margin-top: 24px;
}

.site-content-body h2,
.site-content-body h3 {
    color: #f0f0f0;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.site-content-body h2 {
    font-size: 24px;
    margin: 0;
    padding-top: 48px;
    margin-bottom: 24px;
}

.site-content-body h2:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 56px;
    margin-top: 16px;
}

.site-content-body h3 {
    font-size: 18px;
    margin: 36px 0 16px;
}

.site-content-body ul,
.site-content-body ol {
    padding-left: 22px;
    margin: 20px 0;
    color: #b8b8b8;
    font-size: 15px;
    line-height: 1.75;
}

.site-content-body li + li {
    margin-top: 10px;
}

.site-content-body a {
    color: #d4af37;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.site-content-body a:hover {
    color: #f0d060;
}

.site-content-table-wrap {
    overflow-x: auto;
    margin: 32px 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-content-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 480px;
}

.site-content-table th,
.site-content-table td {
    padding: 18px 20px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-content-table th {
    background: rgba(212, 175, 55, 0.1);
    color: #f0d060;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.site-content-table tbody tr:last-child td {
    border-bottom: none;
}

.site-content-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.site-content-table td:first-child {
    color: #e0e0e0;
    font-weight: 600;
    width: 38%;
}

.site-content-table td:last-child {
    color: #a8a8a8;
    line-height: 1.6;
}

.site-content-reminder {
    margin-top: 32px;
    padding: 18px 20px;
    background: rgba(212, 175, 55, 0.06);
    border-left: 3px solid rgba(212, 175, 55, 0.45);
    border-radius: 0 8px 8px 0;
    color: #c8c8c8 !important;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .site-content-section {
        margin-top: 40px;
    }

    .site-content-card {
        padding: 36px 24px;
    }

    .site-content-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .site-content-text + .site-content-text {
        margin-top: 20px;
    }

    .site-content-body h2 {
        font-size: 21px;
        padding-top: 40px;
        margin-bottom: 20px;
    }

    .site-content-body h2:not(:first-child) {
        padding-top: 44px;
        margin-top: 12px;
    }

    .site-content-body h3 {
        font-size: 17px;
        margin: 28px 0 14px;
    }

    .site-content-table-wrap {
        margin: 24px 0;
    }

    .site-content-table {
        font-size: 13px;
        min-width: 100%;
    }

    .site-content-table th,
    .site-content-table td {
        padding: 14px 14px;
    }

    .site-content-reminder {
        margin-top: 24px;
        padding: 16px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-content-section {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* --- FAQ Section --- */
.faq-section {
    margin-top: 60px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-card {
    background: linear-gradient(160deg, rgba(18, 19, 24, 0.95) 0%, rgba(11, 12, 16, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 52px 56px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.faq-title {
    font-size: 24px;
    font-weight: 700;
    color: #f0f0f0;
    margin: 0 0 36px;
    line-height: 1.4;
    letter-spacing: -0.2px;
    text-align: center;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #f0d060;
    margin: 0 0 12px;
    line-height: 1.45;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.85;
    color: #b8b8b8;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        margin-top: 40px;
    }

    .faq-card {
        padding: 36px 24px;
    }

    .faq-title {
        font-size: 21px;
        margin-bottom: 28px;
    }

    .faq-item {
        padding: 22px 0;
    }

    .faq-question {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .faq-answer {
        font-size: 15px;
        line-height: 1.8;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-section {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* --- 6. 页脚区域 --- */
footer {
    background: #050506;
    border-top: none;
    padding: 0 0 25px 0;
    margin-top: 80px;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37 20%, #f0d060 50%, #d4af37 80%, transparent);
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 48px 20px 0;
}

.footer-panel {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.9) 0%, rgba(10, 10, 14, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.footer-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: start;
    padding: 36px 36px 32px;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 100% 100%, rgba(80, 120, 200, 0.05) 0%, transparent 50%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-mark {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.2));
}

.footer-brand-mark > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand-name {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.footer-brand-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #d4af37;
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #8e8e96;
    margin: 0;
    max-width: 520px;
}

.footer-download {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 240px;
}

.footer-download-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #666;
    margin-bottom: 2px;
}

.footer-dl-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-dl-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateX(4px);
}

.footer-dl-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 10px;
    color: #f0d060;
    flex-shrink: 0;
}

.footer-dl-icon svg {
    width: 18px;
    height: 18px;
}

.footer-dl-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    line-height: 1.25;
}

.footer-dl-text small {
    font-size: 9px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-dl-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #eee;
}

.footer-dl-arrow {
    font-size: 16px;
    color: #555;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-dl-card:hover .footer-dl-arrow {
    color: #f0d060;
    transform: translateX(3px);
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.04);
}

.footer-tile {
    padding: 22px 28px;
    background: rgba(12, 12, 16, 0.85);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-tile-wide {
    grid-column: 1 / -1;
}

.footer-tile-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
}

.footer-tile-value {
    font-size: 14px;
    line-height: 1.55;
    color: #c4c4cc;
}

a.footer-tile-value {
    text-decoration: none;
    transition: color 0.2s ease;
}

a.footer-tile-value:hover {
    color: #f0d060;
}

.footer-utility {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 28px;
    background: rgba(0, 0, 0, 0.25);
    flex-wrap: wrap;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 4px;
}

.footer-nav a {
    font-size: 13px;
    font-weight: 500;
    color: #999;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-nav a:hover {
    color: #f0d060;
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.footer-nav a:not(:last-child)::after {
    content: none;
}

.footer-community {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-community-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
}

.footer-community-title {
    font-size: 12px;
    font-weight: 700;
    color: #ddd;
}

.footer-community-desc {
    font-size: 11px;
    color: #666;
}

.footer-social-strip {
    display: flex;
    gap: 6px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    color: #888;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social-link svg {
    width: 15px;
    height: 15px;
}

.footer-social-link:hover {
    background: #d4af37;
    color: #111;
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 36px 0 32px;
}

.footer-row {
    display: flex;
    justify-content: fill;
    padding-bottom: 25px;
    border-bottom: 1px solid #1a1a1a;
}

.footer-legal-full {
    width: 100%;
}

.legal-desc {
    font-size: 13px;
    color: #cccccc;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 30px;
}

.license-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
    text-align: center;
}

.license-logo-text {
    font-size: 24px;
    font-weight: 900;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.license-logo-img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 8px;
}

.license-lbl {
    font-size: 11px;
    color: #cccccc;
}

.footer-bottom {
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    font-size: 12px;
    color: #cccccc;
}

.cert-icons {
    display: flex;
    gap: 15px;
}

.cert-icon-placeholder {
    background: #111;
    border: 1px solid #222;
    padding: 4px 10px;
    font-size: 10px;
    color: #cccccc;
    font-weight: 700;
    border-radius: 3px;
    text-transform: uppercase;
}

/* ======================================================= */
/* 📱 SECTION 2: 完美自适应移动端与平板端兼容规则方案区块     */
/* ======================================================= */
@media (min-width: 993px) {
    .subpage-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .header-inner {
        position: relative;
    }

    .banner-nav {
        opacity: 0.7;
    }

    .banner-viewport:hover .banner-nav {
        opacity: 1;
    }

    body > .main-banner-zone {
        display: flex;
        justify-content: center;
        padding: 20px 24px;
        background: linear-gradient(180deg, #0b0c10 0%, #101218 100%);
        aspect-ratio: unset;
        height: auto;
    }

    body > .main-banner-zone .banner-viewport {
        max-width: 1140px;
        width: 100%;
        aspect-ratio: unset;
        max-height: none;
        border-radius: 14px;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
        border: 1px solid rgba(255, 255, 255, 0.07);
    }
}

@media (max-width: 992px) {
    .hero-banner-stage {
        padding: 0;
    }

    .hero-banner-frame {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .hero-banner-image {
        max-height: 420px;
        min-height: 220px;
    }

    .hero-title-float {
        width: min(92%, 640px);
    }

    .hero-title-float h1 {
        font-size: clamp(22px, 5.5vw, 36px);
    }

    .hero-below-content {
        padding: clamp(44px, 10vw, 72px) 20px 36px;
    }

    .hero-below-content .hero-slogan {
        font-size: 15px;
    }

    .hero-below-content .banner-trigger-btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 36px;
        font-size: 15px;
        letter-spacing: 1.5px;
    }

    body > .main-banner-zone {
        aspect-ratio: unset;
        height: auto;
        background: #0b0c10;
    }

    body > .main-banner-zone .banner-viewport {
        aspect-ratio: unset;
        border-radius: 0;
    }

    body > .main-banner-zone .banner-static-img {
        border-radius: 0;
    }

    .supplier-flex {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .subpage-nav, 
    .auth-actions { 
        display: none !important; 
    } 
    
    .hamburger-toggle { 
        display: flex !important; 
    }

    header,
    .site-header {
        padding: 10px 16px;
        border-bottom-width: 1px;
    }

    .header-inner {
        min-height: unset;
    }

    .brand-logo {
        height: 34px;
    }

    .brand-logo img {
        height: 100%;
    }

    body {
        overflow-x: hidden;
    }

    .wrapper {
        padding: 24px 16px;
    }

    .block-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 16px;
    }

    .block-title-row h2 {
        font-size: 20px;
        line-height: 1.25;
    }

    .block-title-subline {
        font-size: 12px;
    }

    .promo-row-item,
    .game-row-item {
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .btn-claim-now,
    .btn-game-go,
    .banner-trigger-btn {
        min-height: 44px;
    }

    /* 🌟 【核心修复】：优惠分类滑动条在移动端和小屏设备上的错位换行 Bug 完美解决 */
    .promo-tabs {
        display: flex !important;
        overflow-x: auto !important; 
        white-space: nowrap !important; /* 强制按钮处于同一行，不允许换行 */
        gap: 10px !important;
        padding-bottom: 8px !important;
        width: 100% !important;
        scrollbar-width: none; /* 隐藏火狐默认的粗糙滚动条 */
        -webkit-overflow-scrolling: touch; /* 保证苹果 iOS 端手势滑动极其丝滑 */
    }

    .promo-tabs::-webkit-scrollbar {
        display: none; /* 隐藏 Chrome/Safari 默认的横向粗糙滚动条 */
    }

    .tab-btn {
        flex-shrink: 0 !important; /* 核心防止压缩：确保按钮文字不被挤压变形 */
        padding: 8px 18px !important;
        font-size: 13px !important;
    }

    /* 优惠活动与页面卡片在手机端平铺排列 */
    .promo-row-list .promo-row-item,
    .promo-row-list .promo-row-item:nth-child(even),
    .promo-page-grid .promo-card-large,
    .promo-page-grid .promo-card-large:nth-child(even) { 
        flex-direction: column !important; 
    }
    
    .promo-pic, .promo-body, .promo-img-wrap, .promo-detail-box { 
        width: 100% !important; 
    }
    
    .promo-body, .promo-detail-box {
        padding: 20px !important;
    }

    /* 游戏列表在手机端自适应缩进 */
    .game-left-side {
        width: 80%;
        gap: 12px;
    }
    
    .game-pic {
        width: 50px;
        height: 50px;
    }

    .summary-stats-bar { 
        flex-wrap: wrap; 
        gap: 20px; 
    }
    
    .summary-stats-bar > div { 
        flex: 0 0 45%; 
    }
    
    .summary-stats-bar > div:not(:last-child) { 
        border: none; 
    }
    
    .footer-bottom { 
        flex-direction: column; 
        text-align: center; 
    }

    .footer-hero {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .footer-download {
        min-width: 0;
        width: 100%;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-tile-wide {
        grid-column: 1 / -1;
    }

    .footer-utility {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 24px;
    }

    .footer-community {
        justify-content: space-between;
        width: 100%;
    }

    .footer-community-text {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .footer-container {
        padding-top: 32px;
    }

    .footer-panel {
        border-radius: 16px;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-tile {
        padding: 18px 20px;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-community {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-social-strip {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title-float h1 {
        font-size: 20px;
        line-height: 1.2;
    }

    .hero-title-float .hero-mini-tag {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .hero-below-content .hero-slogan {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-below-content .banner-trigger-btn {
        max-width: 100%;
        padding: 15px 28px;
        font-size: 14px;
        letter-spacing: 1.4px;
    }

    .game-left-side { width: 70%; }
    .btn-game-go { padding: 8px 16px; font-size: 12px; }
    .supplier-flex {
        grid-template-columns: repeat(2, 1fr);
    }
    .promo-detail-box .btn-claim-now {
        padding: 10px 14px;
    }
}

/* 侧边滑动抽屉结构 */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
    padding: 0;
}

.hamburger-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #d4af37;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-toggle.open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger-toggle.open .bar:nth-child(2) { opacity: 0; }
.hamburger-toggle.open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%; 
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #0f1015 0%, #000000 100%);
    border-left: 2px solid #d4af37;
    z-index: 105;
    padding: 72px 20px 40px 20px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.8);
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(10px); 
}

.mobile-drawer.open { right: 0; }
.drawer-content { display: flex; flex-direction: column; height: 100%; gap: 24px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-item {
    color: #cccccc;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 4px;
    border-bottom: 1px solid #1a1a1a;
    transition: color 0.25s ease, border-color 0.25s ease;
}
.mobile-nav-item:hover, .mobile-nav-item.active { color: #d4af37; border-bottom-color: #d4af37; }

.mobile-auth-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #1c1d22;
}

.mobile-auth-actions .btn-signin,
.mobile-auth-actions .btn-signup {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.mobile-auth-actions .btn-signin {
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.22);
}

.mobile-auth-actions .btn-signup {
    border-width: 1.5px;
}

.drawer-close-btn {
            position: absolute;
            top: 20px;
            right: 24px;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 36px;
            line-height: 1;
            cursor: pointer;
            z-index: 120;
            transition: transform 0.2s, color 0.2s;
            padding: 0;
        }
        .drawer-close-btn:hover {
            color: #ffffff;
            transform: scale(1.1);
        }

.hero-below-content .banner-trigger-btn {
    position: relative;
    isolation: isolate;
    min-width: 220px;
    padding: 17px 44px 17px 40px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    border-radius: 999px;
    border: 2px solid rgba(255, 248, 220, 0.55);
    background: linear-gradient(180deg, #ffe98a 0%, #f0c840 38%, #d4a017 100%);
    color: #1a0f00;
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.35),
        0 10px 32px rgba(212, 175, 55, 0.45),
        0 4px 12px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    animation: hero-cta-pulse 2.8s ease-in-out infinite;
}

.hero-below-content .banner-trigger-btn:hover {
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(180deg, #fff0a8 0%, #f5d050 40%, #e0b020 100%);
    box-shadow:
        0 0 0 1px rgba(255, 232, 140, 0.6),
        0 16px 40px rgba(212, 175, 55, 0.55),
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    animation: none;
}

.hero-below-content .banner-trigger-btn:active {
    transform: translateY(-1px) scale(1.01);
}

@keyframes hero-cta-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 0 rgba(240, 208, 96, 0.45),
            0 10px 32px rgba(212, 175, 55, 0.45),
            0 4px 12px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.45);
    }
    50% {
        box-shadow:
            0 0 0 10px rgba(240, 208, 96, 0),
            0 14px 40px rgba(212, 175, 55, 0.58),
            0 6px 16px rgba(0, 0, 0, 0.38),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-below-content .banner-trigger-btn {
        animation: none;
    }
}

.banner-trigger-btn{
    background: linear-gradient(135deg, #e8c050 0%, #c9961a 100%);
    color: #1a1200;
    border: none;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    padding: 12px 28px;
    width: fit-content;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.banner-trigger-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}