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

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

:root {
    --primary: #6c2bd9;
    --secondary: #1a0a2e;
    --accent: #ff6b35;
    --text: #ffffff;
    --text-muted: #b8a9c9;
    --dark: #0d0518;
    --gradient: linear-gradient(135deg, #6c2bd9 0%, #1a0a2e 100%);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

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

header {
    background: rgba(26, 10, 46, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transform: rotate(-5deg);
    box-shadow: 0 4px 15px rgba(108, 43, 217, 0.4);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
}

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

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--secondary);
    padding: 20px;
    border-bottom: 2px solid var(--primary);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(108, 43, 217, 0.3);
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
}

main {
    margin-top: 80px;
}

.hero {
    background: var(--gradient);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: pulse 4s infinite;
}

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

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    position: relative;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
}

.badge-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    position: relative;
}

.badge {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    font-size: 1.2rem;
}

.section {
    padding: 60px 20px;
}

.section-dark {
    background: var(--secondary);
}

.section h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    text-align: center;
}

.game-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--dark);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 20px 60px rgba(108, 43, 217, 0.3);
}

.game-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(108, 43, 217, 0.1);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(108, 43, 217, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(108, 43, 217, 0.2);
}

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

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

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.info-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.info-box h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

footer {
    background: var(--dark);
    border-top: 2px solid var(--primary);
    padding: 50px 20px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.responsible-gambling {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(108, 43, 217, 0.3);
}

.responsible-gambling p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

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

.responsible-links a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
}

.age-popup {
    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-popup.hidden {
    display: none;
}

.age-popup-content {
    background: var(--secondary);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--primary);
    box-shadow: 0 20px 60px rgba(108, 43, 217, 0.5);
}

.age-popup h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

.age-popup-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

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

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Exo 2', sans-serif;
}

.btn-primary {
    background: var(--accent);
    color: var(--text);
}

.btn-primary:hover {
    background: #ff8555;
    transform: scale(1.05);
}

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

.btn-secondary:hover {
    border-color: var(--text);
    color: var(--text);
}

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

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

.content-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.content-section ul {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--text-muted);
}

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

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .game-container iframe {
        height: 400px;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .age-popup-content {
        margin: 20px;
        padding: 30px;
    }
    
    .badge-row {
        flex-direction: column;
        align-items: center;
    }
}
