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

:root {
    --dk7mx2: #0a0a0a;
    --pw3kt9: #1a1a1a;
    --xm5rw8: #2d1a1f;
    --qt9px4: #8b1538;
    --yw2mk7: #c41e3a;
    --bh6xn3: #ff6b9d;
    --gp8wt5: #ffd700;
    --km4rx2: #ffffff;
    --zx7pw9: rgba(255, 255, 255, 0.7);
    --nt2qw5: rgba(255, 255, 255, 0.1);
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
        Arial, sans-serif;
    background: linear-gradient(135deg, var(--dk7mx2) 0%, var(--xm5rw8) 100%);
    color: var(--km4rx2);
    line-height: 1.6;
    min-height: 100vh;
}

.nm8xw4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.zp4mt7 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.zp4mt7.hidden {
    display: none;
}

.hf8dk3 {
    background: linear-gradient(135deg, var(--pw3kt9) 0%, var(--xm5rw8) 100%);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 50px rgba(196, 30, 58, 0.3);
    border: 1px solid var(--qt9px4);
}

.yn2kw9 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gp8wt5);
}

.qm7ps4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--zx7pw9);
    line-height: 1.6;
}

.wk3mn8 {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.bn5xt2 {
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.primary-btn {
    background: linear-gradient(135deg, var(--yw2mk7) 0%, var(--qt9px4) 100%);
    color: var(--km4rx2);
}

.primary-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--bh6xn3) 0%, var(--yw2mk7) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

.primary-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.secondary-btn {
    background: transparent;
    color: var(--km4rx2);
    border: 2px solid var(--qt9px4);
}

.secondary-btn:hover {
    background: var(--qt9px4);
    transform: translateY(-2px);
}

.large-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
}

.small-text {
    font-size: 0.85rem;
    color: var(--zx7pw9);
    margin-top: 15px;
}

.jf7wm2 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--pw3kt9) 0%, var(--xm5rw8) 100%);
    padding: 20px;
    z-index: 9998;
    border-top: 2px solid var(--qt9px4);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.jf7wm2.hidden {
    display: none;
}

.xt9pk5 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.link-btn {
    color: var(--gp8wt5);
    text-decoration: underline;
    cursor: pointer;
    padding: 12px 20px;
}

.link-btn:hover {
    color: var(--bh6xn3);
}

.vh2kp9 {
    background: rgba(26, 26, 26, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--qt9px4);
}

.rt5pd2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gp8wt5) 0%, var(--bh6xn3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qw7mk3 {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--km4rx2);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gp8wt5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gp8wt5);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--km4rx2);
    transition: all 0.3s ease;
}

.gh3wx7 {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(
        135deg,
        var(--dk7mx2) 0%,
        var(--xm5rw8) 50%,
        var(--dk7mx2) 100%
    );
    position: relative;
    overflow: hidden;
}

.gh3wx7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(196, 30, 58, 0.1) 0%,
        transparent 70%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gp8wt5) 0%, var(--bh6xn3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--zx7pw9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.km4tw9 {
    padding: 40px 0;
    background: rgba(139, 21, 56, 0.1);
    border-top: 2px solid var(--qt9px4);
    border-bottom: 2px solid var(--qt9px4);
}

.notice-box {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--pw3kt9) 0%, var(--xm5rw8) 100%);
    border-radius: 15px;
    border: 1px solid var(--yw2mk7);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gp8wt5);
}

.center-text {
    text-align: center;
}

.px8mt5,
.wy5km2,
.tk9xm3,
.bv6xw8 {
    padding: 60px 0;
}

.game-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.game-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-card {
    background: linear-gradient(135deg, var(--pw3kt9) 0%, var(--xm5rw8) 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--nt2qw5);
    max-width: 360px;
    width: 100%;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
    border-color: var(--qt9px4);
}

.game-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--xm5rw8) 0%, var(--qt9px4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    padding: 25px;
}

.game-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gp8wt5);
}

.game-desc {
    font-size: 1rem;
    color: var(--zx7pw9);
    margin-bottom: 20px;
}

.game-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.game-features li {
    padding: 8px 0;
    color: var(--zx7pw9);
    font-size: 1rem;
}

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

.feature-card {
    background: linear-gradient(135deg, var(--pw3kt9) 0%, var(--xm5rw8) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--nt2qw5);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--qt9px4);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--gp8wt5);
}

.feature-desc {
    font-size: 1rem;
    color: var(--zx7pw9);
}

