@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;500;700&display=swap');

:root {
    --primary: #00f5d4;
    --secondary: #7b2cbf;
    --accent: #ff6b6b;
    --dark: #0a0a0f;
    --darker: #050508;
    --light: #e8e8e8;
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(180deg, var(--darker) 0%, transparent 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at center, var(--secondary) 0%, var(--dark) 70%);
    padding-top: 80px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 30px var(--primary);
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 245, 212, 0.4);
}

/* Notice Section */
.notices {
    background: var(--darker);
    padding: 60px 0;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.notice-card {
    background: linear-gradient(145deg, rgba(123, 44, 191, 0.1) 0%, rgba(0, 245, 212, 0.05) 100%);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background: var(--dark);
}

.game-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.game-wrapper {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16/10;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--secondary);
    box-shadow: 0 0 50px rgba(123, 44, 191, 0.5);
}

.game-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.info-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.info-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    opacity: 0.85;
}

.info-visual {
    height: 350px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

/* Footer */
footer {
    background: var(--darker);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(0, 245, 212, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: var(--light);
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-modal-content {
    background: linear-gradient(145deg, var(--dark) 0%, var(--darker) 100%);
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 60px 50px;
    text-align: center;
    max-width: 500px;
}

.age-modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.age-modal-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-btn {
    padding: 15px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
}

.age-btn.yes {
    background: var(--primary);
    color: var(--dark);
}

.age-btn.no {
    background: var(--accent);
    color: #fff;
}

.age-btn:hover {
    transform: scale(1.05);
}

.hidden {
    display: none !important;
}

/* Page Content Styles */
.page-header {
    padding: 150px 0 80px;
    background: radial-gradient(ellipse at top, var(--secondary) 0%, var(--dark) 60%);
    text-align: center;
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--primary);
}

.page-content {
    padding: 80px 0;
    background: var(--dark);
}

.page-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 40px 0 20px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p, .page-content ul {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.page-content ul {
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
}

/* Mobile Styles */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        padding: 100px 40px;
        transition: right 0.4s;
    }

    nav.active {
        right: 0;
    }

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

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

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

    .footer-content {
        flex-direction: column;
    }
}
