* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #9333ea;
    --primary-light: #c084fc;
    --primary-dark: #6b21a8;
    --accent: #fbbf24;
    --accent-light: #fde047;
    --bg-dark: #0f0a1e;
    --bg-medium: #1a1236;
    --bg-light: #2d1b5e;
    --text: #f3f4f6;
    --text-dim: #d1d5db;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 50%, var(--bg-light) 100%);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: rgba(15, 10, 30, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-light);
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-light);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(107, 33, 168, 0.3) 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 2px solid var(--primary);
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
.intro, .features, .notices, .game-section, .info-banner {
    padding: 3rem 2rem;
}

.intro h2, .features h2, .game-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    text-align: center;
}

.intro p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dim);
}

/* Notice Cards */
.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.notice-card {
    background: rgba(147, 51, 234, 0.1);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--accent);
}

/* Game Container */
.game-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.game-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    border: 3px solid var(--primary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(147, 51, 234, 0.5);
}

.game-container iframe {
    width: 100%;
    height: 600px;
    display: block;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(45, 27, 94, 0.3);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 1.5rem;
}

.feature-item h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(253, 224, 71, 0.1) 100%);
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
}

.info-banner h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Age Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, var(--bg-medium) 0%, var(--bg-light) 100%);
    border: 3px solid var(--primary);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 50px rgba(147, 51, 234, 0.7);
}

.modal-header h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-light);
    margin-bottom: 1rem;
    text-align: center;
}

.modal-body p {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-confirm, .btn-deny {
    font-family: 'Rajdhani', sans-serif;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: var(--primary);
    color: white;
}

.btn-confirm:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.btn-deny {
    background: #666;
    color: white;
}

.btn-deny:hover {
    background: #444;
}

/* Content Pages */
.page-header {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(107, 33, 168, 0.3) 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 2px solid var(--primary);
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.updated {
    color: var(--text-dim);
    font-size: 1rem;
}

.content-section {
    padding: 3rem 2rem;
}

.content-box {
    background: rgba(45, 27, 94, 0.2);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-box h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
}

.content-box h2:first-child {
    margin-top: 0;
}

.content-box ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-box li {
    margin-bottom: 0.5rem;
}

.content-box a {
    color: var(--primary-light);
    text-decoration: underline;
}

.play-header {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(107, 33, 168, 0.3) 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 2px solid var(--primary);
}

.play-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.game-info {
    padding: 2rem;
}

.info-box {
    background: rgba(45, 27, 94, 0.3);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 1.5rem;
    max-width: 900px;
    margin: 1rem auto;
}

.info-box p {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: rgba(15, 10, 30, 0.95);
    border-top: 2px solid var(--primary);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    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: var(--accent);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary);
    color: var(--text-dim);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 10, 30, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1rem;
        border-bottom: 2px solid var(--primary);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .notice-grid, .features-grid {
        grid-template-columns: 1fr;
    }

    .game-container iframe {
        height: 400px;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-box {
        padding: 1.5rem;
    }
}