@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:wght@300;400;600&display=swap');

:root {
    --primary: #7c3aed;
    --primary-dark: #5b21b6;
    --secondary: #06b6d4;
    --accent: #f472b6;
    --bg-dark: #0f0a1e;
    --bg-card: #1a1030;
    --text-light: #f8fafc;
    --text-muted: #a5b4c8;
    --gradient-1: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    --gradient-2: linear-gradient(180deg, #0f0a1e 0%, #1a1030 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: rgba(15, 10, 30, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.main-nav a:hover {
    background: var(--primary);
    color: white;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 10, 30, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        display: none;
        border-bottom: 2px solid var(--primary);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 12px 20px;
        border-radius: 8px;
        background: var(--bg-card);
    }
}

/* Hero Section */
.hero {
    padding: 140px 20px 80px;
    text-align: center;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Notice Boxes */
.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.notice-box {
    background: var(--bg-card);
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notice-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
}

.notice-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.notice-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.notice-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Game Section */
.game-section {
    padding: 60px 20px;
    background: var(--bg-dark);
}

.game-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--primary);
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.2);
}

.game-header {
    background: var(--gradient-1);
    padding: 20px 30px;
    text-align: center;
}

.game-header h2 {
    color: white;
    font-size: 1.5rem;
}

.game-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.game-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: var(--bg-card);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-dark);
    border-radius: 16px;
    padding: 35px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--accent);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Content Section */
.content-section {
    padding: 60px 20px;
    background: var(--bg-dark);
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.content-block p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.content-block ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-block li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* Page Header */
.page-header {
    padding: 120px 20px 60px;
    text-align: center;
    background: var(--gradient-2);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid rgba(124, 58, 237, 0.3);
    padding: 50px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.responsible-gaming {
    margin: 30px 0;
}

.responsible-gaming h4 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1rem;
}

.responsible-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.responsible-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 16px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.responsible-links a:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 80px rgba(124, 58, 237, 0.4);
}

.age-modal-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.age-modal-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn.yes {
    background: var(--gradient-1);
    color: white;
}

.age-btn.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 30px rgba(124, 58, 237, 0.5);
}

.age-btn.no {
    background: transparent;
    color: var(--text-muted);
    border: 2px solid var(--text-muted);
}

.age-btn.no:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Utility */
.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Legal Pages */
.legal-content {
    padding: 40px 20px 80px;
}

.legal-content .container {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 35px 0 15px;
    color: var(--secondary);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
    color: var(--accent);
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.legal-content ul, .legal-content ol {
    margin: 15px 0 20px 25px;
    color: var(--text-muted);
}

.legal-content li {
    margin-bottom: 8px;
}

/* Game Note */
.game-note {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--secondary);
    border-radius: 12px;
    padding: 20px;
    margin: 30px auto;
    max-width: 800px;
}

.game-note h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.game-note p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}
