/* Custom styles for MBTI Mentor AI - Premium Theme */

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --gold-color: #d4af37;
    --silver-color: #c0c0c0;
    --premium-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 100%);
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
    --premium-text: #f5f5f5;
    --premium-bg: #0a0a0a;
}

/* Radio button animation */
.radio-dot {
    transition: all 0.3s ease;
}

/* Premium gradient backgrounds */
.bg-gradient-primary {
    background: var(--premium-gradient);
}

/* Hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Premium loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--secondary-color);
    border-top: 3px solid var(--gold-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Premium MBTI type badge */
.mbti-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gold-gradient);
    color: var(--primary-color);
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* Progress bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Premium body styles */
body {
    background: var(--premium-bg);
    color: var(--premium-text);
}

/* Premium card styles - Light Mode (Luxury Day Theme) */
.premium-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.95) 30%,
        rgba(255, 255, 255, 0.98) 70%,
        rgba(243, 244, 246, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 6px;
    box-shadow: 0 3px 8px -2px rgba(0, 0, 0, 0.05), 
                0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.08), 
                0 3px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Premium card styles - Dark Mode */
.dark .premium-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* Premium button styles - Light Mode */
.premium-button {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
    color: #1a1a2e;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3),
                0 4px 12px rgba(212, 175, 55, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4),
                0 6px 16px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #ffd700 100%);
}

/* Premium button styles - Dark Mode */
.dark .premium-button {
    background: var(--gold-gradient);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.dark .premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

/* Premium accent button */
.premium-accent-button {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.3);
}

.premium-accent-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 69, 96, 0.4);
}
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    transition: width 0.3s ease;
}

/* Premium card width enforcement - 800px max */
.premium-card {
    width: 100% !important;
    max-width: 800px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    flex: none !important;
    display: block !important;
}

/* Override Tailwind defaults */
.premium-card,
div.premium-card {
    width: 100% !important;
}

/* Mobile responsive override */
@media (max-width: 768px) {
    .premium-card {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }
}

/* Responsive text */
@media (max-width: 768px) {
    .text-4xl {
        font-size: 2.5rem;
    }
    
    .text-6xl {
        font-size: 3rem;
    }
    
    .premium-card {
        width: 100% !important;
        max-width: none !important;
    }
}

/* Focus states */
input:focus, select:focus, button:focus {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
}

/* Custom button styles */
.btn-primary {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* AI indicator */
.ai-indicator {
    position: relative;
    display: inline-block;
}

.ai-indicator::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Card styles */
.category-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: #3B82F6;
    transform: translateY(-3px);
}

/* Typography */
.text-gradient {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Day mode hero section styling */
.hero-section {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.98) 50%,
        rgba(255, 255, 255, 0.95) 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08),
                0 15px 35px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: subtle-pulse 8s ease-in-out infinite;
}

/* Dark mode hero section */
.dark .hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dark .hero-section::before {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

@keyframes subtle-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.05) rotate(180deg); opacity: 0.1; }
}

/* Day Mode Background - Luxury Light Theme */
.day-mode-bg {
    background: linear-gradient(135deg, 
        #f8fafc 0%,
        #e2e8f0 15%,
        #ffffff 30%,
        #f1f5f9 45%,
        #e2e8f0 60%,
        #ffffff 75%,
        #f8fafc 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: day-gradient-shift 20s ease infinite;
    position: relative;
}

.day-mode-bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 40%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.day-mode-bg::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.3) 49%, rgba(255, 255, 255, 0.3) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0.1) 51%, transparent 52%);
    background-size: 200px 200px;
    animation: day-pattern-move 30s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes day-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes day-pattern-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(200px, 200px); }
}

/* Night Mode Background - Original Dark Theme */
.night-mode-bg {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: night-gradient-shift 25s ease infinite;
    position: relative;
}

.night-mode-bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

@keyframes night-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Day Mode Navigation */
.day-nav {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.98) 50%,
        rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

/* Night Mode Navigation */
.dark .night-nav {
    background: rgba(26, 26, 46, 0.95) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: #f5f5f5;
}

/* Force dark background in night mode */
html.dark nav {
    background: rgba(26, 26, 46, 0.95) !important;
}

/* Override Tailwind classes in dark mode */
html.dark .day-nav {
    background: rgba(26, 26, 46, 0.95) !important;
}

/* Force white text in dark mode navigation */
.dark .night-nav span,
.dark .night-nav select,
.dark .night-nav option {
    color: #ffffff !important;
}

.dark nav span,
.dark nav select {
    color: #ffffff !important;
}

.dark .text-gray-600 {
    color: #ffffff !important;
}

html.dark span,
html.dark select {
    color: #ffffff !important;
}

