* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #0a0a14 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.top-navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #7209B7;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(114, 9, 183, 0.3);
}

.navbar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F72585;
    letter-spacing: 1px;
}

.menu-hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-hamburger .bar {
    width: 26px;
    height: 3px;
    background: #F72585;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.menu-link {
    font-family: 'Raleway', sans-serif;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #F72585 0%, #7209B7 100%);
    transition: width 0.3s ease;
}

.menu-link:hover::before,
.menu-link.active-link::before {
    width: 100%;
}

.menu-link:hover,
.menu-link.active-link {
    color: #F72585;
}

.main-container {
    width: 100%;
}

.hero-area {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.2) 0%, rgba(58, 12, 163, 0.2) 100%);
}

.hero-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-headline {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #F72585;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #c0c0c0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #F72585 0%, #7209B7 100%);
    color: white;
    padding: 1.2rem 3rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(247, 37, 133, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(247, 37, 133, 0.6);
}

.hero-visual {
    position: relative;
    height: 400px;
}

.visual-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.3) 0%, rgba(114, 9, 183, 0.3) 100%);
    border-radius: 20px;
    border: 2px solid #7209B7;
    box-shadow: 0 10px 40px rgba(114, 9, 183, 0.5);
}

.about-platform {
    padding: 5rem 2rem;
    background: rgba(15, 15, 30, 0.6);
}

.content-block {
    max-width: 1100px;
    margin: 0 auto;
}

.block-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #F72585;
    margin-bottom: 2rem;
    text-align: center;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 1.5rem;
}

.block-text.centered {
    text-align: center;
}

.key-alerts {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(58, 12, 163, 0.1) 0%, rgba(15, 15, 30, 0.8) 100%);
}

.alerts-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.alert-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    padding: 2.5rem;
    border-left: 5px solid;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.alert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(114, 9, 183, 0.4);
}

.alert-variant-1 { border-left-color: #F72585; }
.alert-variant-2 { border-left-color: #7209B7; }
.alert-variant-3 { border-left-color: #4CC9F0; }

.alert-icon-wrapper {
    flex-shrink: 0;
}

.alert-icon {
    font-size: 3rem;
}

.alert-details h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    color: #F72585;
    margin-bottom: 1rem;
    font-weight: 700;
}

.alert-details p {
    color: #c0c0c0;
    line-height: 1.7;
}

.game-showcase {
    padding: 5rem 2rem;
    background: rgba(15, 15, 30, 0.6);
}

.game-window {
    background: #000;
    border-radius: 15px;
    padding: 1rem;
    margin: 2.5rem 0;
    border: 2px solid #7209B7;
    box-shadow: 0 8px 30px rgba(114, 9, 183, 0.4);
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.game-info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.info-badge {
    background: rgba(26, 26, 46, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #7209B7;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    font-size: 2rem;
}

.badge-text {
    color: #e0e0e0;
    font-weight: 500;
}

.platform-perks {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.05) 0%, rgba(15, 15, 30, 0.8) 100%);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.perk-item {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    border-top: 4px solid;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.perk-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(114, 9, 183, 0.4);
}

.perk-color-1 { border-top-color: #F72585; }
.perk-color-2 { border-top-color: #7209B7; }
.perk-color-3 { border-top-color: #4CC9F0; }
.perk-color-4 { border-top-color: #F72585; }
.perk-color-5 { border-top-color: #7209B7; }
.perk-color-6 { border-top-color: #4CC9F0; }

.perk-badge {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.perk-item h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    color: #F72585;
    margin-bottom: 1rem;
    font-weight: 700;
}

.perk-item p {
    color: #c0c0c0;
    line-height: 1.7;
}

.responsibility-area {
    padding: 5rem 2rem;
    background: rgba(15, 15, 30, 0.6);
}

.responsibility-box {
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.2) 0%, rgba(58, 12, 163, 0.2) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid #7209B7;
}

.responsibility-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    color: #F72585;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.responsibility-lead {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #c0c0c0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(26, 26, 46, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
}

.tip-bullet {
    color: #F72585;
    font-weight: 800;
    font-size: 1.5rem;
}

.tip-text {
    color: #c0c0c0;
    line-height: 1.6;
}

.page-header-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #7209B7 0%, #3A0CA3 100%);
    text-align: center;
}

.page-main-title {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.page-subtitle-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.play-instructions-area {
    padding: 4rem 2rem;
    background: rgba(15, 15, 30, 0.6);
}

.instructions-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.instruction-card {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #F72585;
}

.instruction-symbol {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.instruction-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    color: #F72585;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.instruction-card p {
    color: #c0c0c0;
    line-height: 1.6;
}

.game-play-area {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.1) 0%, rgba(15, 15, 30, 0.8) 100%);
}

.game-display-box {
    background: #000;
    border-radius: 15px;
    padding: 1rem;
    border: 2px solid #7209B7;
    box-shadow: 0 8px 30px rgba(114, 9, 183, 0.4);
}

.game-embed-play {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.play-reminder-area {
    padding: 3rem 2rem;
    background: rgba(15, 15, 30, 0.6);
}

.play-reminder-card {
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.2) 0%, rgba(114, 9, 183, 0.2) 100%);
    border: 2px solid #F72585;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.play-reminder-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    color: #F72585;
    margin-bottom: 1rem;
    font-weight: 700;
}

.play-reminder-card p {
    color: #c0c0c0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.legal-text-section {
    padding: 4rem 2rem;
    background: rgba(15, 15, 30, 0.6);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.9rem;
    color: #F72585;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-container h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    color: #7209B7;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-container p {
    color: #c0c0c0;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-container li {
    color: #c0c0c0;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.terms-confirm-box,
.privacy-recap-box,
.acknowledgment-box {
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid #7209B7;
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}

.warning-box {
    background: rgba(247, 37, 133, 0.1);
    border: 2px solid #F72585;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.warning-box h2 {
    color: #F72585 !important;
    margin-top: 0 !important;
}

.page-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    border-top: 2px solid #7209B7;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.footer-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    color: #F72585;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-info {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.7rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #F72585;
}

.footer-copyright {
    margin-top: 1.5rem;
    opacity: 0.6;
    font-size: 0.9rem;
}

.age-gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 20, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-gate-modal.hidden {
    display: none;
}

.age-gate-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    border: 3px solid #7209B7;
    border-radius: 20px;
    padding: 3rem;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(114, 9, 183, 0.5);
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-gate-title {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    color: #F72585;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.age-gate-message {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-weight: 500;
}

.age-gate-note {
    font-size: 0.95rem;
    color: #c0c0c0;
    margin-bottom: 2rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn-confirm,
.age-btn-reject {
    padding: 1rem 2.5rem;
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn-confirm {
    background: linear-gradient(135deg, #F72585 0%, #7209B7 100%);
    color: white;
}

.age-btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(247, 37, 133, 0.5);
}

.age-btn-reject {
    background: transparent;
    color: #999;
    border: 2px solid #555;
}

.age-btn-reject:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #777;
}

@media (max-width: 768px) {
    .menu-hamburger {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 1.5rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .navbar-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-link::before {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 250px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .block-heading {
        font-size: 2.2rem;
    }

    .game-embed {
        height: 400px;
    }

    .game-embed-play {
        height: 500px;
    }

    .page-main-title {
        font-size: 2.2rem;
    }

    .age-gate-card {
        margin: 1rem;
        padding: 2rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}
