/* ===== CSS Variables ===== */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary: #06b6d4;
    --accent: #0ea5e9;
    --bg-dark: #0a0e1a;
    --bg-darker: #060911;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #6b7280;
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
    --gradient-light: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e1a 0%, #111827 100%);
    --gradient-card: linear-gradient(145deg, rgba(17, 24, 39, 0.95) 0%, rgba(6, 9, 17, 0.98) 100%);
    --shadow-primary: 0 0 30px rgba(59, 130, 246, 0.3);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.btn-glow {
    background: var(--gradient-primary);
    color: #fff;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.8), 0 0 60px rgba(59, 130, 246, 0.4); }
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-customer {
    width: 100%;
    background: var(--gradient-secondary);
    color: #fff;
    font-size: 15px;
}

.btn-download {
    width: 100%;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 16px;
    padding: 14px 28px;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    background: var(--gradient-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 600px;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
        linear-gradient(180deg, rgba(10, 14, 26, 0.7) 0%, rgba(10, 14, 26, 0.9) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-promo {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--border-radius-lg);
    padding: 24px 30px;
    margin-bottom: 35px;
    backdrop-filter: blur(10px);
}

.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-secondary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.promo-content {
    font-size: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.promo-highlight {
    color: var(--primary);
    font-weight: 700;
}

.promo-text {
    color: var(--text-secondary);
}

.promo-amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
}

.promo-max {
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.hero-right {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.business-card {
   background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    backdrop-filter: blur(20px);
}

.business-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.business-header i {
    font-size: 24px;
}

.business-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.business-items span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--border-radius);
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.business-items span:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
}

.business-items span i {
    color: var(--primary);
}

.commission-badge {
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #fff;
}

.commission-rate {
    font-size: 32px;
    font-weight: 900;
}

.commission-text {
    font-size: 14px;
    opacity: 0.9;
}

.payment-section {
    margin-bottom: 16px;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* 支付方式图片 */
.payment-img-wrapper {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.payment-img {
    width: 100%;
    height: auto;
    display: block;
}

.quick-deposit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--border-radius);
    color: var(--secondary);
    font-size: 13px;
    margin-bottom: 20px;
}

.quick-deposit i {
    font-size: 16px;
}

/* ===== Games Section ===== */
.games-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.title-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
}

.games-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.games-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-nav-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-align: left;
}

.game-nav-btn:hover {
    background: var(--bg-card-hover);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--text-primary);
}

.game-nav-btn.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(96, 165, 250, 0.1) 100%);
    border-color: var(--primary);
    color: var(--primary);
}

.game-nav-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.game-nav-btn.active .game-nav-icon {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* 游戏分类缩略图 */
.game-nav-thumb {
    width: 80px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.game-nav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-nav-btn:hover .game-nav-thumb img {
    transform: scale(1.1);
}

.game-nav-btn.active .game-nav-thumb {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.games-content {
    position: relative;
    min-height: 400px;
}

.game-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    animation: fadeIn 0.4s ease-out;
}

.game-panel.active {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.game-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.game-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-secondary);
}

.feature-tag i {
    color: var(--primary);
    font-size: 11px;
}

.game-visual {
    position: relative;
    height: 350px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.game-visual:hover .game-detail-img {
    transform: scale(1.05);
}

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

/* ===== APP Section ===== */
.app-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.app-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.app-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
}

.app-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.app-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.app-card:hover .app-card-glow {
    opacity: 1;
}

.app-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-card);
}

.app-card.featured {
    border-color: var(--primary);
}

.app-card.featured .app-card-glow {
    opacity: 0.5;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
}

.app-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: #fff;
}

/* APP图片展示 */
.app-img-wrapper {
    width: 100%;
    max-width: 280px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.app-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.app-card:hover .app-img {
    transform: scale(1.05);
}

.app-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.app-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.app-platforms {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-secondary);
}

.platform-badge i {
    font-size: 18px;
}

/* ===== Stats Section ===== */
.stats-section {
    padding: 80px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(59, 130, 246, 0.15);
}

.stat-item:last-child::after {
    display: none;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: inline;
}

.stat-unit {
    font-size: 24px;
    color: var(--primary);
    display: inline;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* ===== Advantages Section ===== */
.advantages-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.advantages-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('static/images/bgc1.png') center center / cover no-repeat;
    opacity: 0.15;
    pointer-events: none;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.advantage-card {
    background: var(--bg-card);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary);
}

.advantage-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.advantage-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(180deg, #1e3a8a 0%, #1e40af 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .logo-icon {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.footer .logo-text {
    background: linear-gradient(135deg, #fff 0%, #bfdbfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-license {
    text-align: center;
    max-width: 800px;
}

.footer-license p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.license-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: #fff;
    font-size: 14px;
}

.license-badge i {
    color: #60a5fa;
    font-size: 20px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

/* ===== Floating Buttons ===== */
.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 130px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: inherit;
}

.float-btn.customer-service {
    background: var(--gradient-secondary);
    color: #fff;
}

.float-btn.download-app {
    background: var(--gradient-primary);
    color: #fff;
}

.float-btn:hover {
    transform: scale(1.05);
}

.float-btn i {
    font-size: 18px;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-right {
        max-width: 500px;
    }
    
    .games-layout {
        grid-template-columns: 1fr;
    }
    
    .games-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .game-nav-btn {
        flex: 0 0 auto;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .game-panel {
        grid-template-columns: 1fr;
    }
    
    .game-visual {
        height: 300px;
    }
    
    .app-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-content {
        height: 70px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .promo-content {
        font-size: 16px;
    }
    
    .promo-amount {
        font-size: 24px;
    }
    
    .promo-max {
        font-size: 22px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .title-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .games-nav {
        gap: 8px;
    }
    
    .game-nav-btn {
        padding: 12px 16px;
        font-size: 14px;
        flex-direction: column;
        text-align: center;
    }
    
    .game-nav-thumb {
        width: 60px;
        height: 40px;
    }
    
    .game-nav-btn span {
        font-size: 12px;
    }
    
    .game-panel {
        padding: 30px;
    }
    
    .game-title {
        font-size: 28px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }
    
    .float-btn span {
        display: none;
    }
    
    .float-btn {
        padding: 14px;
        border-radius: 50%;
    }
}

