:root {
    --primary: #FF6B35;
    --primary-end: #FF4444;
    --secondary: #00D9FF;
    --accent: #00FF87;
    --bg-card: #1A1A2E;
    --text-secondary: #B0B0B0;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

/* Custom Utilities */
.card-glass {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

/* Countdown Boxes */
.countdown-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

/* Floating Particles */
#particles {
    background: radial-gradient(ellipse at center, transparent 0%, black 70%);
}

/* Form Styles */
select option {
    background: #0a0a0a;
    color: white;
    padding: 10px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #FF6B35, #FF4444);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #FF4444, #FF6B35);
}

/* Selection */
::selection {
    background: #FF6B35;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .countdown-box {
        padding: 1rem 1.5rem;
        min-width: 70px;
    }

    .countdown-box span:first-child {
        font-size: 2rem !important;
    }
}