* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

/* Age Verification Popup */
.age-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-popup.show {
    display: flex;
}

.age-popup-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-popup-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.age-popup-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-yes, .btn-no {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-yes {
    background: #10b981;
    color: white;
}

.btn-yes:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-no {
    background: #ef4444;
    color: white;
}

.btn-no:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: rgba(15, 12, 41, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(124, 58, 237, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #a78bfa;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffffff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.6);
}

/* Info Section */
.info-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #a78bfa;
}

.info-card p {
    color: #d1d5db;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.game-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 3rem;
}

.game-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
}

/* Notice Section */
.notice-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.notice-box {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    border-radius: 15px;
    padding: 2.5rem;
}

.notice-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fca5a5;
}

.notice-box ul {
    list-style: none;
    margin-left: 0;
}

.notice-box li {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.notice-box strong {
    color: #fca5a5;
}

/* Features Section */
.features-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #ffffff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-list {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #7c3aed;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7c3aed;
    min-width: 80px;
}

.feature-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #a78bfa;
}

.feature-content p {
    color: #d1d5db;
    line-height: 1.8;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 20px;
}

.responsible-gaming h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.responsible-gaming p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #d1d5db;
    line-height: 1.8;
}

.support-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-links a {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid #7c3aed;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.support-links a:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-2px);
}

/* Play Page */
.play-header {
    padding: 4rem 2rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.play-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.play-header p {
    font-size: 1.2rem;
    color: #d1d5db;
}

.game-play-section {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.game-info-box {
    background: rgba(124, 58, 237, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.game-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #a78bfa;
}

.game-info-box p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #d1d5db;
}

.game-container-play {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
}

.game-notice {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.game-notice p {
    color: #fca5a5;
    font-size: 1.1rem;
}

/* Legal Pages */
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: #9ca3af;
    font-style: italic;
    margin-bottom: 3rem;
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #a78bfa;
}

.terms-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #d1d5db;
}

.terms-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-section li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    color: #d1d5db;
}

.disclaimer-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 3px solid #ef4444;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.disclaimer-warning h2 {
    color: #fca5a5;
    margin-bottom: 1rem;
}

.disclaimer-warning p {
    color: #fca5a5;
    line-height: 1.8;
}

/* Footer */
footer {
    background: rgba(15, 12, 41, 0.95);
    padding: 3rem 2rem;
    margin-top: 5rem;
    border-top: 2px solid rgba(124, 58, 237, 0.3);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a78bfa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-support {
    margin-bottom: 2rem;
}

.footer-support p {
    margin-bottom: 1rem;
    color: #9ca3af;
}

.copyright {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 12, 41, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 400px;
    }

    .game-frame-full {
        height: 500px;
    }

    .features-list {
        gap: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-number {
        min-width: auto;
    }

    .support-links {
        flex-direction: column;
        align-items: center;
    }

    .age-popup-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .terms-section h2 {
        font-size: 1.5rem;
    }
}
