:root {
    /* Color Palette */
    --primary-gold: #FFB800;
    --primary-orange: #FF6B00;
    --accent-red: #FF0844;
    --accent-purple: #9D4EDD;
    --bg-dark: #0A0A0F;
    --bg-darker: #050508;
    --bg-card: #141419;
    --bg-card-hover: #1A1A22;
    --text-primary: #FFFFFF;
    --text-secondary: #B4B4C8;
    --text-muted: #6E6E88;
    --border-color: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #FFB800 0%, #FF6B00 100%);
    --gradient-purple: linear-gradient(135deg, #9D4EDD 0%, #6B2FB5 100%);
    --gradient-red: linear-gradient(135deg, #FF0844 0%, #C4004D 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 10, 15, 0) 0%, rgba(10, 10, 15, 0.9) 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(255, 184, 0, 0.3);

    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
    position: relative;
}

.nav-link:hover {
    color: #fff;
}

/* Remove underline effect */
.nav-link::after {
    display: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.btn-login {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-login:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.4);
}

.btn-signup {
    padding: 0.6rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 60px;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgb(32, 28, 41) 0%, rgb(18, 18, 20) 90.2%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay for readability */
    z-index: 1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFB800;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-accent {
    color: #FFB800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #B4B4C8;
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Global Button Reset */
a.btn-primary,
a.btn-secondary,
button.btn-primary,
button.btn-secondary {
    text-decoration: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, #8A2BE2 0%, #FF0080 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #9D4EDD 0%, #FF3399 100%);
    box-shadow: 0 6px 25px rgba(255, 0, 128, 0.6);
    transform: translateY(-2px);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff;
}

.btn-secondary.white-bg {
    background: rgba(255, 255, 255, 0.15);
    /* Slightly more visible */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-weight: 700;
}

.btn-secondary.white-bg:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #ccc;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.check-icon {
    color: #FFB800;
    font-weight: bold;
}

/* Hero Visual Grid */
.hero-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.icon-yellow {
    background: linear-gradient(135deg, #FFB800 0%, #FF6B00 100%);
    color: #000;
}

.icon-pink {
    background: linear-gradient(135deg, #FF0844 0%, #FFB199 100%);
    color: #fff;
}

.icon-blue {
    background: linear-gradient(135deg, #4481EB 0%, #04BEFE 100%);
    color: #fff;
}

.icon-orange {
    background: linear-gradient(135deg, #f53803 0%, #f5d020 100%);
    color: #fff;
}

.glass-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.glass-card p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.4;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.glass-card:nth-child(1) {
    animation: float 6s ease-in-out infinite 0s;
}

.glass-card:nth-child(2) {
    animation: float 6s ease-in-out infinite 1s;
}

.glass-card:nth-child(3) {
    animation: float 6s ease-in-out infinite 2s;
}

.glass-card:nth-child(4) {
    animation: float 6s ease-in-out infinite 3s;
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Login & Register Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
}

.step-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Games Section */
.games {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    cursor: pointer;
}

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

.game-img-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, #1A1A22 0%, #2A2A35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.btn-play {
    padding: 0.75rem 2rem;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-fast);
}

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

.game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid var(--primary-gold);
}

.game-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1rem 1.5rem 0.5rem;
}

.game-category {
    color: var(--text-muted);
    margin: 0 1.5rem 1.5rem;
}

/* Bonus Section */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
}

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

.bonus-card.featured {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
    border: 2px solid var(--primary-gold);
}

.bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.2rem;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.bonus-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.bonus-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.bonus-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.bonus-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

/* Payment Section */
.payment {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
}

.payment-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.payment-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.payment-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.payment-time {
    color: var(--primary-gold);
    font-weight: 600;
}

.payment-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-weight: 600;
    color: var(--text-secondary);
}

/* Withdrawal Section */
.withdrawal-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.withdrawal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-normal);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

.withdrawal-process {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.process-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.process-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.process-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.process-arrow {
    text-align: center;
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

/* FAQs Section */
.faqs {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.faq-item.active {
    border-color: var(--primary-gold);
    background: var(--bg-card-hover);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.glass-card h2,
.glass-card h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link:hover {
    background: var(--gradient-gold);
    /* Or specific brand colors */
    color: #000;
    transform: translateY(-3px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(255, 184, 0, 0.3);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition-normal);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

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

    .withdrawal-features {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .payment-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Auth & Forms */
.auth-container {
    max-width: 480px;
    margin: 8rem auto 4rem;
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(20px);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.auth-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition-fast);
}

.auth-tab.active {
    background: var(--bg-card);
    color: var(--primary-gold);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.forgot-link {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.forgot-link:hover {
    text-decoration: underline;
}

.social-login {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.social-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    position: relative;
    top: -2.8rem;
    background: var(--bg-dark);
    /* Should match card bg but using simple fix */
    display: inline-block;
    padding: 0 1rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: #fff;
}

/* Page Header (Simple) */
.page-header {
    padding-top: 120px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 50% 0%, rgba(32, 28, 41, 1) 0%, rgba(10, 10, 15, 1) 100%);
    text-align: center;
}

.page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-breadcrumb {
    color: var(--text-secondary);
    font-size: 1rem;
}

.page-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.page-breadcrumb a:hover {
    color: var(--primary-gold);
}

.page-breadcrumb span {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

/* SEO Content Pages / Articles */
.article-section {
    padding: 4rem 0 6rem;
    background: var(--bg-dark);
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin: 2.5rem 0 1.5rem;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.article-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin: 2rem 0 1rem;
}

.article-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.article-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.article-content strong {
    color: #fff;
}

.highlight-box {
    background: rgba(255, 184, 0, 0.05);
    border-left: 4px solid var(--primary-gold);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(255, 0, 128, 0.1) 100%);
    border: 1px solid rgba(255, 0, 128, 0.3);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    color: #fff;
    margin-top: 0;
}

.toc-box {
    background: var(--bg-darker);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-color);
}

.toc-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    display: block;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.toc-list a:hover {
    color: var(--primary-gold);
}

@media (max-width: 768px) {
    .article-content {
        padding: 1.5rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-toggle::after {
    content: '▾';
    font-size: 0.8em;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a20;
    /* Dark background matching theme */
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
}

/* Show dropdown on hover for desktop */
@media (min-width: 969px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #FFD700;
    /* Primary Gold */
    padding-left: 1.75rem;
    /* Slight shift on hover */
}

/* Mobile Dropdown */
@media (max-width: 968px) {
    .dropdown {
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        /* Stack normally on mobile */
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        border: none;
        width: 100%;
        padding-left: 0;
        display: none;
        /* Hidden by default */
        transform: none;
        opacity: 1;
        margin-top: 0.5rem;
        text-align: center;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 1001;
    border-top: 1px solid var(--border-color);
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-sticky-cta .btn-primary {
    width: 100%;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.4);
}

@media (max-width: 968px) {
    .mobile-sticky-cta {
        display: block;
    }
}



/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        /* Stack normally on mobile */
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        border: none;
        width: 100%;
        padding-left: 1rem;
        display: none;
        /* Hidden by default */
        transform: none;
        opacity: 1;
        margin-top: 0.5rem;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
}