.about-content,
.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.pm3kx7 {
    background: var(--pw3kt9);
    padding: 60px 0 20px;
    margin-top: 60px;
    border-top: 2px solid var(--qt9px4);
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-title {
    font-size: 1.3rem;
    color: var(--gp8wt5);
    margin-bottom: 10px;
}

.footer-text {
    font-size: 0.95rem;
    color: var(--zx7pw9);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: var(--zx7pw9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--gp8wt5);
    padding-left: 5px;
}

.footer-logos {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--nt2qw5);
    border-bottom: 1px solid var(--nt2qw5);
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.support-logo {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: grayscale(100%) brightness(200%);
}

.support-logo:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 20px;
}

.page-header {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--dk7mx2) 0%, var(--xm5rw8) 100%);
    border-bottom: 2px solid var(--qt9px4);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--gp8wt5) 0%, var(--bh6xn3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--zx7pw9);
}

.content-section {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-list {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-list li {
    margin-bottom: 10px;
    color: var(--zx7pw9);
}

.contact-email {
    font-size: 1.2rem;
    margin: 20px 0;
}

.contact-email a {
    color: var(--gp8wt5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: var(--bh6xn3);
}

.info-box,
.cta-box {
    background: linear-gradient(135deg, var(--pw3kt9) 0%, var(--xm5rw8) 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 1px solid var(--qt9px4);
}

.warning-box {
    background: linear-gradient(135deg, var(--xm5rw8) 0%, var(--qt9px4) 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid var(--yw2mk7);
}

.info-banner {
    background: linear-gradient(135deg, var(--pw3kt9) 0%, var(--xm5rw8) 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid var(--gp8wt5);
}

.info-banner.warning {
    border-left-color: var(--yw2mk7);
}

.banner-text {
    font-size: 1.1rem;
    color: var(--km4rx2);
}

.values-grid,
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.value-card,
.tip-card {
    background: linear-gradient(135deg, var(--pw3kt9) 0%, var(--xm5rw8) 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--nt2qw5);
    transition: all 0.3s ease;
}

.value-card:hover,
.tip-card:hover {
    border-color: var(--qt9px4);
    transform: translateY(-5px);
}

.value-title,
.tip-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--gp8wt5);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--nt2qw5);
    color: var(--zx7pw9);
    font-size: 1.1rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.support-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.org-card {
    background: linear-gradient(135deg, var(--pw3kt9) 0%, var(--xm5rw8) 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--qt9px4);
}

.org-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gp8wt5);
}

.responsible-reminder {
    background: linear-gradient(135deg, var(--xm5rw8) 0%, var(--qt9px4) 100%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
    border: 2px solid var(--yw2mk7);
}

.age-slider-wrap {
    margin: 24px auto 8px;
    max-width: 100%;
    width: 100%;
}

.age-slider-hint {
    font-size: 0.9rem;
    color: var(--zx7pw9);
    margin-bottom: 12px;
    text-align: center;
}

.age-slider-track {
    position: relative;
    height: 48px;
    border-radius: 24px;
    background: var(--nt2qw5);
    border: 1px solid var(--qt9px4);
    overflow: hidden;
    touch-action: none;
    user-select: none;
}

.age-slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(
        90deg,
        rgba(196, 30, 58, 0.35) 0%,
        rgba(255, 107, 157, 0.25) 100%
    );
    pointer-events: none;
    border-radius: 24px 0 0 24px;
    transition: width 0.05s linear;
}

.age-slider-wrap.age-slider-complete .age-slider-fill {
    background: linear-gradient(
        90deg,
        rgba(34, 139, 34, 0.45) 0%,
        rgba(50, 205, 50, 0.3) 100%
    );
}

.age-slider-thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 48px;
    min-width: 48px;
    padding: 0;
    border: none;
    border-radius: 24px;
    cursor: grab;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--km4rx2);
    background: linear-gradient(135deg, var(--yw2mk7) 0%, var(--qt9px4) 100%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    transform: translateX(0);
    transition: box-shadow 0.2s ease;
}

.age-slider-thumb:hover:not(:disabled) {
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.45);
}

.age-slider-thumb:active {
    cursor: grabbing;
}

.age-slider-wrap.age-slider-complete .age-slider-track {
    border-color: rgba(50, 205, 50, 0.6);
}

.age-slider-wrap.age-slider-complete .age-slider-hint {
    color: rgba(144, 238, 144, 0.95);
}

@media (max-width: 768px) {
    .qw7mk3 {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--pw3kt9);
        flex-direction: column;
        padding: 20px;
        border-bottom: 2px solid var(--qt9px4);
    }

    .qw7mk3.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .xt9pk5 {
        flex-direction: column;
        align-items: flex-start;
    }

    .wk3mn8 {
        width: 100%;
    }

    .bn5xt2 {
        flex: 1;
        min-width: 120px;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .logos-row {
        gap: 20px;
    }

    .support-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hf8dk3 {
        padding: 30px 20px;
    }

    .yn2kw9 {
        font-size: 1.5rem;
    }
}
