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

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

:root {
    --royal-purple: #9333ea;
    --deep-purple: #7c3aed;
    --gold: #fbbf24;
    --dark-gold: #f59e0b;
    --cream: #fef3c7;
    --bg-dark: #1f1024;
    --bg-darker: #120818;
    --card-bg: #2d1b3d;
    --text-light: #f3e8ff;
    --text-muted: #c4b5fd;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
}

.ornate-border {
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

header {
    background: var(--bg-darker);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

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

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: capitalize;
}

nav a::before {
    content: '◆';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--gold);
}

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

nav a:hover::before {
    opacity: 1;
}

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

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
}

main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.royal-hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-dark) 100%);
    border: 3px solid var(--gold);
    margin: 2rem 0 4rem;
    position: relative;
}

.royal-hero::before,
.royal-hero::after {
    content: '❖';
    position: absolute;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
}

.royal-hero::before {
    top: 20px;
    left: 30px;
}

.royal-hero::after {
    bottom: 20px;
    right: 30px;
}

.royal-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
}

.royal-hero .subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-style: italic;
}

.royal-hero p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.royal-btn {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--bg-darker);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border: 3px solid var(--gold);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.royal-btn:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.5);
    transform: translateY(-3px);
}

.proclamation {
    background: var(--card-bg);
    border: 2px solid var(--royal-purple);
    border-left: 5px solid var(--gold);
    padding: 3rem;
    margin: 3rem 0;
}

.proclamation h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
}

.proclamation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.proclamation-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
    border: 2px solid var(--royal-purple);
}

.proclamation-item .symbol {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.proclamation-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.luxury-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.luxury-card {
    background: var(--card-bg);
    padding: 3rem 2.5rem;
    border: 2px solid var(--royal-purple);
    border-top: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.4);
    border-color: var(--gold);
}

.luxury-card .icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.luxury-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.luxury-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.game-showcase {
    background: var(--card-bg);
    border: 3px solid var(--gold);
    padding: 2.5rem;
    margin: 4rem 0;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3);
}

.game-showcase iframe {
    width: 100%;
    height: 650px;
    border: 2px solid var(--royal-purple);
}

.content-block {
    background: var(--card-bg);
    border-left: 5px solid var(--gold);
    padding: 3.5rem 3rem;
    margin: 3rem 0;
}

.content-block h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.content-block p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.content-block ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-block li {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.9;
}

footer {
    background: var(--bg-darker);
    border-top: 3px solid var(--gold);
    padding: 3rem 2rem;
    margin-top: 6rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--cream);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

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

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 8, 24, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

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

.age-box {
    background: linear-gradient(135deg, var(--card-bg), var(--bg-dark));
    border: 3px solid var(--gold);
    padding: 4rem 3.5rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.5);
}

.age-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.age-box p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.age-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-option {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: 3px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-option.confirm {
    background: var(--gold);
    color: var(--bg-darker);
}

.age-option.confirm:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.age-option.decline {
    background: transparent;
    color: var(--text-muted);
}

.age-option.decline:hover {
    border-color: var(--text-muted);
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: var(--gold);
    text-align: center;
    margin: 2rem 0 3rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

@media (max-width: 1024px) {
    .luxury-features {
        grid-template-columns: 1fr;
    }
    
    .proclamation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: var(--bg-darker);
        transition: left 0.3s ease;
        padding-top: 80px;
        border-right: 3px solid var(--gold);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }
    
    nav li {
        border-bottom: 2px solid var(--royal-purple);
    }
    
    nav a {
        display: block;
        padding: 1.5rem 0;
    }
    
    nav a::before {
        left: 0;
    }
    
    .royal-hero h1 {
        font-size: 2.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .age-options {
        flex-direction: column;
    }
}
