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

:root {
    --primary: #00f5d4;
    --secondary: #7b2cbf;
    --dark: #0a0a0f;
    --darker: #050508;
    --accent: #f72585;
    --text: #e8e8e8;
    --text-muted: #8a8a9a;
}

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

html {
    scroll-behavior: smooth;
}

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

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

header {
    background: linear-gradient(180deg, var(--dark) 0%, transparent 100%);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

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

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

nav ul li a:hover {
    color: var(--primary);
}

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

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

.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 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: radial-gradient(ellipse at center, rgba(123, 44, 191, 0.15) 0%, transparent 70%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='%2300f5d4' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 245, 212, 0.3);
}

.notices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.notice-card {
    background: linear-gradient(145deg, rgba(123, 44, 191, 0.1), rgba(0, 245, 212, 0.05));
    border: 1px solid rgba(0, 245, 212, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

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

.notice-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

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

.game-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, transparent, rgba(123, 44, 191, 0.08), transparent);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--primary);
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 245, 212, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

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

.features {
    padding: 100px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-box {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 212, 0.1);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
}

.feature-box:hover {
    background: rgba(123, 44, 191, 0.15);
    border-color: var(--secondary);
}

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

.feature-box h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text);
}

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

.info-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.03), rgba(123, 44, 191, 0.03));
}

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

.info-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 25px;
}

.info-content p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 1.05rem;
}

footer {
    background: var(--dark);
    padding: 50px 20px;
    border-top: 1px solid rgba(0, 245, 212, 0.1);
}

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

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

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

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

.responsible-gambling {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.responsible-gambling a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.85rem;
}

.responsible-gambling a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

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

.age-popup-content {
    background: linear-gradient(145deg, var(--dark), rgba(123, 44, 191, 0.2));
    border: 2px solid var(--primary);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.age-popup-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

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

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

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

.age-btn.yes {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
}

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

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

.page-header {
    padding: 140px 20px 60px;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(123, 44, 191, 0.2), transparent 60%);
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

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

.page-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 40px 0 20px;
}

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

.page-content ul {
    padding-left: 25px;
}

.play-note {
    background: linear-gradient(145deg, rgba(0, 245, 212, 0.1), rgba(123, 44, 191, 0.05));
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary);
}

.play-note h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
    color: var(--primary);
}

.play-note p {
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 992px) {
    .notices {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--dark);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.active {
        max-height: 350px;
        border-bottom: 1px solid rgba(0, 245, 212, 0.2);
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 0;
    }
    
    .notices {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .game-container iframe {
        height: 450px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .responsible-gambling a {
        display: block;
        margin: 10px 0;
    }
    
    .age-popup-content {
        padding: 35px 25px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .age-btn {
        width: 100%;
    }
}
