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

:root {
    --forest: #1a472a;
    --sage: #87a96b;
    --cream: #fdfbf7;
    --gold: #c9a959;
    --brown: #4a3728;
    --tan: #d4c5a9;
    --charcoal: #2d2d2d;
}

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

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

header {
    background: var(--forest);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 3px;
}

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

nav ul li a {
    color: var(--tan);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 2px;
    background: var(--cream);
    transition: 0.3s;
}

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

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

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

.main-banner {
    background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
    padding: 100px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M50 0C22.4 0 0 22.4 0 50s22.4 50 50 50 50-22.4 50-50S77.6 0 50 0zm0 90c-22.1 0-40-17.9-40-40s17.9-40 40-40 40 17.9 40 40-17.9 40-40 40z'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.banner-inner {
    position: relative;
    z-index: 1;
    max-width: 750px;
    margin: 0 auto;
}

.banner-inner h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--cream);
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.2;
}

.banner-inner p {
    color: rgba(253, 251, 247, 0.85);
    font-size: 1.15rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.nature-btn {
    display: inline-block;
    padding: 16px 45px;
    background: var(--gold);
    color: var(--forest);
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.nature-btn:hover {
    background: var(--cream);
    transform: translateY(-3px);
}

.info-strip {
    background: var(--brown);
    padding: 60px 30px;
}

.info-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: rgba(253, 251, 247, 0.08);
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(253, 251, 247, 0.1);
}

.info-card .ico {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.info-card p {
    color: var(--tan);
    font-size: 0.95rem;
    font-weight: 300;
}

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

.showcase-title {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--forest);
    margin-bottom: 15px;
}

.showcase-title p {
    color: var(--brown);
    font-size: 1.1rem;
}

.game-box {
    max-width: 950px;
    margin: 0 auto;
    background: var(--forest);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 25px 60px rgba(26, 71, 42, 0.2);
}

.game-box iframe {
    width: 100%;
    height: 520px;
    border: none;
    border-radius: 12px;
}

.story-section {
    padding: 100px 30px;
    background: linear-gradient(180deg, var(--tan) 0%, var(--cream) 100%);
}

.story-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--forest);
    margin-bottom: 30px;
}

.story-content p {
    color: var(--brown);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 300;
}

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

.perks-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.perk-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    border: 2px solid var(--tan);
    transition: border-color 0.3s;
}

.perk-item:hover {
    border-color: var(--sage);
}

.perk-item .icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.perk-item h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--forest);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.perk-item p {
    color: var(--brown);
    font-size: 0.85rem;
}

footer {
    background: var(--forest);
    padding: 55px 30px;
}

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

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

.footer-menu a {
    color: var(--tan);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.responsible-area {
    padding-top: 25px;
    border-top: 1px solid rgba(212, 197, 169, 0.2);
}

.responsible-area p {
    color: rgba(212, 197, 169, 0.6);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

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

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

.copyright-line {
    margin-top: 25px;
    color: rgba(212, 197, 169, 0.5);
    font-size: 0.8rem;
}

.age-screen {
    position: fixed;
    inset: 0;
    background: rgba(26, 71, 42, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

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

.age-panel {
    background: var(--cream);
    border-radius: 20px;
    padding: 50px 45px;
    text-align: center;
    max-width: 460px;
    width: 90%;
    border: 4px solid var(--gold);
}

.age-panel h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--forest);
    font-size: 1.9rem;
    margin-bottom: 18px;
}

.age-panel p {
    color: var(--brown);
    margin-bottom: 30px;
}

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

.age-panel-btn {
    padding: 14px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.age-panel-btn.enter {
    background: var(--forest);
    color: var(--cream);
}

.age-panel-btn.enter:hover {
    background: var(--sage);
}

.age-panel-btn.leave {
    background: var(--tan);
    color: var(--brown);
}

.age-panel-btn.leave:hover {
    background: var(--gold);
}

.inner-hero {
    background: linear-gradient(135deg, var(--forest), var(--sage));
    padding: 130px 30px 70px;
    text-align: center;
}

.inner-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--cream);
    margin-bottom: 12px;
}

.inner-hero p {
    color: rgba(253, 251, 247, 0.8);
    font-size: 1.1rem;
}

.content-section {
    padding: 70px 30px;
    max-width: 850px;
    margin: 0 auto;
}

.content-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--forest);
    margin: 40px 0 18px;
}

.content-section p {
    color: var(--brown);
    margin-bottom: 16px;
}

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

.content-section li {
    color: var(--brown);
    margin-bottom: 10px;
}

.game-tip {
    background: linear-gradient(135deg, var(--forest), var(--sage));
    border-radius: 15px;
    padding: 28px;
    margin-bottom: 45px;
}

.game-tip h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.game-tip p {
    color: rgba(253, 251, 247, 0.85);
    margin: 0;
}

@media (max-width: 992px) {
    .info-cards {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
    
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-inner h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--forest);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    
    nav.active {
        max-height: 320px;
        border-bottom: 2px solid var(--gold);
    }
    
    nav ul {
        flex-direction: column;
        padding: 25px;
        gap: 0;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(212, 197, 169, 0.15);
    }
    
    .banner-inner h1 {
        font-size: 2rem;
    }
    
    .game-box iframe {
        height: 380px;
    }
    
    .perks-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .responsible-area a {
        display: block;
        margin: 10px 0;
    }
    
    .age-panel-btns {
        flex-direction: column;
    }
    
    .age-panel-btn {
        width: 100%;
    }
}
