/* FANZ Neon-Cyberpunk Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* State-of-the-art loading and accessibility styles */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--neon-cyan);
    color: var(--dark-bg);
    padding: 8px;
    z-index: 100000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Loading state styles - disabled pointer-events blocking to prevent interaction issues */
.loading {
    cursor: default;
}

/* Removed: .loading * { pointer-events: none; } - this was blocking all interactions */

/* Performance optimized animations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Footer-specific adaptive positioning styles */
.footer-sticky {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
}

.footer-sticky .main-content {
    flex: 1 0 auto !important;
}

.footer-sticky .footer {
    flex: 0 0 auto !important;
    margin-top: auto !important;
}

/* Fix checkbox interaction issues */
.form-check-input {
    pointer-events: auto !important;
    position: relative;
    z-index: 10 !important;
    cursor: pointer !important;
    margin-top: 0.25rem;
    margin-right: 0.75rem;
    width: 1.2em;
    height: 1.2em;
    background-color: transparent !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--neon-green) !important;
    border-color: var(--neon-green) !important;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5) !important;
}

.form-check-input:focus {
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3) !important;
    outline: none !important;
}

.form-check-input:hover {
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.2) !important;
}

.form-check-label {
    cursor: pointer !important;
    user-select: none;
    padding-left: 0.5rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.form-check {
    display: flex !important;
    align-items: flex-start !important;
    padding: 15px !important;
    margin-bottom: 15px !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    cursor: pointer !important;
}

.form-check:hover {
    border-color: var(--neon-cyan) !important;
    background: rgba(0, 255, 255, 0.05) !important;
}

.form-check:has(.form-check-input:checked) {
    border-color: var(--neon-green) !important;
    background: rgba(0, 255, 0, 0.05) !important;
}

/* Ensure labels are clickable */
.form-check-label * {
    pointer-events: none;
}

/* Enhanced focus styles for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 2px;
    border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #e0e0e0;
        --border-color: #ffffff;
    }
}

/* Touch-friendly interactive elements */
@media (pointer: coarse) {
    .btn, .nav-link, .dropdown-item {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Floating Navigation Hints Styles */
.floating-hints-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.floating-hint {
    position: absolute;
    max-width: 320px;
    background: linear-gradient(135deg, var(--card-bg), rgba(30, 30, 30, 0.95));
    border: 1px solid var(--neon-cyan);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1), 0 0 20px rgba(0, 255, 255, 0.05);
    backdrop-filter: none;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
    z-index: 10000;
}

.floating-hint.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.floating-hint.hiding {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
    transition: all 0.3s ease-out;
}

.floating-hint.dragging {
    transition: none;
    cursor: grabbing;
    z-index: 10001;
}

/* Positioning classes */
.floating-hint.top-left {
    top: 100px;
    left: 20px;
}

.floating-hint.top-right {
    top: 100px;
    right: 20px;
}

.floating-hint.bottom-left {
    bottom: 100px;
    left: 20px;
}

.floating-hint.bottom-right {
    bottom: 100px;
    right: 20px;
}

.floating-hint.top-center {
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.floating-hint.bottom-center {
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.floating-hint.show.top-center,
.floating-hint.show.bottom-center {
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Hint content */
.hint-content {
    padding: 16px;
    color: var(--text-primary);
}

.hint-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    cursor: move;
}

.hint-icon {
    color: var(--neon-cyan);
    font-size: 1.2em;
    text-shadow: 0 0 10px currentColor;
}

.hint-title {
    flex: 1;
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.hint-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.hint-close:hover {
    color: var(--neon-red);
    background: rgba(255, 51, 102, 0.1);
}

.hint-description {
    margin: 0 0 12px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.hint-action {
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-blue));
    border: none;
    color: var(--dark-bg);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hint-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.3);
}

.hint-action:active {
    transform: translateY(0);
}

/* Pulse animation */
.hint-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    background: linear-gradient(45deg, var(--neon-cyan), transparent, var(--neon-cyan));
    opacity: 0.3;
    animation: hint-pulse 3s infinite;
    z-index: -1;
}

@keyframes hint-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-hint {
        max-width: calc(100vw - 40px);
        left: 20px !important;
        right: 20px !important;
        transform: none !important;
    }
    
    .floating-hint.show {
        transform: none !important;
    }
    
    .floating-hint.top-center,
    .floating-hint.bottom-center,
    .floating-hint.top-left,
    .floating-hint.top-right,
    .floating-hint.bottom-left,
    .floating-hint.bottom-right {
        left: 20px;
        right: 20px;
        transform: none;
    }
    
    .hint-header {
        cursor: default;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .floating-hint {
        border-width: 2px;
        background: var(--background);
        box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
    }
    
    .hint-pulse {
        display: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .floating-hint {
        transition: opacity 0.3s ease;
        transform: none;
    }
    
    .floating-hint.show {
        transform: none;
    }
    
    .hint-pulse {
        animation: none;
    }
}

/* Contextual Color Contrast Classes */
.contrast-high {
    background-color: var(--high-contrast-bg);
    color: var(--high-contrast-text);
}

.contrast-medium {
    background-color: var(--medium-contrast-bg);
    color: var(--medium-contrast-text);
}

.contrast-low {
    background-color: var(--low-contrast-bg);
    color: var(--low-contrast-text);
}

.text-contrast-auto {
    color: var(--contrast-text-primary);
}

.bg-contrast-auto {
    background-color: var(--contrast-bg-primary);
}

/* Contextual readability improvements */
.card, .feature-card {
    background: var(--contrast-bg-secondary);
    color: var(--contrast-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-dark .nav-link {
    color: var(--contrast-text-secondary) !important;
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link:focus {
    color: var(--contrast-text-primary) !important;
}

.dropdown-menu-dark {
    background-color: var(--contrast-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.dropdown-item {
    color: var(--contrast-text-secondary);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--contrast-bg-tertiary);
    color: var(--contrast-text-primary);
}

/* Smooth Transition Animations */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, 
                box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.nav-link, .dropdown-item, .btn {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card, .feature-card, .cluster-preview {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.3s ease;
}

.btn {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
}

.btn:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* Hover animations for interactive elements */
.nav-link:hover {
    text-shadow: 0 0 8px currentColor;
    transform: translateY(-1px);
}

.dropdown-item:hover {
    transform: translateX(4px);
}

.social-link:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Page transition animations */
.main-content {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Loading state transitions - disabled blur to prevent interaction issues */
.loading {
    transition: opacity 0.3s ease;
    /* Removed blur and pointer-events: none to prevent blocking user interaction */
}

.page-loading {
    /* Use this class only for explicit loading overlays, not on body */
    filter: none;
    pointer-events: none;
}

/* Focus animations */
input:focus, textarea:focus, select:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(0, 221, 255, 0.2);
}

/* Neon glow animations */
.neon-text:hover, .neon-cyan:hover, .neon-pink:hover, 
.neon-green:hover, .neon-yellow:hover, .neon-blue:hover {
    text-shadow: 0 0 20px currentColor, 0 0 40px currentColor;
    filter: brightness(1.2);
}

:root {
  /* Primary Colors - Bright Professional Theme */
  --primary: #00a8ff;      /* Bright Blue */
  --secondary: #ff0066;    /* Bright Pink */
  --accent: #ffaa00;       /* Bright Orange */
  
  /* Bright professional colors */
  --neon-cyan: #00ddff;
  --neon-blue: #0099ff;
  --neon-pink: #ff0088;
  --neon-magenta: #ff00cc;
  --neon-yellow: #ffcc00;
  --neon-orange: #ff6600;
  --neon-green: #00cc66;
  --neon-purple: #aa00ff;
  --neon-red: #ff3366;
  
  /* Contextual Color Contrast System */
  --contrast-bg-primary: #000000;
  --contrast-text-primary: #ffffff;
  --contrast-bg-secondary: #1a1a1a;
  --contrast-text-secondary: #f5f5f5;
  --contrast-bg-tertiary: #2a2a2a;
  --contrast-text-tertiary: #e0e0e0;
  --contrast-bg-light: #f8f9fa;
  --contrast-text-light: #212529;
  --contrast-bg-medium: #6c757d;
  --contrast-text-medium: #ffffff;
  
  /* High contrast ratios for accessibility */
  --high-contrast-text: #ffffff;
  --high-contrast-bg: #000000;
  --medium-contrast-text: #e0e0e0;
  --medium-contrast-bg: #1a1a1a;
  --low-contrast-text: #b0b0b0;
  --low-contrast-bg: #2a2a2a;
  
  /* Background System */
  --background: #0a0a0a;
  --muted: #0a0a0a;
  --card-bg: rgba(10, 10, 10, 0.9);
  --glass-bg: rgba(30, 30, 30, 0.3);
  --glass-border: rgba(60, 60, 60, 0.4);
  --border-color: rgba(80, 80, 80, 0.3);
  
  /* Text Hierarchy - Enhanced Contrast */
  --foreground: #ffffff;
  --text-foreground: #ffffff;
  --muted-foreground: #b8b8c2;
  --text-primary: #ffffff;
  --text-secondary: #f0f0f0;
  --text-muted: #d0d0d0;
  
  /* Bright gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  --gradient-background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #252525 100%);
  --rainbow-gradient: linear-gradient(45deg, #00ddff, #00cc66, #ffcc00, #ff6600, #ff3366, #ff0088, #aa00ff, #0099ff);
  --banana-gradient: linear-gradient(180deg, #ffcc00, #ff8800, #ff4400);
  --logo-text-gradient: linear-gradient(45deg, #0099ff, #ff0088, #ff6600, #ff3366);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #0f0f0f 70%, #000000 100%) fixed;
  color: #ffffff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main content area layout */
.main-content {
  flex: 1;
  min-height: calc(100vh - 200px);
}

/* Essential Layout Classes */
.bg-gradient-to-br {
  background: linear-gradient(to bottom right, var(--background), var(--background), rgba(15, 15, 15, 0.7));
}

@keyframes subtle-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.9; }
}

/* Logo Reveal Animation */
@keyframes logoReveal {
  0% {
    transform: scale(0.3) rotate(-10deg);
    opacity: 0;
    filter: none;
  }
  50% {
    transform: scale(1.1) rotate(2deg);
    opacity: 0.8;
    filter: none;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    filter: none;
  }
}

/* CTA Button Pulse Animation */
@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.8), 0 0 50px rgba(255, 0, 102, 0.4);
  }
}

/* Enhanced Hover Effects */
@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 5px currentColor;
  }
  50% {
    text-shadow: 0 0 20px currentColor, 0 0 30px currentColor;
  }
}

/* Essential Classes - Neon Glow Effects */
.neon-glow {
  box-shadow: 
    0 0 2px currentColor;
  transition: all 0.3s ease;
}

.neon-glow:hover {
  filter: brightness(1.1);
}

/* Glassmorphism Effect */
.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Essential Interactive Classes */
.hover\:brightness-110:hover {
  filter: brightness(1.1);
}

.neon-text {
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}

.neon-pink { color: #ffffff; }
.neon-cyan { color: #ffffff; }
.neon-green { color: #ffffff; }
.neon-yellow { color: #ffffff; }
.neon-orange { color: #ffffff; }
.neon-purple { color: #ffffff; }
.neon-blue { color: #ffffff; }

/* Drip Animation */
.drip-effect {
  position: relative;
  overflow: hidden;
}

.drip-effect::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--banana-gradient);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: translateX(-50%);
  animation: drip 3s ease-in-out infinite;
}

@keyframes drip {
  0% {
    top: 100%;
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
  }
  10% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    top: calc(100% + 50px);
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
  }
}

/* Logo Styling */
.fanz-logo-img {
  height: 50px !important;
  width: auto !important;
  max-width: 180px !important;
  filter: drop-shadow(0 0 5px rgba(255, 255, 0, 0.3));
  transition: all 0.3s ease;
  display: inline-block !important;
}

.fanz-logo-img:hover {
  filter: drop-shadow(0 0 8px rgba(255, 255, 0, 0.5));
  transform: scale(1.05);
}

.fanz-text {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
  margin-left: 8px;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

/* Legacy logo styling for compatibility */
.fanz-logo {
  color: #ffffff;
  font-weight: bold;
  font-size: 2.5rem;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
}

.fanz-logo.dripping {
  animation: logo-glow 2s ease-in-out infinite alternate;
}

@keyframes logo-glow {
  0% { filter: brightness(1) drop-shadow(0 0 2px rgba(255, 255, 0, 0.2)); }
  100% { filter: brightness(1.05) drop-shadow(0 0 3px rgba(255, 255, 0, 0.3)); }
}

/* Hero Logo Styling */
.hero-logo-container {
  text-align: center;
}

.hero-fanz-logo {
  height: 120px;
}

/* Main Logo Styles with Animation */
.main-logo {
  height: 120px;
  max-width: 400px;
  width: auto;
  opacity: 0;
  animation: logoReveal 2s ease-out forwards;
  animation-delay: 0.5s;
  transition: all 0.3s ease;
}

.main-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.logo-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 0, 0.4));
  animation: hero-logo-pulse 3s ease-in-out infinite;
}

@keyframes hero-logo-pulse {
  0%, 100% { 
    filter: drop-shadow(0 0 8px rgba(255, 255, 0, 0.4));
    transform: scale(1);
  }
  50% { 
    filter: drop-shadow(0 0 15px rgba(255, 255, 0, 0.6));
    transform: scale(1.02);
  }
}

/* Logo-inspired Navigation */
.navbar {
  background: rgba(10, 10, 26, 0.95) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 2px solid transparent;
  border-image: var(--rainbow-gradient) 1;
  box-shadow: 0 2px 30px rgba(0, 212, 255, 0.3), 0 0 60px rgba(255, 0, 127, 0.1);
}

.navbar-brand {
  color: #ffffff !important;
  font-weight: bold;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}

.nav-link {
  color: #ffffff !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ffffff !important;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Logo-inspired Cards and Containers */
.card {
  background: rgba(26, 26, 46, 0.9) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(0, 212, 255, 0.3) !important;
  border-radius: 15px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: #ffffff !important;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.card:hover {
  border-color: var(--primary) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 212, 255, 0.4),
    0 0 60px rgba(255, 0, 127, 0.2);
  transform: translateY(-5px);
}

.card:hover::before {
  left: 100%;
}

.card-header {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink)) !important;
  border-bottom: 2px solid var(--neon-cyan) !important;
  color: #ffffff !important;
  font-weight: bold;
}

.card-body {
  color: #ffffff !important;
}

.card-body p, .card-body span, .card-body div {
  color: #ffffff !important;
}

.card-title {
  color: #ffffff !important;
  font-weight: 600;
}

.card-subtitle {
  color: #ffffff !important;
}

.card-text {
  color: #ffffff !important;
  line-height: 1.6;
  opacity: 0.9;
}

/* Logo-inspired Button Classes */
.btn {
  border-radius: 25px !important;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent !important;
}

.btn-neon-primary, .btn-primary {
  background: var(--logo-text-gradient) !important;
  border: 1px solid var(--primary) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  animation: ctaPulse 3s ease-in-out infinite;
}

.btn-neon-primary:hover, .btn-primary:hover {
  background: var(--rainbow-gradient) !important;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
  transform: translateY(-2px) scale(1.05);
  filter: brightness(1.2);
  animation: none;
}

/* Enhanced Navigation Hover Effects */
.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  animation: glow 1.5s ease-in-out infinite;
  transform: translateY(-2px);
}

/* Micro-interactions for engagement */
.role-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.role-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.role-btn:hover::before {
  left: 100%;
}

.role-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 168, 255, 0.3);
}

