@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff4757 100%);
    color: #2d2d2d;
    min-height: 100vh;
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 50px;
    height: 50px;
}

.brand-title {
    font-size: 1.9rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.main-menu a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    background: linear-gradient(135deg, #ffe5dc, #ffd6cc);
    transition: all 0.3s ease;
}

.main-menu a:hover {
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-icon span {
    width: 30px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
    transition: all 0.3s;
}

.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.intro-section {
    background: white;
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    max-width: 850px;
    margin: 0 auto;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-block {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #ff6b35;
}

.info-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.2);
}

.info-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
    font-weight: 800;
}

.info-block p {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.info-block ul {
    list-style: none;
    margin-top: 1.5rem;
}

.info-block li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #ffd6cc;
    color: #666;
}

.info-block li:last-child {
    border-bottom: none;
}

.game-wrapper {
    margin: 4rem 0;
    text-align: center;
}

.game-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-iframe {
    width: 100%;
    max-width: 900px;
    height: 700px;
    border: none;
    border-radius: 25px;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.important-notice {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border: 3px solid #ff6b35;
    border-radius: 25px;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
}

.important-notice h2 {
    color: #ff4757;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.important-notice p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #666;
    margin: 0.8rem 0;
}

.site-footer {
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    background: linear-gradient(135deg, #ffe5dc, #ffd6cc);
    transition: all 0.3s;
}

.footer-links a:hover {
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.footer-notice {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.93);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-overlay.active {
    display: flex;
}

.age-box {
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-box h2 {
    font-size: 2.7rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.age-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-button {
    padding: 1.1rem 3rem;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.age-button.yes {
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    color: white;
}

.age-button.yes:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    transform: scale(1.07);
}

.age-button.no {
    background: #e0e0e0;
    color: #2d2d2d;
}

.age-button.no:hover {
    background: #bdbdbd;
    transform: scale(1.07);
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
        z-index: 1001;
    }
    
    .main-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100vh;
        background: white;
        transition: left 0.3s;
        padding-top: 5rem;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
    }
    
    .main-menu.open {
        left: 0;
    }
    
    .main-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
    }
    
    .main-menu a {
        display: block;
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .intro-section h1 {
        font-size: 2.2rem;
    }
    
    .intro-section p {
        font-size: 1rem;
    }
    
    .info-blocks {
        grid-template-columns: 1fr;
    }
    
    .brand-title {
        font-size: 1.3rem;
    }
    
    .game-iframe {
        height: 500px;
    }
    
    .age-box {
        margin: 1rem;
        padding: 2.5rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}
