@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --royal-gold: #FFD700;
    --imperial-purple: #4B0082;
    --deep-burgundy: #800020;
    --ivory: #FFFFF0;
    --bronze: #CD7F32;
    --rich-purple: #6A0DAD;
}

body {
    font-family: 'Cinzel', serif;
    background: linear-gradient(135deg, #1a0033 0%, #2d0052 50%, #1a0033 100%);
    color: var(--ivory);
    line-height: 1.8;
    min-height: 100vh;
}

/* Top Navigation */
.top-nav {
    background: linear-gradient(90deg, rgba(75, 0, 130, 0.9), rgba(106, 13, 173, 0.9));
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--royal-gold);
    padding: 1.5rem 3rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crown-logo {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--royal-gold);
    text-decoration: none;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--ivory);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-links a:hover {
    color: var(--royal-gold);
    background: rgba(255, 215, 0, 0.1);
}

.hamburger-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger-icon div {
    width: 35px;
    height: 3px;
    background: var(--royal-gold);
    transition: all 0.3s ease;
}

/* Main Content */
.content-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 3rem;
}

/* Hero Area */
.hero-section {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(75, 0, 130, 0.2));
    border: 2px solid var(--royal-gold);
    border-radius: 20px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '♔';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--royal-gold);
    opacity: 0.2;
}

.hero-section::after {
    content: '♔';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 5rem;
    color: var(--royal-gold);
    opacity: 0.2;
}

.hero-section h1 {
    font-size: 4.5rem;
    color: var(--royal-gold);
    margin-bottom: 2rem;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.hero-section p {
    font-size: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 2.2;
}

/* Proclamation Boxes */
.proclamation {
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.3), rgba(75, 0, 130, 0.3));
    border: 2px solid var(--bronze);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    position: relative;
    padding-left: 4rem;
}

.proclamation::before {
    content: '⚜️';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

.proclamation h3 {
    color: var(--royal-gold);
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.proclamation p {
    font-size: 1.15rem;
    line-height: 2;
}

/* Asymmetric Grid */
.royal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: minmax(250px, auto);
    gap: 2rem;
    margin: 4rem 0;
}

.royal-card {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.4), rgba(106, 13, 173, 0.3));
    border: 2px solid var(--bronze);
    border-radius: 18px;
    padding: 3rem;
    transition: all 0.4s ease;
}

.royal-card:nth-child(1) {
    grid-column: 1 / 3;
}

.royal-card:nth-child(4) {
    grid-column: 2 / 4;
}

.royal-card:hover {
    border-color: var(--royal-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.6), rgba(106, 13, 173, 0.5));
}

.royal-card h2 {
    color: var(--royal-gold);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.royal-card p {
    font-size: 1.1rem;
    line-height: 2;
}

/* Game Throne */
.game-throne {
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.4), rgba(75, 0, 130, 0.4));
    border: 4px solid var(--royal-gold);
    border-radius: 25px;
    padding: 4rem;
    margin: 4rem 0;
    text-align: center;
}

.game-throne h2 {
    color: var(--royal-gold);
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 900;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.game-throne p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 2;
}

.game-throne iframe {
    width: 100%;
    max-width: 1000px;
    height: 700px;
    border: 3px solid var(--bronze);
    border-radius: 15px;
}

/* Footer */
.royal-footer {
    background: linear-gradient(90deg, rgba(75, 0, 130, 0.95), rgba(128, 0, 32, 0.95));
    border-top: 4px solid var(--royal-gold);
    padding: 3.5rem 3rem;
    margin-top: 5rem;
}

.footer-inner {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner h3 {
    color: var(--royal-gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.footer-resources {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-resources a {
    color: var(--ivory);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-resources a:hover {
    color: var(--royal-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.footer-inner p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Age Verification Chamber */
.verification-chamber {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 5000;
    align-items: center;
    justify-content: center;
}

.verification-chamber.open {
    display: flex;
}

.chamber-content {
    background: linear-gradient(135deg, #1a0033, #2d0052);
    border: 4px solid var(--royal-gold);
    border-radius: 25px;
    padding: 4rem;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.6);
}

.chamber-content h2 {
    color: var(--royal-gold);
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    font-weight: 900;
}

.chamber-content p {
    font-size: 1.3rem;
    line-height: 2.2;
    margin-bottom: 1.5rem;
}

.chamber-buttons {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    justify-content: center;
}

.royal-btn {
    padding: 1.5rem 3.5rem;
    border: none;
    border-radius: 12px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.royal-btn-enter {
    background: linear-gradient(135deg, var(--royal-gold), var(--bronze));
    color: #1a0033;
}

.royal-btn-enter:hover {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.8);
}

.royal-btn-leave {
    background: rgba(255, 255, 255, 0.15);
    color: var(--ivory);
    border: 2px solid var(--ivory);
}

.royal-btn-leave:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Responsive */
@media (max-width: 1024px) {
    .royal-grid {
        grid-template-columns: 1fr 1fr;
    }

    .royal-card:nth-child(1),
    .royal-card:nth-child(4) {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .hamburger-icon {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        background: linear-gradient(135deg, rgba(75, 0, 130, 0.98), rgba(128, 0, 32, 0.98));
        flex-direction: column;
        padding: 6rem 2rem;
        transition: right 0.3s ease;
        border-left: 3px solid var(--royal-gold);
    }

    .nav-links.open {
        right: 0;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .royal-grid {
        grid-template-columns: 1fr;
    }

    .game-throne iframe {
        height: 500px;
    }

    .footer-resources {
        flex-direction: column;
        gap: 2rem;
    }
}
