@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #f8f9fe;
    color: #2d3748;
    min-height: 100vh;
}

.top-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 30px 0;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.primary-nav {
    display: flex;
    list-style: none;
    gap: 35px;
}

.primary-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-nav a:hover, .primary-nav a.active {
    background: rgba(255, 255, 255, 0.25);
}

.nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 6px 0;
}

.page-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 80px 40px;
}

.banner-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 40px;
    padding: 100px 60px;
    text-align: center;
    margin-bottom: 80px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.banner-hero h1 {
    font-size: 68px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.banner-hero p {
    font-size: 24px;
    max-width: 1000px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.notice-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 40px;
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: 0 20px 60px rgba(245, 87, 108, 0.3);
}

.notice-card h3 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.notice-card ul {
    list-style: none;
    padding: 0;
}

.notice-card li {
    padding: 20px 0;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.notice-card li:last-child {
    border-bottom: none;
}

.notice-card li:before {
    content: "★ ";
    margin-right: 15px;
    font-size: 26px;
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.feature-card {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.feature-card .emoji {
    font-size: 70px;
    margin-bottom: 25px;
    display: block;
}

.feature-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #667eea;
    font-weight: 800;
}

.feature-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.content-box {
    background: #fff;
    border-radius: 40px;
    padding: 70px;
    margin-bottom: 80px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.content-box h2 {
    font-size: 56px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-transform: uppercase;
}

.content-box h3 {
    font-size: 34px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #f5576c;
    font-weight: 800;
}

.content-box p {
    line-height: 2;
    margin-bottom: 25px;
    font-size: 18px;
    color: #4a5568;
}

.content-box ul, .content-box ol {
    margin-left: 40px;
    margin-bottom: 25px;
}

.content-box li {
    margin-bottom: 15px;
    line-height: 2;
    color: #4a5568;
}

.game-box {
    background: #fff;
    border-radius: 40px;
    padding: 70px;
    margin-bottom: 80px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.game-box h2 {
    font-size: 56px;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-transform: uppercase;
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 20px;
    background: #000;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.site-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 80px 40px 50px;
    text-align: center;
    margin-top: 100px;
}

.site-footer h3 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-links-group {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-links-group a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-links-group a:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 70px;
    border-radius: 40px;
    text-align: center;
    max-width: 650px;
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.6);
}

.age-modal-box h2 {
    font-size: 50px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.age-modal-box p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.age-modal-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 45px;
}

.age-modal-actions button {
    padding: 20px 60px;
    font-size: 20px;
    font-weight: 900;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-yes {
    background: #fff;
    color: #667eea;
}

.btn-no {
    background: #f5576c;
    color: #fff;
}

.age-modal-actions button:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .cards-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .primary-nav {
        display: none;
        position: fixed;
        top: 110px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .primary-nav.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .page-content {
        padding: 50px 25px;
    }
    
    .banner-hero {
        padding: 60px 30px;
        border-radius: 30px;
    }
    
    .banner-hero h1 {
        font-size: 40px;
    }
    
    .banner-hero p {
        font-size: 19px;
    }
    
    .notice-card {
        padding: 40px 30px;
        border-radius: 30px;
    }
    
    .feature-card {
        padding: 35px;
    }
    
    .content-box {
        padding: 40px 30px;
        border-radius: 30px;
    }
    
    .game-box {
        padding: 40px 30px;
        border-radius: 30px;
    }
    
    .game-embed {
        height: 500px;
    }
    
    .site-footer {
        padding: 60px 30px 40px;
    }
    
    .age-modal-box {
        padding: 45px 30px;
        margin: 20px;
        border-radius: 30px;
    }
    
    .age-modal-box h2 {
        font-size: 36px;
    }
}
