/* SpinEmerald.xyz - Unique Emerald Theme */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

:root {
    --emerald-primary: #00ff88;
    --emerald-dark: #00cc6a;
    --emerald-light: #33ff99;
    --emerald-bg: #001a0d;
    --emerald-card: #002d1a;
    --emerald-text: #ffffff;
    --emerald-accent: #ff6b35;
    --emerald-gold: #ffd700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, var(--emerald-bg) 0%, #003d1f 50%, var(--emerald-bg) 100%);
    color: var(--emerald-text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: rgba(0, 26, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--emerald-primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--emerald-primary);
    text-shadow: 0 0 20px var(--emerald-primary);
    text-decoration: none;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--emerald-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active:nth-child(2) {
    opacity: 0;
}

.hamburger.active:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--emerald-text);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--emerald-primary);
    text-shadow: 0 0 10px var(--emerald-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--emerald-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Main Content */
.main-content {
    margin-top: 100px;
    padding: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid var(--emerald-primary);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--emerald-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px var(--emerald-primary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Game Container */
.game-container {
    background: var(--emerald-card);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid var(--emerald-primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.game-container h2 {
    color: var(--emerald-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.game-embed {
    width: 100%;
    max-width: 800px;
    height: 500px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--emerald-dark);
}

.game-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Notice Boxes */
.notice-box {
    background: linear-gradient(135deg, var(--emerald-card), rgba(0, 255, 136, 0.1));
    border: 2px solid var(--emerald-primary);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    text-align: center;
}

.notice-box h3 {
    color: var(--emerald-accent);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.notice-box p {
    color: var(--emerald-text);
    opacity: 0.9;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.age-modal-content {
    background: var(--emerald-card);
    margin: 15% auto;
    padding: 2rem;
    border: 3px solid var(--emerald-primary);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 50px var(--emerald-primary);
}

.age-modal h2 {
    color: var(--emerald-primary);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.age-modal p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.age-btn.yes {
    background: var(--emerald-primary);
    color: var(--emerald-bg);
}

.age-btn.yes:hover {
    background: var(--emerald-dark);
    box-shadow: 0 0 20px var(--emerald-primary);
}

.age-btn.no {
    background: var(--emerald-accent);
    color: white;
}

.age-btn.no:hover {
    background: #e55a2b;
    box-shadow: 0 0 20px var(--emerald-accent);
}

/* Footer */
.footer {
    background: var(--emerald-bg);
    border-top: 2px solid var(--emerald-primary);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--emerald-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--emerald-primary);
}

.footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 26, 13, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        border-top: 2px solid var(--emerald-primary);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .game-embed {
        height: 400px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .game-embed {
        height: 300px;
    }
    
    .age-modal-content {
        margin: 20% auto;
        padding: 1.5rem;
    }
}