/* Day mode icon and button fixes */
body.day-mode-bg .fas {
    color: #1e293b !important;
}

body.day-mode-bg .text-gold {
    color: #d4af37 !important;
}

body.day-mode-bg button {
    background-color: #ffffff !important;
    border: 1px solid #d1d5db !important;
}

body.day-mode-bg select {
    background-color: #ffffff !important;
    color: #1e293b !important;
}

/* Night mode icon and button fixes */
body.night-mode-bg .fas {
    color: #d4af37 !important;
}

body.night-mode-bg .text-primary {
    color: #1e293b !important;
}

body.night-mode-bg .bg-secondary {
    background-color: rgba(26, 26, 46, 0.8) !important;
}

/* Test page specific fixes */
/* Day mode checkbox borders */
body.day-mode-bg input[type="radio"] {
    border: 3px solid #d4af37 !important;
    border-width: 3px !important;
}

body.day-mode-bg input[type="radio"]:checked {
    border: 3px solid #d4af37 !important;
    background-color: #d4af37 !important;
}

/* Night mode question numbers */
body.night-mode-bg .question-number {
    color: #1e293b !important;
    background-color: #d4af37 !important;
}

body.night-mode-bg .question-number span {
    color: #1e293b !important;
}

/* Night mode question text */
body.night-mode-bg .question-text {
    color: #f5f5f5 !important;
}

/* Test intro page fixes */
body.night-mode-bg .step-number {
    color: #1e293b !important;
    background-color: #d4af37 !important;
}

body.night-mode-bg .step-title {
    color: #f5f5f5 !important;
}

/* Night mode fixes for test intro page */
body.night-mode-bg .step-number {
    color: #1e293b !important;
}

body.night-mode-bg .step-title {
    color: #1e293b !important;
}

/* Additional fixes for index page */
body.day-mode-bg .text-gray-900 {
    color: #1e293b !important;
}

body.day-mode-bg .text-gray-700 {
    color: #374151 !important;
}

body.day-mode-bg .bg-gray-200 {
    background-color: #ffffff !important;
}

body.day-mode-bg .border-gray-300 {
    border-color: #d1d5db !important;
}

/* Navigation brain icon fix */
body.day-mode-bg .text-gold {
    color: #d4af37 !important;
}

body.night-mode-bg .text-gold {
    color: #d4af37 !important;
}

/* Language dropdown background fix */
body.day-mode-bg select option {
    background-color: #ffffff !important;
    color: #1e293b !important;
}

body.night-mode-bg select option {
    background-color: rgba(26, 26, 46, 0.95) !important;
    color: #ffffff !important;
}

/* Globe icon fix */
body.day-mode-bg .fas.fa-globe {
    color: #d4af37 !important;
}

/* Navigation AI text fix */
body.night-mode-bg .nav-ai-text {
    color: #1e293b !important;
}

/* Index page icon fixes */
body.night-mode-bg .fas.fa-user-cog {
    color: #1e293b !important;
}

/* Test page category icon fixes */
body.night-mode-bg .fas.fa-graduation-cap {
    color: #d4af37 !important;
}

/* Day mode button text fix */
body.day-mode-bg .bg-secondary {
    color: #d4af37 !important;
}

/* Test intro page navigation fixes */
body.day-mode-bg .test-intro-nav {
    display: none !important;
}

body.night-mode-bg .test-intro-nav {
    display: none !important;
}

/* Day Mode Content Area */
.day-mode-bg .premium-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Day Mode Icon visibility fix */
body.day-mode-bg .text-primary {
    color: #1a1a2e !important;
}

body.day-mode-bg .category-icon {
    color: #1a1a2e !important;
}

body.day-mode-bg .fas {
    color: #1a1a2e !important;
}

/* Universal styling for all languages - Navigation */
body.day-mode-bg nav {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 50%, rgba(255, 255, 255, 0.95) 100%) !important;
}

body.night-mode-bg nav {
    background: rgba(26, 26, 46, 0.95) !important;
}

/* Universal styling for all languages - AI badge */
body.day-mode-bg .bg-gradient-to-r.from-gold.to-yellow-400,
body.night-mode-bg .bg-gradient-to-r.from-gold.to-yellow-400 {
    color: #1e293b !important;
}

/* Universal styling for all languages - Brain icon */
body.day-mode-bg .fa-brain,
body.night-mode-bg .fa-brain {
    color: #d4af37 !important;
}

/* Universal styling for all languages - Globe icon */
body.day-mode-bg .fa-globe,
body.night-mode-bg .fa-globe {
    color: #d4af37 !important;
}

/* Universal styling for all languages - Theme toggle button */
body.day-mode-bg .fa-sun {
    color: #f59e0b !important;
}

body.night-mode-bg .fa-moon {
    color: #93c5fd !important;
}

