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

:root {
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --burgundy: #722f37;
    --cream: #faf8f0;
    --charcoal: #1a1a1a;
    --brown: #3d2914;
}

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

html {
    scroll-behavior: smooth;
}

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

header {
    background: linear-gradient(135deg, var(--charcoal), var(--brown));
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 45px;
}

nav ul li a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

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

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

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

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.banner {
    background: linear-gradient(rgba(26,26,26,0.7), rgba(26,26,26,0.8)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23d4af37' fill-opacity='0.1'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/svg%3E");
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 30px;
}

.banner-text {
    max-width: 800px;
}

.banner-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    color: var(--cream);
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

.banner-text h1 em {
    color: var(--gold);
    font-style: normal;
}

.banner-text p {
    color: rgba(250, 248, 240, 0.85);
    font-size: 1.15rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-gold {
    display: inline-block;
    padding: 18px 55px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--charcoal);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 3px;
    border-radius: 0;
    transition: all 0.3s;
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
}

.info-boxes {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: -60px auto 80px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.info-box {
    flex: 1;
    background: var(--charcoal);
    padding: 45px 35px;
    text-align: center;
    border-right: 1px solid rgba(212, 175, 55, 0.3);
}

.info-box:last-child {
    border-right: none;
}

.info-box .icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.info-box h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.info-box p {
    color: rgba(250, 248, 240, 0.7);
    font-size: 0.9rem;
    font-weight: 300;
}

.game-showcase {
    padding: 100px 30px;
    background: var(--cream);
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.section-heading .line {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
}

.game-frame {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--charcoal);
    padding: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

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

.about-area {
    padding: 100px 30px;
    background: linear-gradient(135deg, var(--brown), var(--charcoal));
}

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

.about-inner h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.about-inner p {
    color: rgba(250, 248, 240, 0.8);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlights {
    padding: 80px 30px;
    background: var(--cream);
}

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

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px;
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: box-shadow 0.3s;
}

.highlight-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.highlight-card .icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.highlight-card h4 {
    font-family: 'Cinzel', serif;
    color: var(--charcoal);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.highlight-card p {
    color: #666;
    font-size: 0.95rem;
}

footer {
    background: var(--charcoal);
    padding: 60px 30px;
}

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

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

.footer-nav a {
    color: rgba(250, 248, 240, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.responsible-section {
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.responsible-section p {
    color: rgba(250, 248, 240, 0.5);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.responsible-section a {
    color: var(--gold);
    text-decoration: none;
    margin: 0 18px;
    font-size: 0.85rem;
}

.responsible-section a:hover {
    text-decoration: underline;
}

.copyright-text {
    margin-top: 30px;
    color: rgba(250, 248, 240, 0.4);
    font-size: 0.8rem;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

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

.age-gate-box {
    background: linear-gradient(145deg, var(--brown), var(--charcoal));
    border: 3px solid var(--gold);
    padding: 60px 50px;
    text-align: center;
    max-width: 480px;
    width: 90%;
}

.age-gate-box h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.age-gate-box p {
    color: rgba(250, 248, 240, 0.8);
    margin-bottom: 35px;
    font-size: 1rem;
}

.age-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.age-btn {
    padding: 16px 45px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid var(--gold);
}

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

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

.age-btn.deny {
    background: transparent;
    color: var(--gold);
}

.age-btn.deny:hover {
    background: rgba(212, 175, 55, 0.1);
}

.page-hero {
    background: linear-gradient(rgba(26,26,26,0.85), rgba(26,26,26,0.9)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23d4af37' fill-opacity='0.08'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
    padding: 160px 30px 80px;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--cream);
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(250, 248, 240, 0.7);
    font-size: 1.1rem;
}

.content-area {
    padding: 80px 30px;
    max-width: 900px;
    margin: 0 auto;
}

.content-area h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--brown);
    margin: 45px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.content-area p {
    color: #444;
    margin-bottom: 18px;
}

.content-area ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.content-area li {
    color: #444;
    margin-bottom: 10px;
}

.game-info {
    background: linear-gradient(135deg, var(--charcoal), var(--brown));
    padding: 30px;
    margin-bottom: 50px;
    border-left: 5px solid var(--gold);
}

.game-info h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 12px;
}

.game-info p {
    color: rgba(250, 248, 240, 0.8);
    margin: 0;
}

@media (max-width: 992px) {
    .info-boxes {
        flex-direction: column;
        max-width: 500px;
    }
    
    .info-box {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .info-box:last-child {
        border-bottom: none;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--charcoal);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    
    nav.active {
        max-height: 400px;
        border-bottom: 2px solid var(--gold);
    }
    
    nav ul {
        flex-direction: column;
        padding: 25px;
        gap: 0;
    }
    
    nav ul li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }
    
    nav ul li a {
        display: block;
        padding: 18px 0;
    }
    
    nav ul li a::after {
        display: none;
    }
    
    .banner-text h1 {
        font-size: 2.2rem;
    }
    
    .game-frame iframe {
        height: 400px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .responsible-section a {
        display: block;
        margin: 10px 0;
    }
    
    .age-gate-box {
        padding: 40px 25px;
    }
    
    .age-btns {
        flex-direction: column;
    }
    
    .age-btn {
        width: 100%;
    }
}
