:root {
    --bg-dark: #101018; 
    --bg-darker: #08080c; 
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --accent-primary: #fcd34d; /* Amber/Gold */
    --accent-secondary: #fde68a; /* Lighter Gold */
    --neon-green: #10b981;
    --glass-bg: rgba(16, 16, 24, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
}

/* Utilities */
.text-accent-primary { color: var(--accent-primary); }
.text-neon-green { color: var(--neon-green); }
.text-gradient {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 5% 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(252, 211, 77, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background: var(--accent-primary);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(252, 211, 77, 0.2);
    opacity: 0.9;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-weight: 500;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-compliance {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-graphics {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.center-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(252, 211, 77, 0.08) 0%, rgba(16, 16, 24, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}


/* Brands Section */
.brands-section {
    padding: 6rem 5%;
    background-color: var(--bg-dark);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(252, 211, 77, 0.1);
}

.brand-logo-container {
    height: 120px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

.brand-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.brand-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--accent-primary);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.brand-card:hover .btn-secondary {
    background: var(--accent-primary);
    color: #fff;
}

/* About Section */
.about-section {
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-content {
    max-width: 800px;
    text-align: center;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(252, 211, 77, 0.1);
    border: 1px solid rgba(252, 211, 77, 0.2);
    padding: 1rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
}

.compliance-badge h3 {
    font-size: 1.25rem;
    color: var(--accent-primary);
}

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

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-company p, .footer-address p {
    color: var(--text-secondary);
    margin-top: 1rem;
}

.footer-address h4, .footer-links h4 {
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-graphics {
        display: none;
    }
}

/* Scroll reveal utility class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Compliance Section */
.compliance-section {
    padding: 6rem 5%;
    background-color: var(--bg-dark);
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(252, 211, 77, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

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

/* Responsible Gaming Section */
.rg-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
}

.rg-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid rgba(16, 185, 129, 0.2); /* Green tint */
    border-radius: 24px;
    padding: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
}

.rg-content {
    flex: 1;
    min-width: 300px;
}

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

.rg-lead {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.rg-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.rg-list {
    list-style: none;
}

.rg-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.rg-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    justify-content: center;
    text-align: center;
}

.age-badge {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neon-green);
    line-height: 1;
}

.rg-badge p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .rg-container {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
    }
    .rg-list li {
        justify-content: center;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-darker);
}

.contact-card {
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 5rem 3rem;
    max-width: 900px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(252, 211, 77, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-card h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-divider {
    width: 1px;
    height: 24px;
    background-color: var(--glass-border);
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    .contact-divider {
        display: none;
    }
    .contact-card {
        padding: 3rem 1.5rem;
    }
    .contact-card h2 {
        font-size: 2.5rem;
    }
}

/* Legal Pages */
.legal-header {
    padding: 10rem 5% 4rem;
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.legal-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.legal-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 5%;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
}

.legal-content h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--accent-primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}