/* Age Verification Modal */
.age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: none;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.age-verification-modal.hidden {
  opacity: 0;
  visibility: hidden;
}

.age-verification-content {
  background: rgba(26, 26, 46, 0.95);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 168, 255, 0.3);
  animation: modalSlideIn 0.5s ease-out;
}

@keyframes modalSlideIn {
  0% {
    transform: scale(0.8) translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.verification-logo {
  height: 80px;
  margin-bottom: 20px;
  animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(0, 168, 255, 0.6));
  }
}

.verification-title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.verification-warning {
  color: var(--neon-orange);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.verification-text {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 15px;
}

.verification-requirements {
  text-align: left;
  color: #ffffff;
  margin: 20px 0;
  padding-left: 20px;
}

.verification-requirements li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.verification-buttons {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.verification-btn-yes {
  background: linear-gradient(45deg, var(--neon-green), var(--neon-blue)) !important;
  border: none !important;
  padding: 15px 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.verification-btn-yes:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 204, 102, 0.6);
}

.verification-btn-no {
  background: transparent !important;
  border: 2px solid var(--neon-red) !important;
  color: var(--neon-red) !important;
  padding: 15px 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.verification-btn-no:hover {
  background: var(--neon-red) !important;
  color: #ffffff !important;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 51, 102, 0.6);
}

.verification-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Featured Creators Section */
.featured-creators {
  margin: 60px 0;
}

.featured-creators h3 {
  background: var(--rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.creator-card {
  background: rgba(26, 26, 46, 0.9);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: none;
}

.creator-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 168, 255, 0.3);
}

.creator-preview {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.preview-placeholder {
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}

.preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.creator-card:hover .preview-overlay {
  transform: translateY(0);
}

.preview-text {
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.creator-info {
  padding: 20px;
}

.creator-name {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 10px;
  background: var(--logo-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.creator-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.creator-stats .stat {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.creator-stats .stat i {
  color: var(--primary);
}

.creator-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.creator-tags .tag {
  background: rgba(0, 168, 255, 0.2);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid rgba(0, 168, 255, 0.3);
}

/* Content Gallery Preview */
.content-gallery-preview {
  margin: 60px 0;
}

.content-gallery-preview h3 {
  background: linear-gradient(45deg, var(--neon-red), var(--neon-orange), var(--neon-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 0, 102, 0.4);
}

.media-placeholder {
  height: 100%;
  background: linear-gradient(135deg, #2a2a4a, #1a1a3a, #0a0a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  filter: none;
}

.media-placeholder.video {
  background: linear-gradient(135deg, #4a2a2a, #3a1a1a, #2a0a0a);
}

.media-placeholder.live {
  background: linear-gradient(135deg, #2a4a2a, #1a3a1a, #0a2a0a);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% {
    box-shadow: inset 0 0 20px rgba(0, 255, 0, 0.3);
  }
  50% {
    box-shadow: inset 0 0 40px rgba(0, 255, 0, 0.6);
  }
}

.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: none;
}

.blur-text {
  color: #ffffff;
  font-weight: bold;
  font-size: 0.8rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transform: rotate(-12deg);
}

.btn-neon-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--accent), var(--primary)) !important;
  border: 1px solid var(--secondary) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.btn-neon-secondary:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent)) !important;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-success {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan)) !important;
  border-color: #ffffff !important;
}

.btn-success:hover {
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
  transform: translateY(-2px);
}

.btn-warning {
  background: var(--banana-gradient) !important;
  border-color: #ffffff !important;
  color: var(--darker-bg) !important;
}

.btn-warning:hover {
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.5);
  transform: translateY(-2px);
}

.btn-danger {
  background: linear-gradient(135deg, #ff0000, #ff4444) !important;
  border-color: #ff0000 !important;
}

.btn-danger:hover {
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* Essential Text Hierarchy Classes */
.text-foreground {
  color: #ffffff;
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

/* Essential Accent Elements */
.bg-gradient-to-r {
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
}

.from-primary {
  --tw-gradient-from: var(--primary);
}

.via-secondary {
  --tw-gradient-via: var(--secondary);
}

.to-accent {
  --tw-gradient-to: var(--accent);
}

/* Logo-inspired Forms */
.form-control {
  background: rgba(26, 26, 46, 0.6) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(0, 212, 255, 0.3) !important;
  border-radius: 10px !important;
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(26, 26, 46, 0.8) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.5), 0 0 50px rgba(255, 0, 127, 0.2) !important;
  color: #ffffff !important;
}

.form-control::placeholder {
  color: #ffffff !important;
}

.form-label {
  color: var(--primary) !important;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
}

.form-check-input:checked {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}

/* Cluster Grid */
.cluster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.cluster-card {
  background: var(--glass-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cluster-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: rotate 3s linear infinite;
}

.cluster-card:hover::before {
  opacity: 0.1;
}

.cluster-card:hover {
  border-color: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

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

.cluster-logo {
  font-size: 3rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px currentColor);
}

.cluster-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.cluster-description {
  color: #ffffff;
  font-size: 0.9rem;
}

/* Dashboard Stats */
.stat-card {
  background: var(--glass-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(136, 0, 255, 0.3);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 10px var(--neon-yellow);
}

.stat-label {
  color: #ffffff;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-top: 10px;
}

/* Status Badges */
.status-badge {
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  border: 2px solid currentColor;
}

.status-pending {
  background: rgba(255, 136, 0, 0.2);
  color: #ffffff;
}

.status-approved {
  background: rgba(0, 255, 0, 0.2);
  color: #ffffff;
}

.status-denied {
  background: rgba(255, 0, 0, 0.2);
  color: #ff4444;
}

.status-needs-fix {
  background: rgba(255, 255, 0, 0.2);
  color: #ffffff;
}

/* Loading Animation */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--neon-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.loading-text {
  margin-top: 20px;
  color: #ffffff;
  font-weight: bold;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Alerts */
.alert {
  border-radius: 15px !important;
  border: 2px solid !important;
  font-weight: bold;
}

.alert-success {
  background: rgba(0, 255, 0, 0.1) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.alert-danger {
  background: rgba(255, 0, 0, 0.1) !important;
  border-color: #ff4444 !important;
  color: #ff4444 !important;
}

.alert-warning {
  background: rgba(255, 136, 0, 0.1) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.alert-info {
  background: rgba(0, 255, 255, 0.1) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* Tables - Enhanced Glassmorphism */
.table {
  background: var(--glass-bg) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #ffffff !important;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.table th {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink)) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: bold;
}

.table td {
  border-color: var(--border-color) !important;
  color: #ffffff !important;
}

.table-hover tbody tr:hover {
  background: rgba(0, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

/* Verification Progress */
.verification-progress {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  position: relative;
}

.verification-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border-color);
  z-index: 1;
}

.verification-step {
  background: var(--glass-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.verification-step.active {
  border-color: #ffffff;
  background: var(--neon-cyan);
  color: var(--dark-bg);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.verification-step.completed {
  border-color: #ffffff;
  background: var(--neon-green);
  color: var(--dark-bg);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

/* File Upload */
.file-upload-area {
  border: 3px dashed var(--border-color);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-area:hover,
.file-upload-area.dragover {
  border-color: #ffffff;
  background: rgba(0, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.file-upload-icon {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Logo-inspired Footer */
.footer {
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a1a 70%, #000000 100%);
  border-top: 3px solid transparent;
  border-image: var(--rainbow-gradient) 1;
  padding: 60px 0 30px;
  margin-top: 50px;
  color: #ffffff;
  box-shadow: 0 -10px 30px rgba(0, 212, 255, 0.1), 0 0 60px rgba(255, 0, 127, 0.05);
}

.footer a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--secondary);
  text-shadow: 0 0 15px var(--secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cluster-grid {
    grid-template-columns: 1fr;
  }
  
  .fanz-logo {
    font-size: 1.8rem;
  }
  
  .stat-value {
    font-size: 2rem;
  }
  
  .verification-progress {
    flex-wrap: wrap;
    gap: 10px;
  }
}

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

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--neon-cyan);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-pink);
}

/* Selection */
::selection {
  background: var(--neon-cyan);
  color: var(--dark-bg);
}

::-moz-selection {
  background: var(--neon-cyan);
  color: var(--dark-bg);
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus States */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

/* =========================
   ONBOARDING TOUR SYSTEM
   ========================= */

/* Onboarding overlay - darkens background */
.onboarding-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.onboarding-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Spotlight effect - highlights target element */
.onboarding-overlay .spotlight {
  position: absolute;
  background: transparent;
  border: 3px solid var(--neon-cyan);
  border-radius: 12px;
  box-shadow: 
    0 0 0 9999px rgba(0, 0, 0, 0.8),
    0 0 30px var(--neon-cyan),
    0 0 60px rgba(0, 255, 255, 0.4),
    inset 0 0 20px rgba(0, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  animation: spotlight-pulse 2s ease-in-out infinite;
}

@keyframes spotlight-pulse {
  0%, 100% {
    border-color: #ffffff;
    box-shadow: 
      0 0 0 9999px rgba(0, 0, 0, 0.8),
      0 0 30px var(--neon-cyan),
      0 0 60px rgba(0, 255, 255, 0.4),
      inset 0 0 20px rgba(0, 255, 255, 0.1);
  }
  50% {
    border-color: #ffffff;
    box-shadow: 
      0 0 0 9999px rgba(0, 0, 0, 0.8),
      0 0 40px var(--neon-pink),
      0 0 80px rgba(255, 0, 127, 0.5),
      inset 0 0 30px rgba(255, 0, 127, 0.15);
  }
}

/* Highlight effect for target elements */
.onboarding-highlight {
  position: relative;
  z-index: 9999 !important;
  animation: highlight-glow 2s ease-in-out infinite;
}

@keyframes highlight-glow {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 15px var(--neon-cyan));
  }
  50% {
    filter: brightness(1.2) drop-shadow(0 0 25px var(--neon-pink));
  }
}

/* Onboarding tooltip */
.onboarding-tooltip {
  position: fixed;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 2px solid var(--neon-cyan);
  border-radius: 16px;
  padding: 0;
  max-width: 380px;
  min-width: 300px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(0, 255, 255, 0.3),
    0 0 60px rgba(255, 0, 127, 0.2);
  font-family: 'Inter', sans-serif;
}

.onboarding-tooltip.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Tooltip positioning arrows */
.onboarding-tooltip::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 12px solid transparent;
}

.onboarding-tooltip.position-top::before {
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: #ffffff;
}

.onboarding-tooltip.position-bottom::before {
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-color: #ffffff;
}

.onboarding-tooltip.position-left::before {
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  border-left-color: #ffffff;
}

.onboarding-tooltip.position-right::before {
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  border-right-color: #ffffff;
}

/* Tooltip header */
.tooltip-header {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  padding: 16px 20px;
  border-radius: 14px 14px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tooltip-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.tooltip-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.tooltip-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Tooltip body */
.tooltip-body {
  padding: 20px;
}

.tooltip-text {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
  opacity: 0.95;
}

/* Progress indicator */
.tooltip-progress {
  margin: 16px 0;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: progress-glow 2s ease-in-out infinite;
}

@keyframes progress-glow {
  0%, 100% {
    box-shadow: 0 0 10px var(--neon-cyan);
  }
  50% {
    box-shadow: 0 0 20px var(--neon-pink);
  }
}

.step-counter {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Tooltip footer */
.tooltip-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 14px 14px;
}

.navigation-buttons {
  display: flex;
  gap: 10px;
}

.tooltip-footer .btn {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.tooltip-skip {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.tooltip-skip:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.tooltip-prev {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.tooltip-prev:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff !important;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.tooltip-prev:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.tooltip-next {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink)) !important;
  color: #ffffff;
  border-color: #ffffff !important;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.tooltip-next:hover {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan)) !important;
  transform: translateY(-1px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

/* Onboarding active state adjustments */
body.onboarding-active {
  overflow: hidden;
}

body.onboarding-active .onboarding-highlight {
  position: relative;
  z-index: 9999 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .onboarding-tooltip {
    max-width: calc(100vw - 40px);
    min-width: unset;
    margin: 0 20px;
  }
  
  .tooltip-footer {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .navigation-buttons {
    width: 100%;
    justify-content: space-between;
  }
  
  .tooltip-footer .btn {
    flex: 1;
    min-width: unset;
  }
}

/* Micro-interactions for onboarding elements */
.onboarding-tooltip {
  animation: tooltip-entrance 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes tooltip-entrance {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Button hover effects specific to onboarding */
.tooltip-footer .btn:hover {
  transform: translateY(-1px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tooltip-footer .btn:active {
  transform: translateY(0);
  transition: all 0.1s ease;
}

/* =========================
   SOCIAL MEDIA INTEGRATION
   ========================= */

/* Social Media Hub */
.social-media-hub {
  margin: 20px 0;
}

.social-media-hub .card-header {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink)) !important;
  border-bottom: 2px solid var(--neon-cyan) !important;
}

/* Social Platform Cards */
.social-platform-card {
  background: var(--glass-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 2px solid var(--glass-border);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.social-platform-card.connected {
  border-color: #ffffff;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 255, 127, 0.3);
}

.social-platform-card.disconnected {
  border-color: var(--glass-border);
  opacity: 0.8;
}

.social-platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 255, 255, 0.2);
}

.social-platform-card.connected:hover {
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 255, 127, 0.4);
}

/* Platform Header */
.platform-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.platform-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.social-platform-card:hover .platform-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px currentColor;
}

.platform-info h6 {
  color: #ffffff;
  margin: 0;
  font-weight: 600;
}

.connection-status {
  font-size: 0.85rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.connection-status .fa-check-circle {
  color: #ffffff !important;
}

.connection-status .fa-times-circle {
  color: #ffffff !important;
}

/* Platform Actions */
.platform-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.platform-actions .btn {
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.connect-btn {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue)) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.connect-btn:hover {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan)) !important;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
  transform: translateY(-2px);
}

.disconnect-btn {
  background: rgba(255, 68, 68, 0.2) !important;
  border-color: #ff4444 !important;
  color: #ff4444 !important;
}

.disconnect-btn:hover {
  background: rgba(255, 68, 68, 0.3) !important;
  box-shadow: 0 0 15px rgba(255, 68, 68, 0.3);
}

.sync-btn {
  background: rgba(255, 215, 0, 0.2) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.sync-btn:hover {
  background: rgba(255, 215, 0, 0.3) !important;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Account Stats */
.account-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.stat-item {
  text-align: center;
}

.stat-item small {
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1rem;
  text-shadow: 0 0 10px var(--neon-cyan);
}

.last-sync {
  text-align: center;
}

.last-sync small {
  color: #ffffff;
  font-size: 0.75rem;
}

/* Quick Actions Section */
.social-media-hub .card-body h6 {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Cross-Post Modal */
.modal-content {
  background: rgba(26, 26, 46, 0.95) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 2px solid var(--neon-cyan) !important;
  border-radius: 16px !important;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(0, 255, 255, 0.3);
}

.modal-header {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink)) !important;
  border-bottom: 2px solid var(--neon-cyan) !important;
  border-radius: 14px 14px 0 0 !important;
}

.modal-header .modal-title {
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.modal-body {
  color: #ffffff !important;
}

.platform-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-selection .form-check {
  margin: 0;
}

.platform-selection .form-check-label {
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.platform-selection .form-check-input:checked + .form-check-label {
  background: rgba(0, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.platform-selection .form-check-label:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Toast Notifications */
.toast-container {
  z-index: 10000;
}

.toast {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.text-bg-success {
  background: rgba(0, 255, 127, 0.9) !important;
  color: #ffffff !important;
}

.text-bg-danger {
  background: rgba(255, 68, 68, 0.9) !important;
  color: #ffffff !important;
}

.text-bg-info {
  background: rgba(0, 255, 255, 0.9) !important;
  color: #ffffff !important;
}

/* Social Integration Animations */
.social-platform-card {
  animation: card-entrance 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes card-entrance {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.platform-icon i {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-platform-card:hover .platform-icon i {
  animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px currentColor);
  }
  50% {
    filter: drop-shadow(0 0 15px currentColor) brightness(1.2);
  }
}

/* Responsive Design for Social Integration */
@media (max-width: 768px) {
  .social-platform-card {
    padding: 15px;
  }
  
  .platform-header {
    gap: 10px;
  }
  
  .platform-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .platform-actions {
    justify-content: center;
  }
  
  .platform-selection {
    flex-direction: column;
    gap: 10px;
  }
  
  .account-stats .row {
    text-align: center;
  }
}

/* Loading states for social buttons */
.btn .fa-spinner {
  animation: spin 1s linear infinite;
}

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

/* =========================
   AI DASHBOARD WIDGETS
   ========================= */

/* AI Dashboard Container */
.ai-dashboard {
  margin: 30px 0;
  padding: 20px;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ai-dashboard-header h4 {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.ai-controls {
  display: flex;
  gap: 10px;
}

/* AI Widgets Grid */
.ai-widgets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Individual AI Widget */
.ai-widget {
  background: var(--glass-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 2px solid var(--glass-border);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
}

.ai-widget.widget-loaded {
  opacity: 1;
  transform: translateY(0);
}

.ai-widget:hover {
  border-color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 255, 255, 0.3);
}

/* Widget Header */
.widget-header {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-header h6 {
  color: #ffffff;
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.ai-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 500;
}

.ai-status.active .fa-circle {
  animation: ai-pulse 2s ease-in-out infinite;
}

@keyframes ai-pulse {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 3px var(--neon-green));
  }
  50% {
    opacity: 0.6;
    filter: drop-shadow(0 0 8px var(--neon-green));
  }
}

.confidence-score, .update-time, .match-score, .prediction-accuracy, .performance-score {
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 500;
}

.revenue-trend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.revenue-trend.up {
  color: #ffffff;
}

.revenue-trend.down {
  color: #ff4444;
}

/* Widget Content */
.widget-content {
  padding: 20px;
  min-height: 120px;
  color: #ffffff;
}

/* AI Thinking Animation */
.ai-thinking {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100px;
  gap: 15px;
}

.ai-dots {
  display: flex;
  gap: 8px;
}

.ai-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-cyan);
  animation: ai-thinking 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px var(--neon-cyan);
}

.ai-dots span:nth-child(2) {
  animation-delay: 0.2s;
  background: var(--neon-pink);
  box-shadow: 0 0 10px var(--neon-pink);
}

.ai-dots span:nth-child(3) {
  animation-delay: 0.4s;
  background: var(--neon-yellow);
  box-shadow: 0 0 10px var(--neon-yellow);
}

@keyframes ai-thinking {
  0%, 60%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  30% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.ai-thinking p {
  color: #ffffff;
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

/* AI Recommendations */
.ai-recommendations {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recommendation-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 3px solid var(--neon-cyan);
  transition: all 0.2s ease;
}

.recommendation-item.high-priority {
  border-left-color: #ffffff;
}

.recommendation-item.medium-priority {
  border-left-color: #ffffff;
}

.recommendation-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.rec-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.rec-content h6 {
  margin: 0 0 4px 0;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.rec-content p {
  margin: 0;
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.4;
}

.rec-action .btn {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 15px;
}

.ai-insight {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: rgba(0, 255, 127, 0.1);
  border-radius: 8px;
  margin-top: 5px;
}

.ai-insight span {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ai-widgets-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .ai-dashboard {
    padding: 15px;
    margin: 20px 0;
  }
  
  .widget-content {
    padding: 15px;
  }
}

/* =========================
   MICRO-INTERACTIONS & ANIMATIONS
   ========================= */

/* Fade In Animation */
.fade-in-ready {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Ripple Effect */
@keyframes ripple-animation {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* Floating Labels */
.floating-label {
  position: absolute;
  left: 12px;
  top: 16px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  background: var(--background);
  padding: 0 4px;
  z-index: 2;
}

.floating-label.float {
  top: -8px;
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 600;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.1s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.custom-cursor.hover {
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 255, 0.1);
  border-color: #ffffff;
}

.custom-cursor.click {
  transform: translate(-50%, -50%) scale(0.8);
}

/* Enhanced Button Animations */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

/* Enhanced Card Animations */
.card, .ai-widget, .social-platform-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink), var(--neon-yellow));
  z-index: 1000;
  transition: width 0.1s ease;
}

/* Navigation Scroll Effect */
.navbar.scrolled {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(26, 26, 46, 0.95) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Keyframe Animations */
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -15px, 0);
  }
  70% {
    transform: translate3d(0, -7px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 10px currentColor;
  }
  50% {
    box-shadow: 0 0 30px currentColor;
  }
}

/* Loading Spinner Enhancements */
.fa-spinner {
  animation: spin 1s linear infinite;
}

/* Form Enhancement Animations */
input:focus, textarea:focus, select:focus {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  border-color: #ffffff;
}

/* Icon Hover Effects */
i, .fa-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

i:hover, .fa-icon:hover {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(1.2) drop-shadow(0 0 10px currentColor);
}

/* Image Hover Effects */
img {
  transition: all 0.3s ease;
}

img:hover {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}

/* Enhanced Tooltip Animations */
[data-bs-toggle="tooltip"]:hover,
[title]:hover {
  filter: brightness(1.1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

/* Stagger Animation for Lists */
.stagger-animation > * {
  opacity: 0;
  transform: translateY(20px);
  animation: stagger-fade-in 0.6s ease forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes stagger-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Animation */
::selection {
  background: rgba(0, 255, 255, 0.3);
  color: #ffffff;
}

/* Loading State Animations */
.loading-skeleton {
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.1) 25%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0.1) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Particle Effect Container */
.particle-container { display: none !important; visibility: hidden !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-cyan);
  border-radius: 50%;
  animation: float-particle 20s linear infinite;
  opacity: 0.3;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) translateX(200px) rotate(360deg);
    opacity: 0;
  }
}

/* Enhanced Focus Indicators */
*:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .custom-cursor {
    display: none;
  }
}

/* Mobile Touch Feedback */
@media (hover: none) and (pointer: coarse) {
  .btn:active {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0.98);
  }
  
  .card:active, .ai-widget:active, .social-platform-card:active {
    transform: scale(0.98);
  }
  
  .custom-cursor {
    display: none;
  }
}

/* Error State Animations */
.error-shake {
  animation: shake 0.5s ease;
}

.success-bounce {
  animation: bounce 0.5s ease;
}

.warning-pulse {
  animation: pulse 1s ease infinite;
}

/* Microinteraction Utilities */
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hover-glow:hover {
  box-shadow: 0 0 20px currentColor;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

.click-shrink:active {
  transform: scale(0.95);
}

/* Performance Optimizations */
.gpu-accelerated {
  transform: translateZ(0);
  will-change: transform;
}

/* Dark Mode Specific Enhancements */
@media (prefers-color-scheme: dark) {
  .floating-label {
    background: var(--background);
  }
  
  ::selection {
    background: rgba(0, 255, 255, 0.4);
  }
}
/* Particles completely disabled */ .particle, .particles, .floating-particles, .particle-container, [class*="particle"] { display: none \!important; visibility: hidden \!important; opacity: 0 \!important; }
