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

:root {
    --orange-main: #f97316;
    --yellow-bright: #fbbf24;
    --red-accent: #dc2626;
    --purple-deep: #7c3aed;
    --bg-dark: #1c1917;
    --bg-medium: #292524;
    --text-primary: #fafaf9;
    --text-secondary: #d6d3d1;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #1c1917;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Age Verification */
.verify-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.verify-overlay.show {
    display: flex;
}

.verify-card {
    background: linear-gradient(135deg, var(--bg-medium), var(--bg-dark));
    padding: 45px;
    border-radius: 20px;
    max-width: 520px;
    width: 90%;
    border: 3px solid var(--orange-main);
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.5);
}

.verify-header {
    text-align: center;
    margin-bottom: 25px;
}

.verify-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
}

.verify-header h2 {
    font-size: 2.3rem;
    color: var(--orange-main);
    font-weight: 700;
}

.verify-body {
    text-align: center;
    margin-bottom: 30px;
}

.verify-body p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 600;
}

.verify-body h3 {
    font-size: 1.35rem;
    color: var(--yellow-bright);
    margin-top: 20px;
    font-weight: 700;
}

.verify-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.verify-yes, .verify-no {
    flex: 1;
    min-width: 180px;
    padding: 16px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.verify-yes {
    background: linear-gradient(135deg, var(--orange-main), var(--yellow-bright));
    color: white;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

.verify-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.6);
}

.verify-no {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.verify-no:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Page Layout */
.page-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: var(--bg-medium);
    border-right: 3px solid var(--orange-main);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    transition: left 0.3s ease;
}

.logo-section {
    padding: 30px 25px;
    border-bottom: 2px solid rgba(249, 115, 22, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-fruit {
    font-size: 2.5rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange-main), var(--yellow-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.side-nav {
    padding: 25px 0;
}

.side-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.side-link:hover,
.side-link.active {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange-main);
    border-left-color: var(--orange-main);
}

.link-icon {
    font-size: 1.5rem;
}

.link-text {
    font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 200;
    flex-direction: column;
    gap: 5px;
    background: var(--orange-main);
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content Area */
.main-area {
    flex: 1;
    margin-left: 280px;
    padding: 40px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(251, 191, 36, 0.15));
    padding: 70px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 50px;
    border: 2px solid rgba(249, 115, 22, 0.3);
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--orange-main), var(--yellow-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 600;
}

/* Alert Section */
.alerts-section {
    margin-bottom: 60px;
}

.alert-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.alert-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.alert-box.orange {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--orange-main);
}

.alert-box.red {
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--red-accent);
}

.alert-box.purple {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--purple-deep);
}

.alert-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.alert-icon {
    font-size: 2.5rem;
}

.alert-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--orange-main);
    font-weight: 700;
}

.alert-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Intro Text */
.intro-text {
    margin-bottom: 60px;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
    color: var(--orange-main);
    text-align: center;
    font-weight: 700;
}

.text-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 35px;
}

.text-block p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase {
    margin-bottom: 60px;
}

.game-showcase h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--orange-main);
    font-weight: 700;
}

.showcase-desc {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.game-frame-container {
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--orange-main);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.4);
    margin-bottom: 30px;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

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

.btn-play {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, var(--orange-main), var(--yellow-bright));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.6);
}

/* Features Grid */
.features-grid {
    margin-bottom: 60px;
}

.features-grid h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--orange-main);
    font-weight: 700;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-item {
    background: rgba(41, 37, 36, 0.6);
    padding: 35px 30px;
    border-radius: 15px;
    border: 2px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--orange-main);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-emoji {
    font-size: 2.5rem;
}

.feature-header h3 {
    font-size: 1.3rem;
    color: var(--orange-main);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Important Notice */
.important-notice {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(220, 38, 38, 0.15));
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid var(--orange-main);
    margin-bottom: 60px;
}

.notice-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--yellow-bright);
    text-align: center;
    font-weight: 700;
}

.notice-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    text-align: center;
}

/* Play Page */
.play-header {
    text-align: center;
    margin-bottom: 50px;
}

.play-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--orange-main);
    font-weight: 700;
}

.play-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.game-full {
    margin-bottom: 60px;
}

.game-full-container {
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--orange-main);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.4);
}

.game-iframe-large {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-guide {
    margin-bottom: 60px;
}

.game-guide h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--orange-main);
    font-weight: 700;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.guide-box {
    background: rgba(41, 37, 36, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(249, 115, 22, 0.2);
}

.guide-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--orange-main);
    font-weight: 700;
}

.guide-box p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.return-section {
    margin-bottom: 60px;
}

.return-box {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--orange-main);
}

.return-box h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--orange-main);
    font-weight: 700;
}

.return-box p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.btn-return {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, var(--orange-main), var(--yellow-bright));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

.btn-return:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.6);
}

/* Legal Pages */
.legal-intro {
    text-align: center;
    margin-bottom: 50px;
}

.legal-intro h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--orange-main);
    font-weight: 700;
}

.legal-updated {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.legal-content {
    margin-bottom: 60px;
}

.terms-block {
    background: rgba(41, 37, 36, 0.6);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 5px solid var(--orange-main);
}

.terms-block h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: var(--orange-main);
    font-weight: 700;
}

.terms-block p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Footer */
.page-footer {
    background: var(--bg-medium);
    padding: 60px 0 30px;
    border-top: 3px solid var(--orange-main);
    margin-top: 60px;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--orange-main);
    font-weight: 700;
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--orange-main);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .sidebar {
        left: -280px;
    }

    .sidebar.active {
        left: 0;
    }

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

    .main-area {
        margin-left: 0;
        padding: 80px 25px 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .text-blocks {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 450px;
    }

    .game-iframe-large {
        height: 550px;
    }

    .alert-row,
    .features-row,
    .guide-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    .verify-card {
        padding: 35px 25px;
    }

    .verify-actions {
        flex-direction: column;
    }

    .verify-yes, .verify-no {
        width: 100%;
    }
}
