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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom right, #2d1b69 0%, #5b2c6f 50%, #8e2de2 100%);
    color: #f0f0f0;
    line-height: 1.6;
    min-height: 100vh;
}

.top-nav {
    background: rgba(139, 69, 219, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.7rem;
    font-weight: 900;
}

.logo-emoji {
    font-size: 2rem;
}

.logo-text {
    background: linear-gradient(135deg, #d946ef, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s;
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #d946ef, #f97316);
    transition: width 0.3s;
}

.nav-item:hover::before,
.nav-item.active::before {
    width: 100%;
}

.nav-item:hover,
.nav-item.active {
    color: #d946ef;
}

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

.burger-menu span {
    width: 28px;
    height: 3px;
    background: #d946ef;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-drawer {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(45, 27, 105, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-drawer.active {
    display: block;
}

.drawer-item {
    display: block;
    color: #f0f0f0;
    text-decoration: none;
    padding: 1rem;
    font-size: 1.15rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
}

.drawer-item:hover,
.drawer-item.active {
    background: rgba(217, 70, 239, 0.2);
    color: #d946ef;
}

.content-area {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
}

.intro-section {
    padding: 4rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #d946ef, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.intro-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1d1d1;
    line-height: 1.8;
}

.intro-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.badge-purple {
    background: rgba(139, 69, 219, 0.3);
}

.badge-pink {
    background: rgba(217, 70, 239, 0.3);
}

.badge-magenta {
    background: rgba(142, 45, 226, 0.3);
}

.intro-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: rgba(139, 69, 219, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.visual-card p {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.highlights-section {
    padding: 4rem 0;
}

.main-heading {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #d946ef, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlights-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-item {
    background: rgba(139, 69, 219, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(217, 70, 239, 0.3);
}

.highlight-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
}

.highlight-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #d946ef;
}

.highlight-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d1d1d1;
}

.game-spotlight {
    padding: 4rem 0;
}

.spotlight-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #d1d1d1;
}

.game-display {
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.game-screen {
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #d946ef;
    box-shadow: 0 10px 40px rgba(217, 70, 239, 0.4);
}

.game-screen iframe {
    width: 100%;
    height: 650px;
    display: block;
}

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

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, #d946ef, #f97316);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(217, 70, 239, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(217, 70, 239, 0.6);
}

.features-showcase {
    padding: 4rem 0;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-box {
    background: rgba(139, 69, 219, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #d946ef;
}

.feature-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d1d1d1;
}

.platform-info {
    padding: 4rem 0;
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
}

.info-blocks p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #d1d1d1;
}

.page-footer {
    background: rgba(45, 27, 105, 0.8);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-section h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #d946ef;
    font-weight: 700;
}

.footer-section p {
    color: #d1d1d1;
    margin-bottom: 0.8rem;
}

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

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

.footer-links a:hover {
    color: #d946ef;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.age-verification {
    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-verification.active {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.95), rgba(91, 44, 111, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(217, 70, 239, 0.5);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    max-width: 550px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(217, 70, 239, 0.5);
}

.age-symbol {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.age-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #d946ef;
}

.age-box p {
    margin-bottom: 1rem;
    font-size: 1.15rem;
    color: #d1d1d1;
}

.age-sub {
    font-size: 1rem;
    opacity: 0.85;
}

.age-options {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.verify-btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
}

.btn-yes {
    background: linear-gradient(135deg, #d946ef, #f97316);
    color: #ffffff;
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(217, 70, 239, 0.5);
}

.btn-no {
    background: #dc2626;
    color: #ffffff;
}

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

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

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

    .intro-text h1 {
        font-size: 2.5rem;
    }

    .highlights-layout {
        grid-template-columns: 1fr;
    }

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

    .footer-wrapper {
        grid-template-columns: 1fr;
    }

    .game-screen iframe {
        height: 450px;
    }

    .age-options {
        flex-direction: column;
    }
}