@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #1a0533 0%, #2d1b4e 50%, #0f0f2d 100%);
    --accent-color: #b388ff;
    --secondary-accent: #7c4dff;
    --glow-color: rgba(179, 136, 255, 0.5);
    --text-light: #e8e0f0;
    --text-muted: #a89bc4;
    --card-bg: rgba(45, 27, 78, 0.85);
    --header-bg: rgba(15, 15, 45, 0.95);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--primary-gradient);
    min-height: 100vh;
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

.site-header {
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(179, 136, 255, 0.2);
    padding: 0 2rem;
}

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px var(--glow-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

main {
    padding-top: 70px;
    min-height: calc(100vh - 70px);
}

.hero-section {
    background: radial-gradient(ellipse at center, rgba(124, 77, 255, 0.15) 0%, transparent 70%);
    padding: 6rem 2rem;
    text-align: center;
}

.hero-section h1 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--accent-color), #fff, var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.notice-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(179, 136, 255, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 77, 255, 0.2);
}

.notice-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.notice-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.game-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.game-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.game-wrapper {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(179, 136, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.game-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
    display: block;
}

.info-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.info-section p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}

.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-box {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(179, 136, 255, 0.1);
}

.feature-box h3 {
    font-family: 'Orbitron', monospace;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-box p {
    color: var(--text-muted);
}

.page-content {
    padding: 6rem 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.page-content h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.page-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-light);
}

.page-content p, .page-content li {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.page-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.site-footer {
    background: var(--header-bg);
    border-top: 1px solid rgba(179, 136, 255, 0.2);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.responsible-gaming {
    margin-bottom: 2rem;
}

.responsible-gaming h4 {
    font-family: 'Orbitron', monospace;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.responsible-gaming a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.responsible-gaming a:hover {
    color: var(--accent-color);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 5, 25, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.age-overlay.hidden {
    display: none;
}

.age-modal {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 3rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 60px var(--glow-color);
}

.age-modal h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.age-modal p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.age-btn.yes {
    background: linear-gradient(135deg, var(--secondary-accent), var(--accent-color));
    color: #fff;
}

.age-btn.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--glow-color);
}

.age-btn.no {
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
}

.age-btn.no:hover {
    border-color: #ff4757;
    color: #ff4757;
}

@media (max-width: 900px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--header-bg);
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(179, 136, 255, 0.2);
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .hero-section {
        padding: 4rem 1.5rem;
    }

    .game-wrapper iframe {
        height: 450px;
    }

    .notice-grid {
        grid-template-columns: 1fr;
    }

    .responsible-gaming a {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 600px) {
    .header-inner {
        padding: 0;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .game-wrapper iframe {
        height: 350px;
    }

    .page-content {
        padding: 5rem 1.5rem 3rem;
    }

    .page-content h1 {
        font-size: 1.8rem;
    }

    .age-modal {
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
