html{
    font-size: 14px;
}
:where([class^="ri-"])::before { content: "\f3c2"; }
.glow-button {
box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
transition: all 0.3s ease;
}
.glow-button:hover {
box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
transform: translateY(-2px);
}
.dark .glow-button {
box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}
.dark .glow-button:hover {
box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
}
.animate-fade-in {
animation: fadeIn 1s ease-out forwards;
opacity: 0;
}
.animate-slide-up {
animation: slideUp 0.8s ease-out forwards;
opacity: 0;
transform: translateY(30px);
}
@keyframes fadeIn {
to { opacity: 1; }
}
@keyframes slideUp {
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-bg {
background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
}
.dark .hero-bg {
background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
}
.floating-animation {
animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
.pulse-glow {
animation: pulseGlow 2s ease-in-out infinite alternate;
}
@keyframes pulseGlow {
from { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
to { box-shadow: 0 0 40px rgba(139, 92, 246, 0.6); }
}
.mode-toggle {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card {
transition: all 0.3s ease;
}
.team-card:hover {
transform: translateY(-10px);
}
.countdown-digit {
background: linear-gradient(135deg, #8B5CF6, #6366F1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.project-card {
transition: all 0.4s ease;
backdrop-filter: blur(10px);
}
.project-card:hover {
transform: scale(1.05);
}