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

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

:root {
    --primary: #00f0ff;
    --secondary: #ff00c8;
    --dark: #0a0a1a;
    --darker: #050510;
    --light: #e0e0ff;
    --accent: #7b2cff;
}

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

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

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.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;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

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

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

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #1a1a3a 0%, var(--darker) 70%);
    padding: 120px 20px 60px;
    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='%2300f0ff' 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 {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(224, 224, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Notice Boxes */
.notices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.notice-box {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.notice-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.15);
}

.notice-box .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.notice-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.notice-box p {
    font-size: 0.9rem;
    color: rgba(224, 224, 255, 0.7);
}

/* Game Section */
.game-section {
    padding: 80px 20px;
    background: var(--dark);
}

.game-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.game-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--darker);
    border-radius: 20px;
    padding: 20px;
    border: 2px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.1);
}

.game-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

.features h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--light);
}

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

.feature-card {
    background: linear-gradient(145deg, rgba(123, 44, 255, 0.1), rgba(0, 240, 255, 0.05));
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    border: 1px solid rgba(123, 44, 255, 0.3);
    transition: all 0.4s;
}

.feature-card:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

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

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

.feature-card p {
    font-size: 0.9rem;
    color: rgba(224, 224, 255, 0.7);
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--darker);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 5px 30px rgba(0, 240, 255, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.6);
}

/* Footer */
footer {
    background: var(--darker);
    padding: 60px 20px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
}

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

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

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

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

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

.responsible-gaming p {
    font-size: 0.85rem;
    color: rgba(224, 224, 255, 0.5);
    margin-bottom: 15px;
}

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

.copyright {
    margin-top: 30px;
    font-size: 0.8rem;
    color: rgba(224, 224, 255, 0.4);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    padding: 150px 20px 80px;
    text-align: center;
}

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

.page-header p {
    color: rgba(224, 224, 255, 0.7);
    font-size: 1.1rem;
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
    background: var(--dark);
}

.content-section:nth-child(even) {
    background: var(--darker);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.content-wrapper p {
    margin-bottom: 20px;
    color: rgba(224, 224, 255, 0.85);
}

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-wrapper li {
    margin-bottom: 12px;
    color: rgba(224, 224, 255, 0.85);
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 16, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-modal-content {
    background: linear-gradient(145deg, var(--dark), var(--darker));
    border: 2px solid var(--primary);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 0 80px rgba(0, 240, 255, 0.3);
}

.age-modal-content .icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

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

.age-modal-content p {
    margin-bottom: 30px;
    color: rgba(224, 224, 255, 0.8);
}

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

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

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

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

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

.hidden {
    display: none !important;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .notices {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark);
        padding: 100px 40px;
        transition: right 0.3s;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 25px;
    }
    
    nav a {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .notices {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-wrapper iframe {
        height: 400px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .age-modal-content {
        margin: 20px;
        padding: 30px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}
