* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffeaa7 50%, #fab1a0 100%);
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Exo 2', sans-serif;
    color: #ff6b6b;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 107, 107, 0.2);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
}

.top-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.primary-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-name {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: #feca57;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-list a:hover {
    background: rgba(254, 202, 87, 0.3);
    color: #feca57;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: #feca57;
    border-radius: 3px;
    transition: 0.3s;
}

.page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.welcome-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 202, 87, 0.2) 100%);
    border-radius: 30px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.2);
    border: 3px solid #ff6b6b;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: #ee5a6f;
    margin-bottom: 3rem;
    font-weight: 600;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.point-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(255, 107, 107, 0.15);
    transition: all 0.3s;
    border: 2px solid #ffeaa7;
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 107, 107, 0.25);
    border-color: #ff6b6b;
}

.point-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.alerts-section {
    margin: 3rem 0;
}

.alerts-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.alert-item {
    padding: 2rem;
    border-radius: 20px;
    border-left: 6px solid;
    background: #ffffff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.alert-item.critical {
    border-left-color: #d63031;
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.05) 0%, #ffffff 100%);
}

.alert-item.standard {
    border-left-color: #0984e3;
    background: linear-gradient(135deg, rgba(9, 132, 227, 0.05) 0%, #ffffff 100%);
}

.alert-item.important {
    border-left-color: #fdcb6e;
    background: linear-gradient(135deg, rgba(253, 203, 110, 0.05) 0%, #ffffff 100%);
}

.game-section {
    margin: 3rem 0;
    text-align: center;
}

.section-title {
    margin-bottom: 2rem;
}

.section-title p {
    color: #ee5a6f;
    font-size: 1.2rem;
    font-weight: 600;
}

.game-container {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.25);
    border: 4px solid #ff6b6b;
}

.game-player {
    width: 100%;
    height: 600px;
    border: none;
}

.section-note {
    margin-top: 1rem;
    font-size: 1rem;
    color: #ee5a6f;
    font-weight: 600;
}

.features-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 202, 87, 0.2) 100%);
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.15);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.1);
    transition: all 0.3s;
    border: 2px solid #ffeaa7;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b6b;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.statistics-section {
    margin: 4rem 0;
    text-align: center;
    padding: 3rem 2rem;
}

.statistics-text {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-block {
    padding: 2rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(255, 107, 107, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #feca57;
    font-family: 'Exo 2', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    color: #ffffff;
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 30px;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.3);
}

.cta-section h2 {
    color: #feca57;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: #feca57;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(254, 202, 87, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(254, 202, 87, 0.6);
    background: #fdcb6e;
}

.main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    margin-top: 4rem;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-name {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #feca57;
    letter-spacing: 2px;
}

.footer-menu {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #feca57;
}

.footer-help {
    margin: 2rem 0;
}

.footer-help h4 {
    color: #feca57;
    margin-bottom: 1rem;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
}

.help-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.help-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.help-links a:hover {
    color: #feca57;
}

.footer-bottom {
    border-top: 2px solid rgba(254, 202, 87, 0.3);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #ecf0f1;
}

.footer-highlight {
    font-weight: 800;
    color: #feca57;
    margin-top: 0.5rem;
}

.age-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-screen.show {
    display: flex;
}

.age-container {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 15px 60px rgba(255, 107, 107, 0.5);
    border: 4px solid #feca57;
}

.age-symbol {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.age-container h2 {
    color: #feca57;
    margin-bottom: 1rem;
}

.age-container p {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.age-tagline {
    color: #feca57;
    font-style: italic;
}

.age-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.age-action {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
}

.age-action.confirm {
    background: #feca57;
    color: #2c3e50;
}

.age-action.deny {
    background: #ffffff;
    color: #2c3e50;
}

.age-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.play-page {
    min-height: calc(100vh - 350px);
}

.play-header {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.play-header p {
    color: #ee5a6f;
    font-size: 1.2rem;
    font-weight: 600;
}

.play-section {
    margin: 2rem 0;
}

.play-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.25);
    border: 4px solid #ff6b6b;
}

.play-player {
    width: 100%;
    height: 700px;
    border: none;
}

.play-info {
    margin: 3rem 0;
    padding: 2rem;
}

.play-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.15);
    border: 2px solid #ffeaa7;
}

.info-card h3 {
    margin-bottom: 1rem;
}

.play-reminders {
    margin: 3rem 0;
    padding: 2rem;
}

.reminders-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 202, 87, 0.2) 100%);
    border: 3px solid #ff6b6b;
    border-radius: 20px;
    padding: 2rem;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 5px 25px rgba(255, 107, 107, 0.2);
}

.reminders-box h3 {
    margin-bottom: 1rem;
}

.reminders-box ul {
    list-style-position: inside;
    color: #2c3e50;
}

.reminders-box li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.legal-page {
    max-width: 950px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-header {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 202, 87, 0.2) 100%);
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(255, 107, 107, 0.2);
    border: 2px solid #ff6b6b;
}

.legal-date {
    color: #ee5a6f;
    font-style: italic;
    font-weight: 600;
}

.legal-sections {
    background: #ffffff;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(255, 107, 107, 0.15);
}

.legal-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #ffeaa7;
}

.legal-block:last-child {
    border-bottom: none;
}

.legal-block h2 {
    margin-bottom: 1rem;
}

.legal-block h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-size: 1.4rem;
}

.legal-block p {
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-block ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-block li {
    margin-bottom: 0.7rem;
}

.legal-block.emphasis {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(254, 202, 87, 0.05) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #ff6b6b;
}

@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-list {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-list.active {
        left: 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .game-player {
        height: 400px;
    }

    .play-player {
        height: 500px;
    }

    .age-container {
        margin: 1rem;
        padding: 2rem;
    }

    .age-actions {
        flex-direction: column;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .legal-sections {
        padding: 1.5rem;
    }

    .page-content {
        padding: 1rem;
    }
}
