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

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8f0 50%, #f0f8ff 100%);
    color: #333;
    line-height: 1.6;
}

.top-bar {
    background: linear-gradient(90deg, #ff69b4, #ffb6c1, #ff69b4);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(255, 105, 180, 0.3);
}

.container-full {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.container.narrow {
    max-width: 900px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.main-nav {
    position: relative;
}

.menu-btn {
    display: none;
    background: white;
    color: #ff69b4;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.menu-list a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
}

.menu-list a:hover, .menu-list a.active {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.hero {
    text-align: center;
    padding: 80px 25px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(173, 216, 230, 0.3));
    margin-bottom: 60px;
    border-radius: 0 0 50px 50px;
}

.hero h1 {
    font-size: 52px;
    color: #ff69b4;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

.alerts-row {
    margin-bottom: 70px;
}

.alert-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.alert-card {
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.pink {
    background: linear-gradient(135deg, #ffb6c1, #ffc0cb);
}

.green {
    background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
}

.purple {
    background: linear-gradient(135deg, #d1c4e9, #b39ddb);
}

.alert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.alert-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
}

.alert-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.alert-card p {
    color: #555;
}

.intro-text {
    margin-bottom: 70px;
}

.intro-text h2 {
    font-size: 38px;
    text-align: center;
    color: #ff69b4;
    margin-bottom: 30px;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.game-showcase {
    margin-bottom: 70px;
}

.game-showcase h2 {
    font-size: 40px;
    text-align: center;
    color: #ff69b4;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.game-box {
    background: white;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.2);
    border: 4px solid #ffb6c1;
}

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

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

.perks-section h2 {
    font-size: 40px;
    text-align: center;
    color: #ff69b4;
    margin-bottom: 50px;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.perk-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.perk-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
}

.perk-emoji {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.perk-item h3 {
    font-size: 22px;
    color: #ff69b4;
    margin-bottom: 12px;
}

.perk-item p {
    color: #666;
    line-height: 1.7;
}

.about-social {
    margin-bottom: 70px;
}

.about-social h2 {
    font-size: 38px;
    text-align: center;
    color: #ff69b4;
    margin-bottom: 30px;
}

.about-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-box p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.page-footer {
    background: linear-gradient(135deg, #ff69b4, #ffb6c1);
    color: white;
    padding: 60px 25px 25px;
    margin-top: 80px;
    border-radius: 50px 50px 0 0;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-legal {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.95), rgba(255, 182, 193, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

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

.age-card {
    background: white;
    padding: 45px 35px;
    border-radius: 30px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-icon {
    margin-bottom: 20px;
}

.age-card h2 {
    font-size: 32px;
    color: #ff69b4;
    margin-bottom: 20px;
}

.age-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.age-note {
    font-size: 15px;
    font-weight: 600;
}

.age-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.btn-yes, .btn-no {
    padding: 15px 35px;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-yes {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
}

.btn-no {
    background: #e0e0e0;
    color: #555;
}

.btn-no:hover {
    background: #d0d0d0;
    transform: scale(1.05);
}

.play-header {
    text-align: center;
    padding: 60px 25px 40px;
}

.play-header h1 {
    font-size: 46px;
    color: #ff69b4;
    margin-bottom: 15px;
}

.play-header p {
    font-size: 19px;
    color: #666;
}

.tech-info {
    margin-bottom: 50px;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ff69b4;
}

.info-box h3 {
    font-size: 24px;
    color: #ff69b4;
    margin-bottom: 20px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-row strong {
    color: #ff69b4;
}

.play-area {
    margin-bottom: 50px;
}

.play-reminder {
    margin-bottom: 50px;
}

.reminder-card {
    background: linear-gradient(135deg, #ffb6c1, #ffc0cb);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

.legal-main {
    padding: 60px 25px;
}

.legal-main h1 {
    font-size: 44px;
    text-align: center;
    color: #ff69b4;
    margin-bottom: 10px;
}

.date-line {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-bottom: 50px;
}

.legal-card {
    background: white;
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #ffb6c1;
}

.legal-card.important {
    border-left-color: #ff69b4;
    border-left-width: 7px;
    background: linear-gradient(to right, rgba(255, 182, 193, 0.1), white);
}

.legal-card h2 {
    font-size: 26px;
    color: #ff69b4;
    margin-bottom: 15px;
}

.legal-card p, .legal-card ul {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-card ul {
    padding-left: 25px;
}

.legal-card li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    
    .menu-list {
        position: absolute;
        top: 50px;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        display: none;
    }
    
    .menu-list.active {
        display: flex;
    }
    
    .menu-list a {
        color: #ff69b4;
        padding: 12px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-lead {
        font-size: 18px;
    }
    
    .alert-cards {
        grid-template-columns: 1fr;
    }
    
    .perks-grid {
        grid-template-columns: 1fr;
    }
    
    .game-iframe {
        height: 400px;
    }
    
    .age-card {
        margin: 20px;
        padding: 35px 25px;
    }
    
    .age-actions {
        flex-direction: column;
    }
    
    .btn-yes, .btn-no {
        width: 100%;
    }
}
