/* Cyberpunk Theme Custom Styles */

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor; }
    50% { box-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor; }
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes scan-line {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* Reduced glow for main headline - more subtle */
.glitch-text {
    animation: glitch 3s infinite;
    text-shadow: 
        0 0 5px #00FF99,
        0 0 10px #00FF99;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Reduced neon glow for headings - cleaner and more readable */
.neon-glow {
    text-shadow: 
        0 0 3px currentColor,
        0 0 6px currentColor;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Heading-specific styles for better readability */
.cyber-heading {
    font-weight: 600;
    letter-spacing: 0.03em;
    text-shadow: 
        0 0 2px currentColor,
        0 0 4px currentColor;
}

.cyber-card {
    background: linear-gradient(145deg, #1A1A1A 0%, #0A0A0A 100%);
    border: 1px solid #00FF99;
    box-shadow: 
        0 0 10px rgba(0, 255, 153, 0.3),
        inset 0 0 20px rgba(0, 255, 153, 0.1);
    transition: all 0.3s ease;
}

.cyber-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 0 20px rgba(0, 255, 153, 0.5),
        0 0 40px rgba(0, 255, 153, 0.3),
        inset 0 0 30px rgba(0, 255, 153, 0.2);
}

.cyber-button {
    background: linear-gradient(45deg, #00FF99, #00FFFF);
    border: 2px solid #00FF99;
    box-shadow: 
        0 0 10px rgba(0, 255, 153, 0.5),
        inset 0 0 10px rgba(0, 255, 153, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.cyber-button:hover::before {
    left: 100%;
}

.cyber-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 0 20px rgba(0, 255, 153, 0.8),
        0 0 40px rgba(0, 255, 153, 0.4),
        inset 0 0 20px rgba(0, 255, 153, 0.3);
    animation: pulse-glow 1s infinite;
}

.cyber-outline-button {
    background: transparent;
    border: 2px solid #00FFFF;
    color: #00FFFF;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cyber-outline-button:hover {
    background: #00FFFF;
    color: #000;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.8),
        0 0 40px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px) scale(1.05);
}

.neon-border {
    border: 1px solid #00FF99;
    box-shadow: 
        0 0 10px rgba(0, 255, 153, 0.3),
        inset 0 0 10px rgba(0, 255, 153, 0.1);
}

.neon-border:hover {
    box-shadow: 
        0 0 20px rgba(0, 255, 153, 0.5),
        inset 0 0 20px rgba(0, 255, 153, 0.2);
}

.cyber-table {
    background: linear-gradient(145deg, #1A1A1A 0%, #0A0A0A 100%);
    border: 1px solid #00FFFF;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.cyber-table th {
    background: linear-gradient(45deg, #00FFFF, #00FF99);
    color: #000;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.cyber-table tr:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.2);
}

.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00FF99, transparent);
    animation: scan-line 8s linear infinite;
    pointer-events: none;
    z-index: 9999;
}

.neon-link {
    color: #00FFFF;
    text-shadow: 0 0 5px #00FFFF;
    transition: all 0.3s ease;
}

.neon-link:hover {
    color: #FF00FF;
    text-shadow: 0 0 10px #FF00FF;
    animation: neon-flicker 0.5s infinite;
}

.cyber-icon {
    background: linear-gradient(45deg, #00FF99, #00FFFF);
    box-shadow: 0 0 15px rgba(0, 255, 153, 0.5);
}

.cyber-icon svg {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.8));
}

.cyber-header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #00FF99;
    box-shadow: 0 0 20px rgba(0, 255, 153, 0.3);
}

.cyber-hero {
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
}

/* Mobile Menu Styles */
#mobileMenu {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 2px solid #00FF99;
    box-shadow: 0 4px 20px rgba(0, 255, 153, 0.3);
}

#mobileMenu a {
    border-radius: 8px;
    padding: 12px 16px;
    margin: 4px 0;
    transition: all 0.3s ease;
}

#mobileMenu a:hover {
    background: rgba(0, 255, 153, 0.1);
    transform: translateX(8px);
}

/* Mobile Menu Button Styles */
#mobileMenuButton {
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 6px;
}

#mobileMenuButton:hover {
    background: rgba(0, 255, 153, 0.1);
    transform: scale(1.1);
} 