/* Universal styling for all languages - Language dropdown */
body.day-mode-bg select {
    background-color: #ffffff !important;
    color: #1e293b !important;
    border-color: #d1d5db !important;
}

body.night-mode-bg select {
    background-color: #1a1a2e !important;
    color: #ffffff !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
}

body.day-mode-bg select option {
    background-color: #ffffff !important;
    color: #1e293b !important;
}

body.night-mode-bg select option {
    background-color: #1a1a2e !important;
    color: #ffffff !important;
}

/* Universal styling for all languages - Main text */
body.day-mode-bg .text-gray-900 {
    color: #1e293b !important;
}

body.night-mode-bg .text-white {
    color: #ffffff !important;
}

/* Universal styling for all languages - MBTI type badge */
body.day-mode-bg .text-primary {
    color: #1a1a2e !important;
}

body.night-mode-bg .text-gold {
    color: #d4af37 !important;
}

/* Universal styling for all languages - Premium buttons */
body.day-mode-bg .premium-button {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%) !important;
    color: #ffffff !important;
}

body.night-mode-bg .premium-button {
    background: linear-gradient(135deg, #d4af37 0%, #f6e05e 100%) !important;
    color: #1a1a2e !important;
}

/* Universal styling for all languages - Secondary buttons */
body.day-mode-bg .bg-secondary {
    background-color: #374151 !important;
    color: #d4af37 !important;
}

body.night-mode-bg .bg-secondary {
    background-color: #1a1a2e !important;
    color: #d4af37 !important;
}

/* Universal styling for all languages - Footer */
body.day-mode-bg footer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 50%, rgba(255, 255, 255, 0.95) 100%) !important;
}

body.night-mode-bg footer {
    background: rgba(26, 26, 46, 0.95) !important;
}

body.day-mode-bg .premium-card .fas {
    color: #1a1a2e !important;
}

body.day-mode-bg .category-card .fas {
    color: #1a1a2e !important;
}

/* Night Mode Icon colors */
body.night-mode-bg .text-primary {
    color: #d4af37 !important;
}

body.night-mode-bg .category-icon {
    color: #d4af37 !important;
}

body.night-mode-bg .fas {
    color: #d4af37 !important;
}

body.night-mode-bg .premium-card .fas {
    color: #d4af37 !important;
}

body.night-mode-bg .category-card .fas {
    color: #d4af37 !important;
}

/* Day Mode Content Area */
.day-mode-bg main {
    background: transparent;
    position: relative;
    z-index: 1;
}

/* Enhanced Day Mode Cards */
.day-mode-bg .premium-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 250, 252, 0.95) 30%,
        rgba(255, 255, 255, 0.98) 70%,
        rgba(243, 244, 246, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 15px 35px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(212, 175, 55, 0.1);
}

/* Day Mode Text Styling */
.day-mode-bg {
    color: #374151;
}

.day-mode-bg h1, .day-mode-bg h2, .day-mode-bg h3, .day-mode-bg h4, .day-mode-bg h5, .day-mode-bg h6 {
    color: #1f2937;
}

.day-mode-bg p, .day-mode-bg span {
    color: #4b5563;
}

/* Override dark mode styles in day mode */
.day-mode-bg .text-light {
    color: #1f2937 !important;
}

.day-mode-bg .text-gray-300 {
    color: #6b7280 !important;
}

/* Day Mode Button Styling */
.day-mode-bg .premium-button {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
    color: #1a1a2e;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.day-mode-bg .premium-button:hover {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #ffd700 100%);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

/* Day Mode CTA Section */
.day-cta {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(255, 255, 255, 0.95) 30%,
        rgba(248, 250, 252, 0.98) 70%,
        rgba(212, 175, 55, 0.15) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #374151 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.day-cta h2 {
    color: #1f2937 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.day-cta p {
    color: #4b5563 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Night Mode CTA Section */
.night-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #e94560 100%);
}

/* Scrollbar Styling */
/* Day Mode Scrollbar */
.day-mode-bg ::-webkit-scrollbar {
    width: 8px;
}

.day-mode-bg ::-webkit-scrollbar-track {
    background: rgba(243, 244, 246, 0.5);
    border-radius: 10px;
}

.day-mode-bg ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.day-mode-bg ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffd700, #d4af37);
}

/* Night Mode Scrollbar */
.night-mode-bg ::-webkit-scrollbar {
    width: 8px;
}

.night-mode-bg ::-webkit-scrollbar-track {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 10px;
}

.night-mode-bg ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 10px;
    border: 2px solid rgba(26, 26, 46, 0.2);
}

.night-mode-bg ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffd700, #d4af37);
}

/* Form elements */
.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #3B82F6;
    outline: none;
}

/* Animation delays for staggered effects */
.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}
