@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #1a1a1a;
    color: #d4d4d4;
    line-height: 1.7;
    min-height: 100vh;
}

header {
    background: rgba(26, 26, 26, 0.98);
    padding: 1.2rem 0;
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    max-width: 100%;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: lowercase;
    font-style: italic;
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #d4af37;
    margin: 6px 0;
    transition: 0.3s;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: #d4d4d4;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #d4af37;
}

nav a:hover::before {
    width: 100%;
}

.page-wrapper {
    width: 100%;
    padding: 2.5rem;
}

.hero-banner {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border: 2px solid #d4af37;
    padding: 5rem 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.hero-banner > * {
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4af37;
    margin: 2.5rem 0 1rem;
    border-left: 4px solid #d4af37;
    padding-left: 1rem;
}

.text-block {
    background: #2c2c2c;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-left: 3px solid #d4af37;
}

.alert-message {
    background: linear-gradient(135deg, #8b0000 0%, #4a0000 100%);
    padding: 2rem;
    margin: 3rem 0;
    border: 2px solid #ff4444;
}

.alert-message h3 {
    color: #ff6666;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.game-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 4rem auto;
    background: #000;
    border: 3px solid #d4af37;
    overflow: hidden;
}

.game-wrapper iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-box {
    background: #2c2c2c;
    padding: 2.5rem;
    border: 1px solid #d4af37;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: #333;
    border-color: #ffd700;
    transform: scale(1.02);
}

.feature-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
}

footer {
    background: #0d0d0d;
    padding: 3.5rem 2.5rem;
    margin-top: 5rem;
    border-top: 3px solid #d4af37;
}

.footer-container {
    max-width: 100%;
    text-align: center;
}

.footer-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffd700;
}

.age-modal {
    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;
}

.modal-content {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 3.5rem;
    border: 3px solid #d4af37;
    text-align: center;
    max-width: 550px;
}

.modal-content h2 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.modal-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.action-btn {
    padding: 1rem 2.5rem;
    border: 2px solid #d4af37;
    background: transparent;
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-btn.accept {
    background: #d4af37;
    color: #1a1a1a;
}

.action-btn.accept:hover {
    background: #ffd700;
    border-color: #ffd700;
}

.action-btn.reject {
    border-color: #ff4444;
    color: #ff4444;
}

.action-btn.reject:hover {
    background: #ff4444;
    color: white;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2.5rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-top: 2px solid #d4af37;
    }

    nav ul.open {
        left: 0;
    }

    .top-bar {
        padding: 0 1.5rem;
    }

    .page-wrapper {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-banner {
        padding: 3rem 1.5rem;
    }

    .feature-container {
        grid-template-columns: 1fr;
    }

    .game-wrapper iframe {
        height: 500px;
    }

    .text-block,
    .alert-message {
        padding: 1.5rem;
    }
}
