:root {
    --primary-bg: #000142;
    --secondary-bg: #02035d;
    --accent-blue: #2a5dd3;
    --light-blue: #70b1d8;
    --white: #ffffff;
}
* {
    font-family: 'Inter', sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--primary-bg);
}
.gradient-text {
    background: linear-gradient(135deg, var(--light-blue), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion-content.active {
    max-height: 500px;
}
.accordion-icon {
    transition: transform 0.3s ease;
}
.accordion-icon.active {
    transform: rotate(180deg);
}
.floating {
    animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(42, 93, 211, 0.3); }
    50% { box-shadow: 0 0 40px rgba(42, 93, 211, 0.6); }
}
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.countdown-box {
    background: linear-gradient(135deg, rgba(42, 93, 211, 0.2), rgba(112, 177, 216, 0.1));
}
.team-card:hover {
    transform: translateY(-10px);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(112, 177, 216, 0.2);
}