* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --deep-purple: #2C1654;
    --burgundy: #7B1E3F;
    --cream: #F5E6D3;
    --dark-teal: #1B4B5A;
    --light-gold: #FFD700;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to bottom, #1B1034, #2C1654, #1B1034);
    color: var(--cream);
    line-height: 1.8;
    min-height: 100vh;
    background-attachment: fixed;
}

header {
    background: rgba(44, 22, 84, 0.9);
    backdrop-filter: blur(8px);
    padding: 1.5rem 3rem;
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.header-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
}

.brand-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--deep-purple);
    font-weight: 900;
    border: 3px solid var(--light-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.main-nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    letter-spacing: 1px;
}

.main-nav a:hover {
    color: var(--light-gold);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 32px;
    height: 4px;
    background: var(--light-gold);
    border-radius: 2px;
    transition: 0.3s;
}

.content-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

.banner {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(123, 30, 63, 0.3), rgba(27, 75, 90, 0.3));
    border-radius: 30px;
    margin-bottom: 4rem;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.2);
}

.banner h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--light-gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    font-weight: 800;
    letter-spacing: 3px;
}

.banner p {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--cream);
    line-height: 2;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.info-box {
    background: linear-gradient(145deg, rgba(44, 22, 84, 0.6), rgba(27, 75, 90, 0.4));
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid var(--gold);
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.info-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.info-box h3 {
    color: var(--light-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-box p {
    color: var(--cream);
    font-size: 1.1rem;
    line-height: 1.8;
}

.game-section {
    background: rgba(44, 22, 84, 0.5);
    border-radius: 30px;
    padding: 3rem;
    margin: 4rem 0;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.3);
}

.game-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--light-gold);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.game-embed {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 20px;
    background: #000;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.text-block {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(27, 75, 90, 0.3);
    border-radius: 25px;
    border-left: 6px solid var(--burgundy);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.text-block h2 {
    color: var(--light-gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.text-block p {
    color: var(--cream);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 2;
}

.text-block ul {
    list-style: none;
    padding: 0;
}

.text-block li {
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    background: rgba(44, 22, 84, 0.4);
    border-radius: 15px;
    color: var(--cream);
    border-left: 4px solid var(--gold);
    font-size: 1.1rem;
}

.text-block li::before {
    content: "✧ ";
    color: var(--light-gold);
    font-weight: bold;
    margin-right: 1rem;
}

footer {
    background: rgba(44, 22, 84, 0.95);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
    border-top: 3px solid var(--gold);
}

.footer-wrapper {
    max-width: 1500px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-nav a {
    color: var(--cream);
    text-decoration: none;
    padding: 0.8rem 2rem;
    border: 2px solid var(--gold);
    border-radius: 30px;
    transition: all 0.3s;
    font-weight: 600;
}

.footer-nav a:hover {
    background: var(--gold);
    color: var(--deep-purple);
    transform: scale(1.05);
}

.footer-info {
    text-align: center;
    color: var(--cream);
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 1rem;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.show {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, #2C1654, #1B4B5A);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    max-width: 550px;
    border: 4px solid var(--gold);
    box-shadow: 0 20px 80px rgba(212, 175, 55, 0.5);
}

.age-gate-box h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--light-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.age-gate-box p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 2;
    color: var(--cream);
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.age-yes {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--deep-purple);
    border: 3px solid var(--light-gold);
}

.age-yes:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.age-no {
    background: transparent;
    color: var(--cream);
    border: 3px solid var(--burgundy);
}

.age-no:hover {
    background: var(--burgundy);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(44, 22, 84, 0.98);
        flex-direction: column;
        padding: 3rem;
        transition: left 0.4s;
        gap: 0;
    }
    
    .main-nav.open {
        left: 0;
    }
    
    .main-nav a {
        width: 100%;
        text-align: center;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    header {
        padding: 1rem 1.5rem;
    }
    
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .banner p {
        font-size: 1.1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .game-embed {
        height: 550px;
    }
    
    .content-wrapper {
        padding: 2rem 1rem;
    }
    
    .age-gate-box {
        margin: 1rem;
        padding: 2.5rem;
    }
    
    .age-gate-box h2 {
        font-size: 2rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}
