@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600&display=swap');

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

:root {
    --gold: #d4af37;
    --emerald: #2ecc71;
    --deep-green: #1a3a2a;
    --cream: #f5f0e6;
    --dark: #0d1f17;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--dark);
    color: var(--cream);
    line-height: 1.8;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(13, 31, 23, 0.98), rgba(13, 31, 23, 0.9));
    border-bottom: 1px solid var(--gold);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand svg {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cream);
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.main-nav a:hover {
    color: var(--gold);
}

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

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

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

/* Banner Section */
.banner {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--deep-green) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 30px 80px;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L30 60 M0 30 L60 30' stroke='%23d4af3710' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner h1 {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.banner .tagline {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s;
}

.cta-button:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Info Boxes */
.info-strip {
    background: var(--deep-green);
    padding: 70px 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.info-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.info-item {
    text-align: center;
    flex: 1;
    min-width: 280px;
    padding: 30px;
}

.info-item .symbol {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.info-item h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.info-item p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Game Display */
.game-display {
    padding: 100px 30px;
    background: var(--dark);
}

.game-display h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.game-display .subtitle {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.85;
}

.game-frame {
    max-width: 1100px;
    margin: 0 auto;
    border: 3px solid var(--gold);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.game-frame iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

/* Why Section */
.why-section {
    padding: 100px 30px;
    background: linear-gradient(180deg, var(--deep-green), var(--dark));
}

.why-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.why-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
}

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

.why-card .icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.why-card h4 {
    color: var(--emerald);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: var(--dark);
    padding: 60px 30px 40px;
    border-top: 1px solid var(--gold);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.responsible-links {
    margin-bottom: 30px;
}

.responsible-links h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.responsible-links a {
    color: var(--emerald);
    margin: 0 20px;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.responsible-links a:hover {
    opacity: 0.7;
}

.footer-note {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(13, 31, 23, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: var(--dark);
    border: 2px solid var(--gold);
    padding: 60px 50px;
    text-align: center;
    max-width: 480px;
}

.age-gate-box h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 25px;
}

.age-gate-box p {
    margin-bottom: 35px;
    line-height: 1.7;
}

.gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.gate-buttons button {
    padding: 15px 40px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm {
    background: var(--gold);
    border: none;
    color: var(--dark);
}

.btn-confirm:hover {
    background: #c9a432;
}

.btn-deny {
    background: transparent;
    border: 1px solid var(--cream);
    color: var(--cream);
}

.btn-deny:hover {
    background: rgba(255,255,255,0.1);
}

/* Page Title Section */
.page-title {
    padding: 160px 30px 100px;
    background: linear-gradient(135deg, var(--dark), var(--deep-green));
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.page-title h1 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.page-title p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Text Content */
.text-content {
    padding: 80px 30px;
    max-width: 900px;
    margin: 0 auto;
}

.text-content h2 {
    color: var(--emerald);
    font-size: 1.6rem;
    margin: 40px 0 20px;
}

.text-content h2:first-child {
    margin-top: 0;
}

.text-content p {
    margin-bottom: 18px;
    opacity: 0.9;
}

.text-content ul {
    margin: 20px 0 20px 25px;
}

.text-content li {
    margin-bottom: 12px;
}

/* Play Page */
.play-hero {
    padding: 140px 30px 60px;
    text-align: center;
    background: var(--dark);
}

.play-hero h1 {
    color: var(--gold);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.play-hero .instructions {
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 30px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.4s;
        border-bottom: 1px solid var(--gold);
    }
    
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .info-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame iframe {
        height: 450px;
    }
    
    .gate-buttons {
        flex-direction: column;
    }
    
    .age-gate-box {
        margin: 20px;
        padding: 40px 25px;
    }
}
