* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
    color: #e0e7ff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Navbar */
.navbar {
    background: rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #a855f7 0%, #06b6d4 100%) 1;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 700;
    box-shadow: 0 5px 30px rgba(168, 85, 247, 0.3);
}

.navbar-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-glyph {
    font-size: 2rem;
    color: #a855f7;
}

.logo-text {
    font-size: 1.9rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #e0e7ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #a855f7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-line {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, #a855f7 0%, #06b6d4 100%);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Age Verify Modal */
.verify-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8000;
}

.verify-modal.hidden {
    display: none;
}

.verify-box {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    border: 3px solid;
    border-image: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%) 1;
    padding: 3rem;
    border-radius: 20px;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.5);
}

.verify-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.verify-heading {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.verify-info {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.verify-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 2rem;
}

.verify-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.verify-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.verify-button.accept {
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    color: white;
}

.verify-button.decline {
    background: transparent;
    border: 2px solid #a855f7;
    color: #e0e7ff;
}

.verify-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.9;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(168, 85, 247, 0.2);
    border: 2px solid #a855f7;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: rgba(168, 85, 247, 0.05);
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.section-desc {
    font-size: 1.15rem;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid rgba(168, 85, 247, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #a855f7;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #a855f7;
    margin-bottom: 1rem;
}

.feature-info {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Gameplay Section */
.gameplay {
    padding: 4rem 0;
}

.gameplay-header {
    text-align: center;
    margin-bottom: 3rem;
}

.game-container {
    background: rgba(168, 85, 247, 0.1);
    border: 3px solid;
    border-image: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%) 1;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.3);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

/* Warnings Section */
.warnings {
    padding: 4rem 0;
}

.warning-box {
    background: rgba(168, 85, 247, 0.15);
    border: 3px solid #a855f7;
    padding: 2.5rem;
    border-radius: 15px;
}

.warning-title {
    font-size: 2rem;
    font-weight: 900;
    color: #a855f7;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.warning-grid {
    display: grid;
    gap: 1.5rem;
}

.warning-item {
    background: rgba(26, 26, 46, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #06b6d4;
    font-size: 1.05rem;
    line-height: 1.8;
}

.warning-item strong {
    color: #06b6d4;
}

/* Advantages Section */
.advantages {
    padding: 4rem 0;
    background: rgba(168, 85, 247, 0.05);
}

.advantages-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.advantage {
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid rgba(168, 85, 247, 0.3);
    padding: 2rem;
    border-radius: 12px;
}

.advantage-label {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(168, 85, 247, 0.4);
    margin-bottom: 1rem;
}

.advantage-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #a855f7;
    margin-bottom: 0.8rem;
}

.advantage-text {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: rgba(15, 15, 35, 0.9);
    border-top: 2px solid;
    border-image: linear-gradient(90deg, #a855f7 0%, #06b6d4 100%) 1;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #a855f7;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-text {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-link {
    color: #e0e7ff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #a855f7;
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Play Page */
.play-header {
    padding: 3rem 0 2rem;
    text-align: center;
}

.play-heading {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.play-intro {
    font-size: 1.2rem;
    line-height: 1.8;
}

.play-main {
    padding: 2rem 0 4rem;
}

.controls-panel {
    background: rgba(168, 85, 247, 0.15);
    border: 2px solid rgba(168, 85, 247, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.panel-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #a855f7;
    margin-bottom: 1.5rem;
}

.controls-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.control-block {
    background: rgba(26, 26, 46, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
}

.control-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 0.8rem;
}

.control-desc {
    line-height: 1.8;
}

.play-game-area {
    margin-bottom: 3rem;
}

.play-warning {
    background: rgba(168, 85, 247, 0.15);
    border: 3px solid #a855f7;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.05rem;
}

/* Docs Pages */
.docs-section {
    padding: 3rem 0 4rem;
}

.docs-heading {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.docs-date {
    font-style: italic;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.docs-content {
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid rgba(168, 85, 247, 0.3);
    padding: 3rem;
    border-radius: 15px;
    line-height: 1.9;
}

.docs-content h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #a855f7;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.docs-content h2:first-child {
    margin-top: 0;
}

.docs-content p {
    margin-bottom: 1.2rem;
}

.docs-content ul {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

.docs-content li {
    margin-bottom: 0.7rem;
}

.docs-content a {
    color: #06b6d4;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 701;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s;
        border-left: 2px solid #a855f7;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1.05rem;
    }

    .hero-tags {
        flex-direction: column;
        align-items: center;
    }

    .game-iframe {
        height: 450px;
    }

    .verify-box {
        margin: 1rem;
        padding: 2rem;
    }

    .verify-actions {
        flex-direction: column;
    }

    .docs-content {
        padding: 1.5rem;
    }
}
