/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #0a0a0f;
    color: #f3f4f6;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Custom Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Background Effects */
.glow-bg {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient Border */
.gradient-border {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.5), rgba(168, 85, 247, 0.5), rgba(236, 72, 153, 0.5));
    padding: 1px;
    border-radius: 16px;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(75, 85, 99, 0.4);
}

/* Input Glow Effect */
.input-glow:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}

/* Loading Spinner */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Utility Classes */

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.hidden { display: none; }
.grid { display: grid; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.top-6 { top: 1.5rem; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.left-1\/4 { left: 25%; }
.right-1\/4 { right: 25%; }
.top-1\/2 { top: 50%; }

/* Z-Index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Flexbox */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Grid */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.col-span-2 { grid-column: span 2 / span 2; }

.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Spacing */
.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-4 { margin-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Padding */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-24 { padding-top: 6rem; }

.pb-8 { padding-bottom: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-24 { padding-bottom: 6rem; }

.pl-4 { padding-left: 1rem; }
.pl-11 { padding-left: 2.75rem; }

.pr-4 { padding-right: 1rem; }

/* Sizing */
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-32 { width: 8rem; }
.w-64 { width: 16rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }

.w-3\/4 { width: 75%; }
.w-5\/6 { width: 83.333333%; }

.h-0\.5 { height: 0.125rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }

.max-w-sm { max-width: 24rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }

.min-w-\[160px\] { min-width: 160px; }

/* Typography */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.1em; }

.uppercase { text-transform: uppercase; }
.whitespace-nowrap { white-space: nowrap; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

.text-center { text-align: center; }
.text-left { text-align: left; }

/* Colors - Text */
.text-white { color: #ffffff; }
.text-black { color: #000000; }

.text-gray-100 { color: #f3f4f6; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }

.text-indigo-400 { color: #818cf8; }
.text-indigo-500 { color: #6366f1; }
.text-indigo-600 { color: #4f46e5; }

.text-purple-400 { color: #c084fc; }
.text-purple-500 { color: #a855f7; }

.text-pink-400 { color: #f472b6; }

.text-green-400 { color: #4ade80; }
.text-green-500 { color: #22c55e; }

.text-yellow-500 { color: #eab308; }

/* Colors - Background */
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }

.bg-gray-700 { background-color: #374151; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }
.bg-gray-950 { background-color: #0a0a0f; }

.bg-indigo-500 { background-color: #6366f1; }
.bg-indigo-600 { background-color: #4f46e5; }

.bg-purple-500 { background-color: #a855f7; }
.bg-purple-600 { background-color: #9333ea; }

.bg-pink-500 { background-color: #ec4899; }

.bg-green-500 { background-color: #22c55e; }

.bg-red-500 { background-color: #ef4444; }
.bg-yellow-500 { background-color: #eab308; }

/* Translucent backgrounds */
.bg-gray-800\/50 { background-color: rgba(31, 41, 55, 0.5); }
.bg-gray-800\/80 { background-color: rgba(31, 41, 55, 0.8); }
.bg-gray-900\/80 { background-color: rgba(17, 24, 39, 0.8); }
.bg-gray-900\/95 { background-color: rgba(17, 24, 39, 0.95); }

.bg-indigo-500\/10 { background-color: rgba(99, 102, 241, 0.1); }
.bg-indigo-500\/20 { background-color: rgba(99, 102, 241, 0.2); }
.bg-indigo-500\/30 { background-color: rgba(99, 102, 241, 0.3); }
.bg-indigo-600\/20 { background-color: rgba(79, 70, 229, 0.2); }

.bg-purple-500\/10 { background-color: rgba(168, 85, 247, 0.1); }
.bg-purple-500\/20 { background-color: rgba(168, 85, 247, 0.2); }
.bg-purple-500\/30 { background-color: rgba(168, 85, 247, 0.3); }
.bg-purple-600\/20 { background-color: rgba(147, 51, 234, 0.2); }

.bg-pink-500\/10 { background-color: rgba(236, 72, 153, 0.1); }
.bg-pink-500\/20 { background-color: rgba(236, 72, 153, 0.2); }

.bg-green-500\/10 { background-color: rgba(34, 197, 94, 0.1); }
.bg-green-500\/20 { background-color: rgba(34, 197, 94, 0.2); }
.bg-green-500\/30 { background-color: rgba(34, 197, 94, 0.3); }
.bg-green-500\/50 { background-color: rgba(34, 197, 94, 0.5); }

/* Borders */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-l-2 { border-left-width: 2px; }
.border-r-2 { border-right-width: 2px; }
.border-b-2 { border-bottom-width: 2px; }

.border-gray-700 { border-color: #374151; }
.border-gray-800 { border-color: #1f2937; }

.border-indigo-500 { border-color: #6366f1; }
.border-indigo-500\/20 { border-color: rgba(99, 102, 241, 0.2); }
.border-indigo-500\/30 { border-color: rgba(99, 102, 241, 0.3); }

.border-purple-500 { border-color: #a855f7; }
.border-purple-500\/30 { border-color: rgba(168, 85, 247, 0.3); }

.border-pink-500 { border-color: #ec4899; }

.border-green-500 { border-color: #22c55e; }
.border-green-500\/30 { border-color: rgba(34, 197, 94, 0.3); }
.border-green-500\/50 { border-color: rgba(34, 197, 94, 0.5); }

/* Border Radius */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.rounded-tl-lg { border-top-left-radius: 0.5rem; }
.rounded-tr-lg { border-top-right-radius: 0.5rem; }
.rounded-bl-lg { border-bottom-left-radius: 0.5rem; }
.rounded-br-lg { border-bottom-right-radius: 0.5rem; }

.rounded-\[14px\] { border-radius: 14px; }
.rounded-\[22px\] { border-radius: 22px; }

/* Effects */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.shadow-indigo-500\/20 { box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.2); }
.shadow-indigo-500\/25 { box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.25); }
.shadow-purple-500\/20 { box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.2); }
.shadow-pink-500\/20 { box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.2); }
.shadow-green-500\/20 { box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.2); }
.shadow-green-500\/50 { box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.5); }

.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); }

.blur-3xl { filter: blur(64px); }

.backdrop-blur { backdrop-filter: blur(8px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }

/* Animations */
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-pulse-slow { animation: pulse-slow 4s ease-in-out infinite; }
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }

/* Hover states */
.hover\:text-white:hover { color: #ffffff; }
.hover\:bg-gray-100:hover { background-color: #f3f4f4; }
.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.active\:scale-100:active { transform: scale(1); }
.bg-white { background-color: #ffffff; }
.text-gray-900 { color: #111827; }
.border-gray-300 { border-color: #d1d5db; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:border-white:hover { border-color: #ffffff; }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.border-0 { border-width: 0; }
.items-stretch { align-items: stretch; }
.w-0\.5 { width: 0.125rem; }
.h-16 { height: 4rem; }
.rounded-full { border-radius: 9999px; }
.justify-center { justify-content: center; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }

/* Focus states */
.focus\:outline-none:focus { outline: none; }
.focus\:border-indigo-500:focus { border-color: #6366f1; }

/* Transitions */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }

.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* Transform */
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-y-1\/2 { transform: translateY(50%); }
.translate-x-1\/2 { transform: translateX(50%); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.rotate-2 { transform: rotate(2deg); }
.hover\:rotate-0:hover { transform: rotate(0deg); }
.scale-100 { transform: scale(1); }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-40 { opacity: 0.4; }
.opacity-80 { opacity: 0.8; }

/* Pointer Events */
.pointer-events-none { pointer-events: none; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Responsive Breakpoints */
@media (min-width: 640px) {
    .sm\:flex { display: flex; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:hidden { display: none; }
    
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
    
    .sm\:pt-20 { padding-top: 5rem; }
    .sm\:pb-10 { padding-bottom: 2.5rem; }
    
    .sm\:text-2xl { font-size: 1.5rem; }
    .sm\:text-3xl { font-size: 1.875rem; }
    .sm\:text-4xl { font-size: 2.25rem; }
    
    .sm\:max-w-none { max-width: none; }
    .sm\:w-auto { width: auto; }
    
    .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    
    .sm\:gap-4 { gap: 1rem; }
}

@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:grid { display: grid; }
    
    .md\:flex-row { flex-direction: row; }
    
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    
    .md\:p-12 { padding: 3rem; }
    .md\:p-16 { padding: 4rem; }
    
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .md\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
    
    .md\:pt-20 { padding-top: 5rem; }
    .md\:pb-10 { padding-bottom: 2.5rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-7xl { font-size: 4.5rem; }
    
    .md\:space-y-0 > * + * { margin-top: 0; }
    .md\:space-x-8 > * + * { margin-left: 2rem; }
}

@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:pt-20 { padding-top: 5rem; }
    .lg\:pb-10 { padding-bottom: 2.5rem; }
}

/* Print styles */
@media print {
    .no-print { display: none !important; }
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Navigation specific */
#navbar {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}

/* Mobile menu */
#mobileMenu {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(75, 85, 99, 0.4);
}

/* Form elements */
input[type="url"],
input[type="email"] {
    font-family: inherit;
    font-size: 1rem;
}

input[type="url"]::placeholder,
input[type="email"]::placeholder {
    color: #6b7280;
}

/* Button reset */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Image handling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Modal specific styles */
#resultModal, #verificationModal {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#resultModal.hidden, #verificationModal.hidden {
    display: none !important;
}

#resultModal:not(.hidden), #verificationModal:not(.hidden) {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Loading animation for verification progress */
@keyframes loading-bar {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0%); }
    100% { transform: translateX(200%); }
}

#waitingProgress {
    animation: loading-bar 2s ease-in-out infinite;
}

/* Code display styling */
#verificationCode {
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

/* Animation keyframes */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.animate-\[shimmer_2s_infinite\] {
    animation: shimmer 2s infinite;
}

/* Fix for backdrop blur in Firefox */
@supports not (backdrop-filter: blur(12px)) {
    .glass-card {
        background: rgba(31, 41, 55, 0.95);
    }
    
    #navbar {
        background: rgba(10, 10, 15, 0.98);
    }
}

/* Gradient backgrounds for sections */
.bg-gradient-to-b {
    background: linear-gradient(to bottom, transparent, rgba(79, 70, 229, 0.05), transparent);
}