* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

/* Age Verification Popup */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.age-popup.hidden {
    display: none;
}

.age-popup-content {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid #5b21b6;
    box-shadow: 0 20px 60px rgba(91, 33, 182, 0.5);
}

.age-popup-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.age-popup-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #d1d5db;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.age-btn.yes {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.age-btn.yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.age-btn.no {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.age-btn.no:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

/* Header */
header {
    background: rgba(30, 27, 75, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #5b21b6;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fbbf24;
    text-decoration: none;
}

.logo svg {
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #fbbf24;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #fbbf24;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.2) 0%, rgba(49, 46, 129, 0.2) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(91, 33, 182, 0.3);
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #d1d5db;
    margin-bottom: 3rem;
}

.notice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.notice-card {
    background: rgba(30, 27, 75, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #5b21b6;
    transition: all 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 33, 182, 0.4);
}

.notice-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

/* About Section */
.about {
    margin-bottom: 3rem;
    padding: 3rem;
    background: rgba(30, 27, 75, 0.4);
    border-radius: 15px;
    border-left: 4px solid #fbbf24;
}

.about h2 {
    font-family: 'Orbitron', sans-serif;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #d1d5db;
}

/* Game Section */
.game-section {
    margin-bottom: 3rem;
}

.game-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.game-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #d1d5db;
}

.game-container {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid #5b21b6;
    margin-bottom: 2rem;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-note {
    text-align: center;
    padding: 1.5rem;
    background: rgba(91, 33, 182, 0.2);
    border-radius: 10px;
    border: 1px solid #5b21b6;
}

.game-note p {
    color: #d1d5db;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    margin-bottom: 3rem;
}

.features h2 {
    font-family: 'Orbitron', sans-serif;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.6) 0%, rgba(49, 46, 129, 0.6) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(91, 33, 182, 0.5);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    border-color: #fbbf24;
    box-shadow: 0 15px 40px rgba(91, 33, 182, 0.4);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature p {
    color: #d1d5db;
    line-height: 1.8;
}

/* Responsibility Section */
.responsibility {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
    border-radius: 15px;
    border: 2px solid rgba(239, 68, 68, 0.4);
    margin-bottom: 3rem;
}

.responsibility h2 {
    font-family: 'Orbitron', sans-serif;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.responsibility p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #d1d5db;
}

/* Play Page Specific */
.play-header {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

.play-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.play-header p {
    font-size: 1.2rem;
    color: #d1d5db;
}

.game-play {
    margin-bottom: 3rem;
}

.game-info {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(30, 27, 75, 0.6);
    border-radius: 15px;
    border: 2px solid #5b21b6;
}

.game-info h2 {
    font-family: 'Orbitron', sans-serif;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.game-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.game-info ul li {
    padding: 0.8rem 0;
    color: #d1d5db;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(91, 33, 182, 0.3);
}

.game-info ul li:last-child {
    border-bottom: none;
}

.game-reminder {
    background: rgba(251, 191, 36, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
}

.game-reminder p {
    color: #d1d5db;
    line-height: 1.8;
}

/* Legal Pages */
.legal-content {
    background: rgba(30, 27, 75, 0.6);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 2px solid #5b21b6;
}

.legal-content h1 {
    font-family: 'Orbitron', sans-serif;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.legal-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #fbbf24;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-content p,
.legal-content ul,
.legal-content li {
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
    list-style: disc;
}

.last-updated {
    color: #9ca3af;
    font-style: italic;
    margin-bottom: 2rem;
}

.disclaimer-highlight {
    background: rgba(239, 68, 68, 0.2);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid rgba(239, 68, 68, 0.4);
    margin: 2rem 0;
}

.disclaimer-highlight h2 {
    margin-top: 0;
}

.disclaimer-highlight ul {
    list-style: none;
    margin-left: 0;
}

.disclaimer-highlight li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.disclaimer-footer-note {
    background: rgba(91, 33, 182, 0.2);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #5b21b6;
    margin-top: 2rem;
    text-align: center;
}

.disclaimer-footer-note p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
footer {
    background: rgba(15, 12, 41, 0.9);
    border-top: 2px solid #5b21b6;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.8;
}

.footer-nav,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a,
.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-links a:hover {
    color: #fbbf24;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(91, 33, 182, 0.3);
    text-align: center;
    color: #9ca3af;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: rgba(30, 27, 75, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        border-left: 2px solid #5b21b6;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    nav.active {
        right: 0;
    }

    nav a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(91, 33, 182, 0.3);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .notice-cards {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 400px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about,
    .responsibility,
    .legal-content {
        padding: 2rem 1.5rem;
    }

    main {
        padding: 1rem;
    }
}
