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

body {
    font-family: 'Space Mono', monospace;
}

.orbitron {
    font-family: 'Orbitron', monospace;
}

/* Custom animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(251, 191, 36, 0.4), 
                   0 0 30px rgba(251, 191, 36, 0.2),
                   0 0 45px rgba(251, 191, 36, 0.1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.6), 
                   0 0 40px rgba(251, 191, 36, 0.3),
                   0 0 60px rgba(251, 191, 36, 0.2);
    }
}

@keyframes neon-text {
    0%, 100% {
        text-shadow: 0 0 8px #fbbf24, 0 0 15px #fbbf24, 0 0 20px #f59e0b;
    }
    50% {
        text-shadow: 0 0 5px #38bdf8, 0 0 12px #38bdf8, 0 0 18px #0ea5e9;
    }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: transparent; }
    51%, 100% { border-color: #ffd700; }
}

@keyframes matrix-rain {
    0% { transform: translateY(-100vh); opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes rocket-launch {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
    75% { transform: translateY(-15px) rotate(-3deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes stats-glow {
    0%, 100% { background: rgba(16, 185, 129, 0.1); }
    50% { background: rgba(16, 185, 129, 0.3); }
}

.float-animation { animation: float 3s ease-in-out infinite; }
.pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.neon-text { animation: neon-text 2s ease-in-out infinite; }
.typing { 
    overflow: hidden;
    white-space: nowrap;
    border-right: 0.15em solid #ffd700;
    animation: typing 2s steps(30, end), blink 0.75s step-end infinite;
}
.matrix-char {
    animation: matrix-rain 8s linear infinite;
    color: #00ff88;
    font-family: 'Courier New', monospace;
}
.rocket-animate { animation: rocket-launch 2s ease-in-out infinite; }
.stats-animate { animation: stats-glow 3s ease-in-out infinite; }

/* Glassmorphism effects */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.glass-terminal {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

/* Cyber grid background */
.cyber-grid {
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Holographic effect */
.holographic {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4, #10b981, #f59e0b);
    background-size: 300% 300%;
    animation: holographic-shift 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes holographic-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: rgba(148, 163, 184, 0.2); }
::-webkit-scrollbar-thumb { 
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    border-radius: 4px;
}
* {
    font-family: 'Space Grotesk', sans-serif;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

.pizza-gradient {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
}

.cheese-gradient {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #fff3a0);
}

.sauce-gradient {
    background: linear-gradient(135deg, #e74c3c, #c0392b, #8b0000);
}

.crust-border {
    border: 3px solid;
    border-image: linear-gradient(45deg, #8b4513, #daa520, #cd853f) 1;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

.pizza-spin {
    animation: pizzaSpin 20s linear infinite;
}

.melting {
    animation: melting 2s ease-in-out infinite alternate;
}

.glitch {
    animation: glitch 0.3s infinite;
}

.neon-pizza {
    text-shadow: 0 0 10px #ff6b35, 0 0 20px #ff6b35, 0 0 30px #ff6b35;
}

.slice-hover:hover {
    transform: rotate(10deg) scale(1.1);
    transition: all 0.3s ease;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: bubble 4s linear infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pizzaSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes melting {
    0% { transform: scaleY(1); }
    100% { transform: scaleY(1.1) scaleX(0.95); }
}

@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 bubble {
    0% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% { 
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.tech-grid {
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.pizza-slice-path {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.interactive-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}