/* Digivora - Digital/Cyberpunk Theme CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    line-height: 1.6;
    color: #00ff00;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 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, #1a1a2e, #16213e);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    position: relative;
    overflow: hidden;
}

.age-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    animation: scan 2s infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.age-modal-header h2 {
    color: #00ff00;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ff00;
}

.age-modal-body p {
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.age-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-confirm, .btn-deny {
    padding: 12px 30px;
    border: 2px solid #00ff00;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Exo 2', sans-serif;
    background: transparent;
    color: #00ff00;
    position: relative;
    overflow: hidden;
}

.btn-confirm:hover {
    background: #00ff00;
    color: #1a1a2e;
    box-shadow: 0 0 20px #00ff00;
}

.btn-deny {
    border-color: #ff0040;
    color: #ff0040;
}

.btn-deny:hover {
    background: #ff0040;
    color: #1a1a2e;
    box-shadow: 0 0 20px #ff0040;
}

/* Header */
.header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #00ff00;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 2.5rem;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    margin: 0;
}

.tagline {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #00ff00;
    box-shadow: 0 0 5px #00ff00;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00ff00;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 5px #00ff00;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.digital-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circuit {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #00ff00, #00ffff);
    animation: circuit-glow 3s ease-in-out infinite;
}

.circuit-1 { top: 20%; left: 10%; animation-delay: 0s; }
.circuit-2 { top: 60%; right: 15%; animation-delay: 1s; }
.circuit-3 { top: 80%; left: 20%; animation-delay: 2s; }

@keyframes circuit-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.data-stream {
    position: absolute;
    color: #00ff00;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    animation: data-flow 4s linear infinite;
}

.stream-1 { top: 30%; left: 5%; animation-delay: 0s; }
.stream-2 { top: 50%; right: 10%; animation-delay: 1.5s; }
.stream-3 { top: 70%; left: 15%; animation-delay: 3s; }

@keyframes data-flow {
    0% { transform: translateX(-100px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100vw); opacity: 0; }
}

.pixel {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
    animation: pixel-blink 2s ease-in-out infinite;
}

.pixel-1 { top: 25%; left: 25%; animation-delay: 0s; }
.pixel-2 { top: 45%; right: 30%; animation-delay: 0.5s; }
.pixel-3 { top: 65%; left: 35%; animation-delay: 1s; }
.pixel-4 { top: 85%; right: 25%; animation-delay: 1.5s; }

@keyframes pixel-blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    margin-bottom: 20px;
    color: #00ff00;
    text-shadow: 0 0 20px #00ff00;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px #00ff00; }
    to { text-shadow: 0 0 30px #00ff00, 0 0 40px #00ff00; }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #888;
}

.notices {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 0, 0.1);
    padding: 15px 25px;
    border-radius: 25px;
    border: 1px solid #00ff00;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.notice:hover {
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.notice-icon {
    font-size: 1.5rem;
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.game-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    color: #00ff00;
    margin-bottom: 40px;
    text-shadow: 0 0 10px #00ff00;
}

.game-container {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    position: relative;
}

.game-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff00, #00ffff, #ff00ff, #00ff00);
    border-radius: 15px;
    z-index: -1;
    animation: border-glow 3s linear infinite;
}

@keyframes border-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
    background: #000;
}

.game-description {
    text-align: center;
    font-size: 1.1rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #e0e0e0;
}

.features h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(0, 255, 0, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00ff00;
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.feature-card h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00ff00;
}

.feature-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Digital Features Section */
.digital-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.digital-features h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.digital-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.digital-card {
    background: rgba(0, 255, 0, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.digital-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff00, #00ffff, #ff00ff, #00ff00);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.digital-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.digital-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.digital-card h4 {
    font-family: 'Orbitron', monospace;
    color: #00ff00;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.digital-card p {
    color: #888;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #e0e0e0;
    padding: 60px 0 20px;
    border-top: 1px solid #00ff00;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Orbitron', monospace;
    color: #00ff00;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-shadow: 0 0 5px #00ff00;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 0, 0.3);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 999;
        border-top: 1px solid #00ff00;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .notices {
        flex-direction: column;
        align-items: center;
    }
    
    .notice {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .game-frame {
        height: 400px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .digital-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .game-section h3,
    .features h3,
    .digital-features h3 {
        font-size: 2rem;
    }
    
    .age-modal-content {
        padding: 30px 20px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .digital-grid {
        grid-template-columns: 1fr;
    }
}