:root {
    /* Color Palette */
    --bg-primary: #0a0a1a;
    --bg-secondary: #0f0f2a;
    --bg-tertiary: #141433;
    --bg-card: #1a1a3e;
    --bg-card-hover: #222255;
    
    --gold-primary: #f0c040;
    --gold-light: #ffd966;
    --gold-dark: #c49a1a;
    --gold-gradient: linear-gradient(135deg, #f0c040, #e8a020, #f0c040);
    
    --purple-primary: #7c3aed;
    --purple-light: #a78bfa;
    --purple-dark: #5b21b6;
    
    --accent-green: #22c55e;
    --accent-red: #ef4444;
    --accent-blue: #3b82f6;
    
    --text-primary: #f1f1f8;
    --text-secondary: #b4b4cc;
    --text-muted: #7a7a99;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(240, 192, 64, 0.3);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 30px rgba(240, 192, 64, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

.top-bar {
    background: linear-gradient(90deg, var(--bg-tertiary), var(--bg-secondary));
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 20px;
}

.top-bar span i {
    color: var(--gold-primary);
    margin-right: 4px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.logo-link:hover .logo-img {
    filter: brightness(1.15);
    transform: scale(1.03);
}

.main-nav ul {
    display: flex;
    gap: 4px;
}

.main-nav a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.nav-active {
    color: var(--gold-primary);
    background: rgba(240, 192, 64, 0.08);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #0a0a1a;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 40px rgba(240, 192, 64, 0.35);
    filter: brightness(1.1);
}

.btn-outline {
    border: 2px solid rgba(240, 192, 64, 0.4);
    color: var(--gold-primary);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(240, 192, 64, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 30px rgba(240, 192, 64, 0.2); }
    50% { box-shadow: 0 4px 50px rgba(240, 192, 64, 0.45); }
}


.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    background: linear-gradient(165deg, #0a0a1a 0%, #141433 30%, #1a0a30 60%, #0a0a1a 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(240, 192, 64, 0.06) 0%, transparent 50%);
    animation: hero-rotate 30s linear infinite;
}

@keyframes hero-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 192, 64, 0.12);
    border: 1px solid rgba(240, 192, 64, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #f0c040 50%, #fff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1.1;
}

.stat-plus {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.hero-trust i {
    color: var(--accent-green);
    margin-right: 4px;
}


.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 192, 64, 0.15), rgba(124, 58, 237, 0.1), transparent);
    filter: blur(60px);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

.floating-cards {
    position: relative;
    width: 300px;
    height: 300px;
}

.float-card {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-primary);
    background: rgba(26, 26, 62, 0.8);
    border: 1px solid rgba(240, 192, 64, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.card-1 { top: 0; left: 50%; transform: translateX(-50%); animation: float-1 6s ease-in-out infinite; }
.card-2 { top: 50%; right: 0; transform: translateY(-50%); animation: float-2 7s ease-in-out infinite; }
.card-3 { bottom: 0; left: 50%; transform: translateX(-50%); animation: float-3 5s ease-in-out infinite; }
.card-4 { top: 50%; left: 0; transform: translateY(-50%); animation: float-4 8s ease-in-out infinite; }

@keyframes float-1 { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-20px); } }
@keyframes float-2 { 0%, 100% { transform: translateY(-50%) translateX(0); } 50% { transform: translateY(-50%) translateX(15px); } }
@keyframes float-3 { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(20px); } }
@keyframes float-4 { 0%, 100% { transform: translateY(-50%) translateX(0); } 50% { transform: translateY(-50%) translateX(-15px); } }

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

.section {
    padding: 90px 0;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}


.content-grid {
    display: grid;
    gap: 50px;
    align-items: start;
}

.content-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.content-grid-reverse {
    direction: rtl;
}

.content-grid-reverse > * {
    direction: ltr;
}

.content-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.98rem;
}


.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.feature-list li i {
    color: var(--accent-green);
    margin-top: 4px;
    flex-shrink: 0;
}


