@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: #6c5ce7;
    --secondary: #a29bfe;
    --accent: #fd79a8;
    --dark: #0d0d1a;
    --darker: #06060d;
    --light: #f8f9fa;
    --gradient: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 50%, #fd79a8 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(108, 92, 231, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: rgba(108, 92, 231, 0.2);
    color: var(--secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 2rem 80px;
    background: radial-gradient(ellipse at center, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236c5ce7' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary);
    max-width: 700px;
    margin-bottom: 2rem;
}

/* Notice Badges */
.notice-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.badge {
    background: rgba(108, 92, 231, 0.2);
    border: 1px solid var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    font-size: 1.2rem;
}

/* Game Container */
.game-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-wrapper {
    background: linear-gradient(145deg, rgba(108, 92, 231, 0.1), rgba(253, 121, 168, 0.1));
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(108, 92, 231, 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;
}

/* Features Grid */
.features {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(108, 92, 231, 0.05));
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(13, 13, 26, 0.8);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.feature-card p {
    color: rgba(248, 249, 250, 0.7);
}

/* Info Section */
.info-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-block {
    background: rgba(108, 92, 231, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary);
}

.info-block h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background: var(--darker);
    border-top: 1px solid rgba(108, 92, 231, 0.2);
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--secondary);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent);
}

.responsible-gambling {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(108, 92, 231, 0.2);
}

.responsible-gambling p {
    color: rgba(248, 249, 250, 0.6);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.responsible-links a {
    color: var(--accent);
    font-size: 0.85rem;
}

.copyright {
    margin-top: 2rem;
    color: rgba(248, 249, 250, 0.4);
    font-size: 0.85rem;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 13, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.age-modal-content {
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 100px rgba(108, 92, 231, 0.3);
}

.age-modal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-modal h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.age-modal p {
    color: rgba(248, 249, 250, 0.7);
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.age-btn-yes {
    background: var(--gradient);
    color: white;
}

.age-btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

.age-btn-no {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.age-btn-no:hover {
    background: var(--accent);
    color: white;
}

.hidden {
    display: none !important;
}

/* Page Content */
.page-content {
    padding: 120px 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--light);
}

.page-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--secondary);
}

.page-content p {
    margin-bottom: 1rem;
    color: rgba(248, 249, 250, 0.8);
}

.page-content ul {
    margin: 1rem 0 1rem 2rem;
    color: rgba(248, 249, 250, 0.8);
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* Play Page */
.play-section {
    padding: 120px 2rem 4rem;
}

.play-container {
    max-width: 1400px;
    margin: 0 auto;
}

.play-header {
    text-align: center;
    margin-bottom: 2rem;
}

.play-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.play-note {
    background: rgba(108, 92, 231, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid var(--primary);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(108, 92, 231, 0.3);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .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(6px, -6px);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .notice-badges {
        flex-direction: column;
        align-items: center;
    }

    .game-frame {
        height: 400px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .age-modal-content {
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .page-content h1 {
        font-size: 1.8rem;
    }
}
