/* ===============================================
   bulobi MAIN STYLESHEET  
   Gaming Platform CSS Framework
   
   🚫 INLINE CSS YASAĞI 🚫
   ❌ PHP/HTML dosyalarında style="..." KULLANMAYIN
   ✅ Bu dosyadaki gaming class'larını kullanın  
   ✅ Yeni component'ler için modules/ klasöründe
   
   Gaming experience tutarlılığı için kritik!
   =============================================== */

/* Base Dependencies - Load First */
@import url('modules/variables.css');    /* Variables (no dependencies) */
@import url('modules/base.css');         /* Base styles (depends on variables) */

/* Core Modules */
@import url('modules/animations.css');   /* Animations (depends on variables) */
@import url('modules/components.css');   /* Components (depends on variables, base) */
@import url('modules/layout.css');       /* Layout (depends on variables, base) */

/* Feature Modules */
@import url('modules/modal.css');        /* Modal (depends on variables, base, components) */
@import url('modules/lobby.css');        /* Lobby (depends on variables, base, components, layout) */
@import url('modules/notifications.css'); /* Notifications (depends on variables, animations) */
@import url('modules/chat.css');         /* Chat (depends on variables, animations) */

/* Responsive - Load Last */
@import url('responsive.css');   /* Responsive (depends on all other modules) */

/* ===============================================
   CYBER FOOTER STYLES
   =============================================== */

.footer-cyber {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(15, 25, 20, 0.95) 50%, rgba(10, 10, 15, 0.95) 100%);
    border-top: 2px solid rgba(0, 255, 127, 0.3);
    padding: 3rem 2rem 2rem;
    margin-top: 0;
    overflow: hidden;
}

.footer-cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 127, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 127, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.footer-cyber-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.footer-cyber-header {
    margin-bottom: 2rem;
}

.footer-cyber-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00FF7F;
    text-shadow: 0 0 20px rgba(0, 255, 127, 0.8);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.footer-cyber-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.footer-cyber-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-cyber-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 8px;
    text-decoration: none;
    color: #00FF7F;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
}

.footer-cyber-link:hover {
    background: rgba(0, 255, 127, 0.2);
    border-color: #00FF7F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 127, 0.3);
}

.footer-cyber-link-icon {
    font-size: 1.1rem;
}

.footer-cyber-link-text {
    font-size: 0.9rem;
}

.footer-cyber-link-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-cyber-link:hover .footer-cyber-link-glow {
    left: 100%;
}

.footer-cyber-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 127, 0.2);
}

.footer-cyber-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-cyber-divider {
    margin: 0 1rem;
    color: rgba(0, 255, 127, 0.5);
}

.footer-cyber-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #00FF7F;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-cyber-status-dot {
    width: 8px;
    height: 8px;
    background: #00FF7F;
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}

.footer-cyber-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00FF7F, transparent);
    opacity: 0.6;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 5px #00FF7F;
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 15px #00FF7F;
    }
}


