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

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

:root {
    --primary-color: #00ff88;
    --secondary-color: #1a1a2e;
    --accent-color: #ff6b35;
    --bg-dark: #0d0d1a;
    --text-light: #e8e8e8;
    --text-muted: #9a9aaa;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #16213e 100%);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 4px 30px rgba(0, 255, 136, 0.2);
}

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

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    letter-spacing: 3px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    vertical-align: middle;
}

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

nav ul li a {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

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

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    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(7px, -7px);
}

/* Main Content */
main {
    margin-top: 85px;
    min-height: calc(100vh - 85px);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
    position: relative;
}

.hero p {
    font-size: 22px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
}

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

.notice-box {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9) 0%, rgba(13, 13, 26, 0.95) 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.notice-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 12px;
}

.notice-box p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Game Section */
.game-section {
    background: var(--secondary-color);
    padding: 60px 20px;
    margin: 40px 0;
}

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

.game-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.3);
}

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

/* Features Section */
.features {
    padding: 80px 20px;
    background: var(--bg-dark);
}

.features h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.feature-card {
    background: linear-gradient(145deg, var(--secondary-color) 0%, rgba(22, 33, 62, 0.8) 100%);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.4s ease;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Page Content */
.page-content {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.page-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    color: var(--accent-color);
    margin: 35px 0 18px;
}

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

.page-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-content ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0f0f1f 100%);
    padding: 50px 20px 30px;
    border-top: 2px solid rgba(0, 255, 136, 0.3);
}

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

.footer-content h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 25px;
}

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

.responsible-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.copyright {
    color: var(--text-muted);
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.age-modal-content {
    background: linear-gradient(145deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 80px rgba(0, 255, 136, 0.3);
}

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

.age-modal-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 35px;
}

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

.age-btn {
    padding: 15px 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.age-btn.yes {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.age-btn.yes:hover {
    background: #00cc6a;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

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

.age-btn.no:hover {
    background: var(--accent-color);
    color: var(--bg-dark);
}

.blocked-message {
    text-align: center;
    padding: 100px 20px;
}

.blocked-message h1 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-color);
    font-size: 36px;
    margin-bottom: 20px;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--secondary-color);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    nav ul li a {
        font-size: 20px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-wrapper iframe {
        height: 450px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .age-modal-content {
        padding: 30px 20px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .responsible-links {
        flex-direction: column;
        gap: 15px;
    }
}
