@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-dark: #0B0F14;
    --bg-light: #121821;
    --gold: #C9A24A;
    --teal: #2EC4B6;
    --aqua: #4FD1C5;
    --text-main: #F4F4F5;
    --text-muted: #9CA3AF;
    --glass-bg: rgba(18, 24, 33, 0.7);
    --glass-border: rgba(201, 162, 74, 0.3);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--gold);
}

a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--aqua);
}

/* Glassmorphism Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.3s ease;
}

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

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(201, 162, 74, 0.5);
}

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

.nav-links li a {
    color: var(--text-main);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(45deg, var(--gold), #e0bf73);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(201, 162, 74, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 74, 0.6);
    color: var(--bg-dark);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--teal), var(--aqua));
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(46, 196, 182, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 196, 182, 0.6);
    color: var(--bg-dark);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--gold);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    background-image: linear-gradient(to bottom, rgba(11, 15, 20, 0.6), var(--bg-dark)), url('images/photo-1599557404176-13cb09d380e2-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(201, 162, 74, 0.6);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.disclaimer-banner {
    background: rgba(46, 196, 182, 0.1);
    border: 1px solid var(--teal);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--aqua);
}

/* Main Content Layout */
.section-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 0;
    box-shadow: 0 0 10px var(--gold);
}

/* Game Section */
.game-section {
    background: var(--bg-light);
    padding: 5rem 0;
    position: relative;
    border-top: 1px solid rgba(201, 162, 74, 0.2);
    border-bottom: 1px solid rgba(201, 162, 74, 0.2);
}

.iframe-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 850px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(46, 196, 182, 0.2), 0 0 50px rgba(201, 162, 74, 0.1);
    border: 2px solid var(--glass-border);
    background: #000;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Cards & Text Pages */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
}

.content-page {
    padding-top: 8rem;
    min-height: calc(100vh - 300px);
}

.content-page h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-page p, .content-page ul {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.content-page ul {
    margin-left: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-family: 'Cinzel', serif;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(11, 15, 20, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 10px rgba(46, 196, 182, 0.3);
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-col h3 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.legal-notice {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.age-badge {
    display: inline-block;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    font-weight: bold;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--gold);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .iframe-container {
        height: 600px;
    }
}