@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&family=Open+Sans:wght@300;400;600&display=swap');

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

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 50%, #2c1810 100%);
    color: #f5f5f5;
    line-height: 1.7;
    min-height: 100vh;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(44, 24, 16, 0.95);
    padding: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(255, 127, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ff7f00;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffb347;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.main-nav a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 600;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: rgba(255, 127, 0, 0.2);
    color: #ffb347;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #ffb347;
    border-radius: 2px;
    transition: 0.3s;
}

main {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.hero-section {
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.15) 0%, rgba(255, 179, 71, 0.1) 100%);
    padding: 5rem 3rem;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    color: #ffb347;
    margin-bottom: 1rem;
    font-weight: 800;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #ffb347;
    margin: 3rem 0 1.5rem;
    font-weight: 600;
}

.subtitle {
    font-size: 1.4rem;
    color: #e0e0e0;
    font-weight: 300;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.info-card {
    background: rgba(74, 44, 26, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 127, 0, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: #ff7f00;
    box-shadow: 0 12px 35px rgba(255, 127, 0, 0.3);
}

.info-card h3 {
    color: #ffb347;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.info-card p {
    line-height: 1.8;
}

.game-section {
    background: rgba(0, 0, 0, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-section iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
}

.content-block {
    background: rgba(74, 44, 26, 0.5);
    padding: 3rem;
    border-radius: 20px;
    margin: 2.5rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.content-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

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

.content-block li {
    margin-bottom: 1rem;
}

footer {
    background: rgba(44, 24, 16, 0.95);
    padding: 2.5rem 0;
    margin-top: 5rem;
    border-top: 3px solid #ff7f00;
}

.footer-inner {
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: #ffb347;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.age-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-check.show {
    display: flex;
}

.age-check-content {
    background: linear-gradient(135deg, #4a2c1a 0%, #6b3e22 100%);
    padding: 3.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 600px;
    border: 4px solid #ff7f00;
    box-shadow: 0 0 50px rgba(255, 127, 0, 0.4);
}

.age-check-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.age-check-content p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
}

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

.age-button {
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.age-button.accept {
    background: #ff7f00;
    color: #fff;
}

.age-button.accept:hover {
    background: #ffb347;
    transform: scale(1.05);
}

.age-button.decline {
    background: #8b0000;
    color: #fff;
}

.age-button.decline:hover {
    background: #a00000;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(44, 24, 16, 0.98);
        transition: right 0.3s ease;
        padding: 6rem 2rem;
        border-left: 3px solid #ff7f00;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 3rem 1.5rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .game-section iframe {
        height: 500px;
    }

    .content-block {
        padding: 2rem 1.5rem;
    }

    .age-check-content {
        margin: 1rem;
        padding: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
