@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 {
    --emerald: #00d4aa;
    --dark-bg: #0a0f1a;
    --card-bg: #121a2e;
    --text-light: #e8f4f0;
    --accent-gold: #ffd700;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
}

.header {
    background: linear-gradient(135deg, #0d1521 0%, #1a2744 100%);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--emerald);
}

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

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

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--emerald), #00a080);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.logo-icon span {
    transform: rotate(-45deg);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--dark-bg);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--emerald);
    letter-spacing: 2px;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

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

.nav-desktop a:hover {
    color: var(--emerald);
}

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 15, 26, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.mobile-nav a:hover {
    color: var(--emerald);
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--emerald);
    cursor: pointer;
}

main {
    padding-top: 90px;
}

.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #152238 0%, var(--dark-bg) 70%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--emerald), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(232, 244, 240, 0.85);
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--emerald), #00a080);
    color: var(--dark-bg);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.notice-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    text-align: center;
}

.notice-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--emerald);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.notice-card p {
    font-size: 0.95rem;
    color: rgba(232, 244, 240, 0.75);
}

.game-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0d1825 100%);
}

.game-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--emerald);
}

.game-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 170, 0.3);
}

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

.features-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 4rem 2rem;
    background: var(--card-bg);
}

.feature-item {
    text-align: center;
    max-width: 200px;
}

.feature-item .num {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
}

.feature-item .label {
    font-size: 0.9rem;
    color: rgba(232, 244, 240, 0.7);
    margin-top: 0.5rem;
}

.info-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.info-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--emerald);
    margin-bottom: 1.5rem;
}

.info-section p {
    margin-bottom: 1rem;
    color: rgba(232, 244, 240, 0.85);
}

.footer {
    background: #070b12;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(0, 212, 170, 0.2);
}

.footer-inner {
    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(--emerald);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.responsible-gaming {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-gaming p {
    font-size: 0.85rem;
    color: rgba(232, 244, 240, 0.6);
    margin-bottom: 1rem;
}

.responsible-gaming a {
    color: var(--emerald);
    margin: 0 0.75rem;
    font-size: 0.85rem;
}

.age-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff4444;
    border-radius: 8px;
    color: #ff6666;
    font-weight: 600;
    margin-top: 1rem;
}

.page-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #0d1521 0%, #1a2744 100%);
    text-align: center;
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    color: var(--emerald);
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--emerald);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.content-section p, .content-section li {
    color: rgba(232, 244, 240, 0.85);
    margin-bottom: 1rem;
}

.content-section ul {
    list-style: none;
    padding-left: 1.5rem;
}

.content-section ul li::before {
    content: '◆';
    color: var(--emerald);
    margin-right: 0.75rem;
}

.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(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    border: 2px solid var(--emerald);
}

.age-popup-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--emerald);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.age-popup-content p {
    margin-bottom: 2rem;
    color: rgba(232, 244, 240, 0.85);
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

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

.btn-yes {
    background: linear-gradient(135deg, var(--emerald), #00a080);
    color: var(--dark-bg);
}

.btn-no {
    background: transparent;
    border: 2px solid #ff4444 !important;
    color: #ff4444;
}

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

.blocked-message {
    display: none;
    text-align: center;
    padding: 2rem;
}

.blocked-message h2 {
    color: #ff4444;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
    }
    
    .game-wrapper iframe {
        height: 450px;
    }
    
    .features-strip {
        gap: 2rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}
