:root {
    --accent: #F59E0B;
    --accent-light: #FBBF24;
    --dark: #0A0A0A;
    --dark-light: #111111;
}

body {
    background: var(--dark);
    color: white;
    font-family: system-ui, -apple-system, sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(10, 10, 10, 1) 50%, rgba(10, 10, 10, 1) 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-hover:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.glow-amber {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}

.glow-amber-sm {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
}

.text-glow {
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.3);
}

.orb {
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-amber {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.6) 0%, rgba(245, 158, 11, 0) 70%);
}

.orb-blue {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, rgba(59, 130, 246, 0) 70%);
}

.orb-purple {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, rgba(168, 85, 247, 0) 70%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.grid-pattern {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.fade-up {
    animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
    height: 100%; /* Ensure full height for hover target */
}

/* Pseudo-element to bridge the gap */
.dropdown::after {
    content: '';
    position: absolute;
    bottom: -20px; /* Extend below the navbar item */
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    z-index: 100;
    padding: 0.5rem 0;
    margin-top: 0.5rem; /* Visual gap */
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.dropdown-content a {
    color: #d4d4d8; /* zinc-300 */
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 0.875rem; /* text-sm */
    transition: all 0.2s;
}

.dropdown-content a:hover {
    background-color: rgba(245, 158, 11, 0.1); /* amber-500/10 */
    color: #ffffff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Mobile Menu Styles */
#mobile-menu {
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

