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

:root {
    --primary-color: #6c3ce9;
    --secondary-color: #00f5d4;
    --dark-bg: #0a0a1a;
    --card-bg: #12122a;
    --text-light: #e8e8f0;
    --text-muted: #9898b0;
    --gradient-1: linear-gradient(135deg, #6c3ce9 0%, #00f5d4 100%);
    --gradient-2: linear-gradient(180deg, #0a0a1a 0%, #1a1a3a 100%);
}

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

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-bg);
    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(10, 10, 26, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(108, 60, 233, 0.3);
    backdrop-filter: blur(10px);
}

.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;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: 0.3s ease;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

/* Mobile Nav */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--card-bg);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(108, 60, 233, 0.3);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav a {
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero {
    padding: 140px 20px 80px;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 60, 233, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(108, 60, 233, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Notice Box */
.notice-box {
    background: rgba(108, 60, 233, 0.15);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 25px;
    margin: 40px auto;
    max-width: 800px;
}

.notice-box h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.notice-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.notice-item .icon {
    font-size: 1.3rem;
}

/* Game Container */
.game-section {
    padding: 60px 20px;
    background: var(--dark-bg);
}

.game-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(108, 60, 233, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
    background: #000;
}

@media (max-width: 768px) {
    .game-frame {
        height: 400px;
    }
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
}

.content-section.alt-bg {
    background: var(--card-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(18, 18, 42, 0.8);
    border-radius: 16px;
    padding: 35px;
    border: 1px solid rgba(108, 60, 233, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Info Blocks */
.info-block {
    max-width: 900px;
    margin: 0 auto;
}

.info-block p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Footer */
.site-footer {
    background: #060612;
    padding: 50px 20px 30px;
    border-top: 1px solid rgba(108, 60, 233, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.responsible-gaming {
    margin-bottom: 30px;
}

.responsible-gaming h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1rem;
}

.responsible-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.responsible-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.responsible-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(108, 60, 233, 0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* 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: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 60px rgba(108, 60, 233, 0.3);
}

.age-modal h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.age-modal p {
    margin-bottom: 30px;
    color: var(--text-muted);
}

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

.btn-age {
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-yes {
    background: var(--gradient-1);
    color: white;
}

.btn-no {
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
}

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

.btn-yes:hover {
    box-shadow: 0 10px 30px rgba(108, 60, 233, 0.4);
}

/* Page Header */
.page-header {
    padding: 120px 20px 60px;
    background: var(--gradient-2);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin: 30px 0 15px;
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    color: var(--text-muted);
}

.legal-content li {
    margin-bottom: 8px;
}

/* Play Page */
.play-section {
    padding: 100px 20px 60px;
}

.game-info {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: center;
}

.game-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
