@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #1a1410;
    color: #e0d5c7;
    min-height: 100vh;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #d4af37 0%, #f2d06b 50%, #d4af37 100%);
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1410;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.main-nav ul li a {
    display: block;
    padding: 0.8rem 1.5rem;
    background: #1a1410;
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    background: #2d2316;
    color: #f2d06b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: #1a1410;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 5px 0;
    border-radius: 2px;
}

/* Main Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Page Title */
.page-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(242, 208, 107, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid #d4af37;
}

.page-title h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-title p {
    font-size: 1.4rem;
    color: #c9b896;
    font-weight: 600;
}

/* Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.grid-item {
    background: #2d2316;
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid #3d3320;
    transition: all 0.3s ease;
}

.grid-item:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.grid-full {
    grid-column: span 12;
}

.grid-half {
    grid-column: span 6;
}

.grid-third {
    grid-column: span 4;
}

.grid-twothird {
    grid-column: span 8;
}

.grid-item h3 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.grid-item p {
    line-height: 1.9;
    color: #c9b896;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.grid-item ul {
    list-style: none;
    padding: 0;
}

.grid-item ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #c9b896;
    font-size: 1.05rem;
}

.grid-item ul li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.2rem;
}

/* Alert Boxes */
.alert-box {
    background: linear-gradient(135deg, #d4af37 0%, #f2d06b 100%);
    color: #1a1410;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.alert-box strong {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

/* Game Showcase */
.game-showcase {
    background: #0a0806;
    border: 3px solid #d4af37;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.game-showcase h3 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.game-container {
    background: #000;
    border-radius: 12px;
    padding: 2rem;
    display: inline-block;
}

.game-container iframe {
    border: none;
    border-radius: 8px;
    max-width: 100%;
}

/* Footer */
footer {
    background: #0a0806;
    border-top: 3px solid #d4af37;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-content h4 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #c9b896;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-content p {
    color: #8a7d6f;
    margin-top: 2rem;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: #2d2316;
    border: 4px solid #d4af37;
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 80px rgba(212, 175, 55, 0.5);
}

.age-modal-content h2 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.age-modal-content p {
    font-size: 1.2rem;
    color: #c9b896;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.age-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-btn {
    padding: 1.2rem 4rem;
    font-size: 1.3rem;
    font-weight: 900;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-btn.yes {
    background: linear-gradient(135deg, #d4af37, #f2d06b);
    color: #1a1410;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.age-btn.yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.age-btn.no {
    background: #4a4035;
    color: #c9b896;
}

.age-btn.no:hover {
    background: #5a5045;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-half,
    .grid-third,
    .grid-twothird {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1410;
        flex-direction: column;
        padding: 1rem;
        border-top: 2px solid #d4af37;
    }

    .main-nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .page-title h2 {
        font-size: 2.5rem;
    }

    .brand h1 {
        font-size: 1.8rem;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .container {
        padding: 2rem 1rem;
    }
}