.content-table {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.content-table h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table thead th {
    background: rgba(124, 58, 237, 0.15);
    padding: 12px 16px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--purple-light);
    border-bottom: 2px solid rgba(124, 58, 237, 0.3);
}

.info-table thead th:first-child {
    border-radius: var(--radius-sm) 0 0 0;
}

.info-table thead th:last-child {
    border-radius: 0 var(--radius-sm) 0 0;
}

.info-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.info-table tr:last-child td {
    border-bottom: none;
}

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

.info-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.info-table td:first-child i {
    color: var(--gold-primary);
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.info-table td:last-child {
    color: var(--gold-light);
    font-weight: 500;
}

.game-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold);
}

.game-card:hover::before {
    opacity: 1;
}

.game-card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.game-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.game-count {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(240, 192, 64, 0.1);
    border: 1px solid rgba(240, 192, 64, 0.2);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-primary);
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bonus-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: var(--border-hover);
}

.bonus-welcome {
    border-color: rgba(240, 192, 64, 0.3);
    background: linear-gradient(180deg, rgba(240, 192, 64, 0.06), var(--bg-card));
}

.bonus-ribbon {
    position: absolute;
    top: 14px;
    right: -30px;
    background: var(--gold-gradient);
    color: #0a0a1a;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.bonus-icon {
    margin-bottom: 16px;
    color: var(--gold-primary);
}

.bonus-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 14px;
}

.bonus-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.bonus-card ul {
    text-align: left;
    margin-bottom: 20px;
}

.bonus-card ul li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 4px 0;
}

.bonus-card ul li i {
    color: var(--accent-green);
    margin-right: 6px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.payment-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.payment-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.payment-item i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
    display: block;
}

.payment-item span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vip-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.vip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vip-tier-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.vip-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.vip-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.tier-bronze { border-color: rgba(205, 127, 50, 0.3); }
.tier-bronze:hover { box-shadow: 0 8px 40px rgba(205, 127, 50, 0.15); }
.tier-silver { border-color: rgba(192, 192, 192, 0.3); }
.tier-silver:hover { box-shadow: 0 8px 40px rgba(192, 192, 192, 0.15); }
.tier-gold { border-color: rgba(240, 192, 64, 0.3); }
.tier-gold:hover { box-shadow: 0 8px 40px rgba(240, 192, 64, 0.2); }
.tier-platinum { border-color: rgba(167, 139, 250, 0.3); }
.tier-platinum:hover { box-shadow: 0 8px 40px rgba(167, 139, 250, 0.2); }

