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

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

:root {
    --royal-purple: #5e2b97;
    --deep-purple: #2a1052;
    --gold: #d4af37;
    --gold-light: #f0d890;
    --cream: #faf6eb;
    --charcoal: #1e1a24;
    --soft-white: #f8f5f2;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--charcoal) 100%);
    color: var(--cream);
    line-height: 1.8;
    min-height: 100vh;
}

.wrapper {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
header {
    background: rgba(30, 26, 36, 0.95);
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.brand-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.brand-text {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
}

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

.main-nav ul li a {
    font-family: 'Cinzel', serif;
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

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

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

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

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

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

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Main Content Area */
main {
    margin-top: 90px;
}

/* Banner Section */
.banner {
    background: linear-gradient(180deg, var(--deep-purple) 0%, rgba(42, 16, 82, 0.6) 50%, var(--charcoal) 100%);
    padding: 100px 30px;
    text-align: center;
    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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.banner h1 {
    font-family: 'Cinzel', serif;
    font-size: 58px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 25px;
    text-shadow: 2px 2px 20px rgba(212, 175, 55, 0.3);
    position: relative;
}

.banner .tagline {
    font-size: 22px;
    color: var(--cream);
    max-width: 850px;
    margin: 0 auto;
    font-style: italic;
    position: relative;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(145deg, rgba(94, 43, 151, 0.4) 0%, rgba(42, 16, 82, 0.6) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.info-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-card p {
    color: var(--cream);
    font-size: 16px;
    opacity: 0.9;
}

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

.game-display h2 {
    font-family: 'Cinzel', serif;
    text-align: center;
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 45px;
    letter-spacing: 2px;
}

.game-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.game-container iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
    background: #000;
}

/* Highlights */
.highlights {
    padding: 80px 30px;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--deep-purple) 100%);
}

.highlights h2 {
    font-family: 'Cinzel', serif;
    text-align: center;
    font-size: 38px;
    color: var(--gold);
    margin-bottom: 55px;
}

.highlights-row {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    max-width: 1500px;
    margin: 0 auto;
}

.highlight-item {
    background: rgba(94, 43, 151, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 35px 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    transition: all 0.4s ease;
}

.highlight-item:hover {
    background: rgba(94, 43, 151, 0.4);
    border-color: var(--gold);
}

.highlight-icon {
    font-size: 45px;
    margin-bottom: 18px;
    display: block;
}

.highlight-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.highlight-item p {
    color: var(--cream);
    font-size: 15px;
    opacity: 0.85;
}

/* Content Sections */
.content-section {
    padding: 70px 30px;
    max-width: 1050px;
    margin: 0 auto;
}

.content-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 46px;
    color: var(--gold);
    margin-bottom: 35px;
    text-align: center;
    letter-spacing: 2px;
}

.content-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--gold-light);
    margin: 40px 0 20px;
}

.content-section p {
    margin-bottom: 20px;
    color: var(--cream);
    font-size: 17px;
    opacity: 0.9;
}

.content-section ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.content-section ul li {
    margin-bottom: 12px;
    color: var(--cream);
    opacity: 0.85;
}

/* Footer */
footer {
    background: var(--charcoal);
    padding: 55px 30px 35px;
    border-top: 3px solid var(--gold);
}

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

.footer-inner h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    opacity: 0.8;
}

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

.footer-copy {
    color: var(--cream);
    font-size: 14px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    opacity: 0.7;
}

/* Age Verification */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-box {
    background: linear-gradient(145deg, var(--deep-purple) 0%, var(--charcoal) 100%);
    padding: 55px 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 520px;
    width: 90%;
    border: 3px solid var(--gold);
}

.age-box h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 34px;
    margin-bottom: 22px;
    letter-spacing: 2px;
}

.age-box p {
    color: var(--cream);
    font-size: 17px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-button {
    padding: 16px 45px;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-button.confirm {
    background: var(--gold);
    color: var(--charcoal);
}

.age-button.confirm:hover {
    background: var(--gold-light);
}

.age-button.decline {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
}

.age-button.decline:hover {
    background: var(--cream);
    color: var(--charcoal);
}

.denied-content {
    text-align: center;
    padding: 120px 30px;
}

.denied-content h1 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 38px;
    margin-bottom: 25px;
}

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--charcoal);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
    }
    
    .main-nav.open {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }
    
    .main-nav ul li a {
        font-size: 18px;
    }
    
    .banner h1 {
        font-size: 36px;
    }
    
    .banner .tagline {
        font-size: 18px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .game-container iframe {
        height: 420px;
    }
    
    .brand-text {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .brand-icon {
        width: 38px;
        height: 38px;
    }
    
    .age-box {
        padding: 35px 25px;
    }
    
    .age-actions {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 18px;
    }
    
    .highlight-item {
        min-width: 100%;
    }
}
