:root {
    --color-primary: #7B3FF2;
    --color-secondary: #2196F3;
    --color-dark: #0f172a;
    --color-dark-lighter: #1e293b;
    --bs-body-bg: #0f172a;
    --bs-body-color: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
}

a {
    text-decoration: none;
}

/* Utility Classes */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform: rotate(3deg);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
}

.text-gradient {
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bg-gradient-primary {
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 992px) {
    .section-padding {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

/* Animations */
.animation-delay-200 { animation-delay: 200ms; }
.animation-delay-400 { animation-delay: 400ms; }
.animation-delay-600 { animation-delay: 600ms; }

.animate-float {
    animation: float 6s ease-in-out infinite;
}
.animate-pulse-slow {
    animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-dark);
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Navbar specifics */
.nav-link {
    color: #cbd5e1 !important; /* text-gray-300 */
    transition: color 0.3s ease;
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: #fff !important;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.5rem; /* px-2 equivalent adjustment */
    right: 0.5rem;
    height: 2px;
    background-color: #a855f7; /* purple-500 */
    border-radius: 9999px;
}

/* Button specifics */
.btn-primary-custom {
    background-color: white;
    color: #7c3aed; /* purple-600 */
    font-weight: 700;
    border: none;
}
.btn-primary-custom:hover {
    box-shadow: 0 0 20px rgba(123, 63, 242, 0.5);
    background-color: #f8fafc;
    color: #7c3aed;
}

.btn-gradient-custom {
    background: linear-gradient(to right, #7c3aed, #2563eb); /* purple-600 to blue-600 */
    color: white;
    border: none;
    white-space: nowrap;
}
.btn-gradient-custom:hover {
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.5);
    color: white;
    opacity: 0.95;
}

.btn-outline-custom {
    border: 1px solid rgba(168, 85, 247, 0.5); /* purple-500/50 */
    color: #c084fc; /* purple-400 */
    background: transparent;
}
.btn-outline-custom:hover {
    background-color: rgba(168, 85, 247, 0.1);
    color: #c084fc;
}

/* Base Button Styles from React Component */
.btn {
    transition: all 0.3s ease;
}

/* Background Utils */
.bg-dark-custom { background-color: var(--color-dark); }
.text-purple-400 { color: #c084fc !important; }
.text-purple-600 { color: #9333ea !important; }
.text-purple-300 { color: #d8b4fe !important; }
.text-blue-400 { color: #60a5fa !important; }
.text-green-400 { color: #4ade80 !important; }
.text-slate-900 { color: #0f172a !important; }
.text-slate-600 { color: #475569 !important; }
.text-gray-300 { color: #cbd5e1 !important; }
.text-gray-400 { color: #9ca3af !important; }

.border-purple { border-color: #9333ea !important; }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1) !important; }
.text-light-gray { color: #e2e8f0; }

.form-control {
    padding-block: 12px;
}