.tier-bronze h3 { color: #cd7f32; }
.tier-silver h3 { color: #c0c0c0; }
.tier-gold h3 { color: var(--gold-primary); }
.tier-platinum h3 { color: var(--purple-light); }


.pakistan-section {
    background: linear-gradient(180deg, var(--bg-primary), #0d0d28, var(--bg-primary));
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(240, 192, 64, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-question i {
    transition: var(--transition);
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}


.cta-section {
    background: linear-gradient(165deg, #1a0a30, #0f0f2a, #0a1a3a);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(240, 192, 64, 0.06), transparent 70%);
}

.cta-inner {
    position: relative;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cta-trust i {
    color: var(--gold-primary);
    margin-right: 6px;
}

.site-footer {
    background: #050510;
    padding: 60px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    height: 42px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.footer-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.footer-badges .badge i {
    color: var(--gold-primary);
}

.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a, .footer-links span {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-payment-icons {
    display: flex;
    gap: 16px;
}

.footer-payment-icons span {
    font-size: 1.4rem;
    color: var(--text-muted);
}


.floating-cta {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    transition: var(--transition-slow);
    max-width: 600px;
    width: auto;
}

.floating-cta.visible {
    bottom: 24px;
}

.floating-cta .btn {
    box-shadow: 0 4px 30px rgba(240, 192, 64, 0.4);
    font-size: 0.95rem;
}


.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #0a0a1a;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 800;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}


.banner-container {
    margin: 30px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.banner-container a {
    display: block;
}

.banner-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.banner-container:hover img {
    transform: scale(1.02);
    filter: brightness(1.1);
}


* {
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

@media (pointer: coarse) {
    .btn, .faq-question, .main-nav a, .footer-links a, .back-to-top, .mobile-toggle {
        min-height: 48px;
        min-width: 48px;
    }
    .feature-list li {
        padding: 6px 0;
    }
    .game-card:hover,
    .bonus-card:hover,
    .payment-item:hover,
    .vip-card:hover {
        transform: none;
        box-shadow: none;
    }
    .game-card:active,
    .bonus-card:active,
    .payment-item:active,
    .vip-card:active {
        transform: scale(0.98);
        transition-duration: 0.1s;
    }
    
    .btn:active {
        transform: scale(0.96);
        transition-duration: 0.1s;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .pulse-btn { animation: none; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .content-grid-2 { grid-template-columns: 1fr; }
    .content-grid-reverse { direction: ltr; }
    .game-categories { grid-template-columns: repeat(2, 1fr); }
    .bonus-cards { grid-template-columns: repeat(2, 1fr); }
    .vip-tiers { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .container { padding: 0 20px; }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    
    .container { padding: 0 16px; }
    

    .top-bar { display: none; }
    

    .main-nav { display: none; }
    .header-actions .btn-outline { display: none; }
    .mobile-toggle { display: flex; }
    
    .header-inner {
        padding: 4px 0;
    }
    
    .logo-img {
        height: 38px;
    }
    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        z-index: 9999;
        padding: 80px 24px 40px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        animation: menuSlideIn 0.3s ease;
    }
    
    @keyframes menuSlideIn {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .main-nav.active ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    .main-nav.active a {
        display: flex;
        align-items: center;
        padding: 16px 0;
        font-size: 1.15rem;
        font-weight: 600;
        border-bottom: 1px solid var(--border-color);
        min-height: 56px;
    }
    
    .main-nav.active a:active {
        color: var(--gold-primary);
        background: rgba(240, 192, 64, 0.05);
    }
    
    .mobile-toggle {
        z-index: 10000;
        position: relative;
    }
    

    .hero {
        padding: 48px 0 64px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-item {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-sm);
        padding: 12px 8px;
    }
    
    .stat-number { font-size: 1.5rem; }
    .stat-plus { font-size: 1.1rem; }
    .stat-label { font-size: 0.7rem; }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .hero-trust {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    
    .hero-trust span {
        background: rgba(255, 255, 255, 0.04);
        padding: 4px 10px;
        border-radius: 50px;
        font-size: 0.72rem;
    }
    

    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
        line-height: 1.25;
    }
    
    .section-desc {
        font-size: 0.92rem;
    }
    
    .section-cta { margin-top: 30px; }
    .section-cta .btn { width: 100%; }
    

    .game-categories { grid-template-columns: 1fr; gap: 14px; }
    .bonus-cards { grid-template-columns: 1fr; gap: 16px; }
    .vip-tiers { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .payment-methods { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    

    .game-card {
        padding: 22px 20px;
    }
    
    .game-card-icon { font-size: 2rem; margin-bottom: 10px; }
    .game-card h3 { font-size: 1.1rem; }
    .game-card p { font-size: 0.85rem; margin-bottom: 12px; }
    
    .bonus-card {
        padding: 24px 18px;
    }
    
    .bonus-amount { font-size: 1.4rem; }
    .bonus-icon { margin-bottom: 12px; }
    .bonus-icon i { font-size: 2rem !important; }
    
    .vip-card {
        padding: 24px 16px;
    }
    
    .vip-tier-icon { font-size: 2.2rem; margin-bottom: 10px; }
    .vip-card h3 { font-size: 1.1rem; }
    .vip-card p { font-size: 0.82rem; }
    
    .payment-item {
        padding: 16px 12px;
    }
    
    .payment-item i { font-size: 1.6rem; margin-bottom: 6px; }
    .payment-item span { font-size: 0.78rem; }
    

    .content-table {
        padding: 16px;
        border-radius: var(--radius-md);
    }
    
    .content-table h3 {
        font-size: 1rem;
        margin-bottom: 14px;
    }
    
    .table-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
        scrollbar-width: thin;
    }
    
    .table-scroll-wrapper::-webkit-scrollbar {
        height: 4px;
    }
    
    .table-scroll-wrapper::-webkit-scrollbar-thumb {
        background: var(--border-color);
        border-radius: 4px;
    }
    
    .info-table {
        font-size: 0.8rem;
        min-width: 480px;
    }
    
    .info-table td {
        padding: 10px 10px;
        white-space: nowrap;
    }
    
    .info-table thead th {
        padding: 10px 10px;
        font-size: 0.72rem;
        white-space: nowrap;
    }
    
    .info-table:not(:has(thead)) {
        min-width: unset;
    }
    
    .info-table:not(:has(thead)) td {
        white-space: normal;
    }
    

    .faq-question {
        padding: 16px 16px;
        font-size: 0.92rem;
        min-height: 56px;
        gap: 12px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    

    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-section p {
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }
    
    .cta-trust {
        gap: 16px;
        font-size: 0.78rem;
    }
    

    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 16px;
    }
    
    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .floating-cta {
        left: 16px;
        right: 16px;
        transform: none;
        width: auto;
    }
    
    .floating-cta.visible {
        bottom: env(safe-area-inset-bottom, 16px);
    }
    
    .floating-cta .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.88rem;
        padding: 14px 20px;
        border-radius: var(--radius-md);
    }
    
    .back-to-top {
        bottom: 80px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
    
    .content-text p {
        font-size: 0.9rem;
    }
    
    .feature-list li {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .content-grid {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    .container { padding: 0 14px; }
    
    .hero {
        padding: 36px 0 52px;
    }
    
    .hero h1 {
        font-size: 1.7rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.88rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-item {
        padding: 10px 6px;
    }
    
    .stat-number { font-size: 1.3rem; }
    
    .section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .section-badge {
        font-size: 0.72rem;
        padding: 5px 12px;
    }
    
    .vip-tiers { grid-template-columns: 1fr; }
    .payment-methods { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    
    .cta-section {
        padding: 48px 0;
    }
    
    .cta-section h2 {
        font-size: 1.4rem;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .bonus-ribbon {
        font-size: 0.6rem;
        padding: 3px 30px;
        top: 10px;
        right: -34px;
    }
    
    .footer-links h4 {
        font-size: 0.88rem;
    }
    
    .footer-bottom p {
        font-size: 0.72rem;
    }
}

@media (max-width: 360px) {
    html { font-size: 13px; }
    .container { padding: 0 12px; }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 14px 16px;
        font-size: 0.92rem;
    }
    
    .stat-number { font-size: 1.15rem; }
    
    .info-table td {
        padding: 8px 6px;
        font-size: 0.75rem;
    }
    
    .payment-methods {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .payment-item {
        padding: 12px 8px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 32px 0 48px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-buttons .btn {
        width: auto;
    }
    
    .main-nav.active {
        padding-top: 60px;
    }
}

@supports (padding: env(safe-area-inset-bottom)) {
    .site-footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .floating-cta.visible {
        bottom: calc(16px + env(safe-area-inset-bottom));
    }
    
    .back-to-top.visible {
        bottom: calc(80px + env(safe-area-inset-bottom));
    }
    
    .main-nav.active {
        padding-bottom: calc(40px + env(safe-area-inset-bottom));
    }
}


::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-card); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-dark); }


::selection {
    background: rgba(240, 192, 64, 0.3);
    color: #fff;
}


.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(240, 192, 64, 0.3);
    pointer-events: none;
}

@keyframes particle-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    25% { transform: translate(20px, -30px) scale(1.5); opacity: 0.5; }
    50% { transform: translate(-10px, -60px) scale(1); opacity: 0.3; }
    75% { transform: translate(15px, -30px) scale(1.3); opacity: 0.4; }
}
