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

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

body {
    font-family: 'Lato', sans-serif;
    background: #fafafa;
    color: #2c2c2c;
    min-height: 100vh;
    line-height: 1.6;
}

.header-wrap {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 2px;
}

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

.primary-nav a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: #1a1a1a;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid #4a4a4a;
    padding: 8px 12px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #4a4a4a;
    margin: 4px 0;
}

.mobile-navigation {
    display: none;
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 999;
    padding: 30px 40px;
}

.mobile-navigation.show {
    display: block;
}

.mobile-navigation ul {
    list-style: none;
}

.mobile-navigation li {
    margin-bottom: 20px;
}

.mobile-navigation a {
    display: block;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.mobile-navigation a:hover,
.mobile-navigation a.active {
    color: #1a1a1a;
}

.centered-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    font-weight: 300;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 20px;
    text-align: center;
    color: #6a6a6a;
    margin-bottom: 60px;
    line-height: 1.8;
    font-weight: 300;
}

.section-block {
    margin-bottom: 70px;
}

.section-block h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
}

.section-block h3 {
    font-size: 24px;
    font-weight: 400;
    color: #2c2c2c;
    margin: 40px 0 20px;
}

.section-block p {
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-weight: 300;
}

.section-block ul,
.section-block ol {
    margin-left: 25px;
    margin-bottom: 25px;
}

.section-block li {
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 12px;
    font-weight: 300;
}

.info-panel {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 35px;
    margin: 35px 0;
    text-align: center;
}

.info-panel strong {
    display: block;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.info-panel p {
    color: #4a4a4a;
    margin: 0;
}

.game-wrapper {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    margin: 50px 0;
}

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

.divider {
    width: 60px;
    height: 1px;
    background: #2c2c2c;
    margin: 50px auto;
}

.footer-area {
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 60px 40px;
    margin-top: 100px;
}

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

.footer-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 30px;
}

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

.footer-nav a {
    color: #6a6a6a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.age-modal-box {
    background: #ffffff;
    border: 1px solid #2c2c2c;
    padding: 60px 50px;
    max-width: 600px;
    text-align: center;
}

.age-modal-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.age-modal-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 40px;
    font-weight: 300;
}

.age-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #2c2c2c;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
}

.age-btn-confirm {
    background: #2c2c2c;
    color: #ffffff;
}

.age-btn-confirm:hover {
    background: #1a1a1a;
}

.age-btn-decline {
    background: transparent;
    color: #2c2c2c;
}

.age-btn-decline:hover {
    background: #f0f0f0;
}

@media (max-width: 768px) {
    .primary-nav {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .header-inner {
        padding: 0 20px;
    }
    
    .site-title {
        font-size: 24px;
    }
    
    .centered-container {
        padding: 50px 20px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .section-block h2 {
        font-size: 34px;
    }
    
    .game-wrapper iframe {
        height: 500px;
    }
    
    .age-modal-box {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .age-modal-box h2 {
        font-size: 30px;
    }
    
    .age-btn-group {
        flex-direction: column;
    }
    
    .age-btn {
        width: 100%;
    }
}
