:root {
    --primary-color: #00FF85; 
    --primary-hover: #00e677;
    --secondary-color: #1a1a24;
    --bg-color: #0b0b0f;
    --bg-darker: #050508;
    --text-color: #ffffff;
    --text-muted: #b0b0c0;
    --font-heading: 'Montserrat', sans-serif;
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
}

.text-center { text-align: center; }
.highlight { color: var(--primary-color); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.bg-darker { background-color: var(--bg-darker); }

/* Header */
.header {
    background-color: rgba(26, 26, 36, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 133, 0.2);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo { max-height: 45px; }

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a:hover { color: var(--primary-color); }
.main-nav i { margin-right: 5px; color: var(--primary-color); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 133, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 133, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Hero */
.hero {
    position: relative;
    padding: 8rem 0;
    background: url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(11, 11, 15, 0.8), rgba(11, 11, 15, 1));
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-badges i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Sections */
.section { padding: 5rem 0; }

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2a2a3a;
    transition: transform 0.3s;
}

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

.feature-card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Pros/Cons Grid for E-E-A-T */
.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pros-card, .cons-card {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2a2a3a;
}

.pros-card h4 { color: var(--primary-color); font-size: 1.3rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px; }
.cons-card h4 { color: #ff4444; font-size: 1.3rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px; }

.pros-card ul, .cons-card ul {
    list-style: none;
    padding: 0;
}

.pros-card li, .cons-card li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 25px;
    color: var(--text-muted);
}

.pros-card li::before {
    content: "✓";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.cons-card li::before {
    content: "✕";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ff4444;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background-color: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a2a3a;
}

.game-img {
    height: 180px;
    background-color: #2a2a3a;
    background-size: cover;
    background-position: center;
}

.placeholder-slot1 { background-image: url('https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?w=500&q=80'); }
.placeholder-slot2 { background-image: url('https://images.unsplash.com/photo-1518133910546-b6c2fb7d79e3?w=500&q=80'); }
.placeholder-slot3 { background-image: url('https://images.unsplash.com/photo-1606167668584-78701c57f13d?w=500&q=80'); }
.placeholder-slot4 { background-image: url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?w=500&q=80'); }

.game-info {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Flex layout */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.align-center { align-items: center; }
.text-content { flex: 1; min-width: 300px; }
.image-content { flex: 1; min-width: 300px; }

.check-list { list-style: none; margin: 1.5rem 0; }
.check-list li { margin-bottom: 1rem; color: var(--text-muted); }
.check-list i { color: var(--primary-color); margin-right: 10px; }

/* Bonus Cards */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: linear-gradient(145deg, var(--secondary-color), #232336);
    border-radius: 12px;
    border: 1px solid var(--primary-color);
    overflow: hidden;
}

.bonus-header {
    background-color: var(--primary-color);
    color: #000;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem;
}

.bonus-body {
    padding: 2rem;
    text-align: center;
}

.bonus-body h3 { font-size: 2rem; margin-bottom: 1rem; }
.bonus-body p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* VIP */
.vip-tiers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tier {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    min-width: 200px;
    border: 1px solid #2a2a3a;
}

.tier.elite {
    border-color: var(--primary-color);
    background: linear-gradient(180deg, var(--secondary-color), rgba(0, 255, 133, 0.1));
}

.tier h4 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--primary-color); }

/* Table */
.table-responsive { overflow-x: auto; }
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
}
.styled-table thead tr {
    background-color: var(--primary-color);
    color: #000;
    text-align: left;
}
.styled-table th, .styled-table td { padding: 15px 20px; border-bottom: 1px solid #2a2a3a; }
.styled-table tbody tr:hover { background-color: rgba(255,255,255,0.05); }

/* FAQ */
.faq-item {
    background-color: var(--secondary-color);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}
.faq-item h4 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.faq-item p { color: var(--text-muted); }

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.payment-methods i { color: #555; transition: color 0.3s; }
.payment-methods i:hover { color: var(--text-color); }

/* Footer */
.footer {
    background-color: #050508;
    padding: 4rem 0 2rem;
    border-top: 1px solid #2a2a3a;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo { max-height: 40px; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; }
.footer-links h4 { margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary-color); }

.footer-warning {
    background-color: #1a1a24;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #ff4444;
}
.age-limit {
    display: inline-block;
    background-color: #ff4444;
    color: white;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.footer-warning p { font-size: 0.85rem; color: #ccc; }
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a2a3a;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Mobile Responsiveness --- */
.mobile-nav-toggle {
    display: none;
    color: var(--primary-color);
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .mobile-nav-toggle {
        display: block;
        order: 2; /* Put hamburger on the right */
    }

    .header-actions {
        display: none; /* Hide top buttons on mobile for cleaner look */
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 1rem;
        background-color: var(--bg-darker);
        padding: 1rem 0;
        border-radius: 8px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .flex-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .vip-tiers {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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