@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Kanit:wght@300;400;700&display=swap');

/* Base Styles */
body {
    font-family: 'Kanit', sans-serif;
    padding-top: 70px;
}

.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}

.font-kanit {
    font-family: 'Kanit', sans-serif;
}

/* Navbar Styles */
/* Add this to fix the navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Add this for the video hero */
.video-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -25%);
    object-fit: cover;
    object-position: top center;
    z-index: 0;
}
@media (max-width: 768px) {
  .video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: top center;
    z-index: 0;
}
  
}
/* .video-hero video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: top center;
    z-index: 0;
} */

.video-hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 70px; /* To account for navbar */
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ef4444;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    background-image: url('../images/tech-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00ffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    10% { clip: rect(112px, 9999px, 76px, 0); }
    20% { clip: rect(85px, 9999px, 77px, 0); }
    30% { clip: rect(27px, 9999px, 97px, 0); }
    40% { clip: rect(64px, 9999px, 98px, 0); }
    50% { clip: rect(61px, 9999px, 85px, 0); }
    60% { clip: rect(99px, 9999px, 114px, 0); }
    70% { clip: rect(34px, 9999px, 115px, 0); }
    80% { clip: rect(98px, 9999px, 129px, 0); }
    90% { clip: rect(43px, 9999px, 96px, 0); }
    100% { clip: rect(82px, 9999px, 64px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 119px, 0); }
    10% { clip: rect(25px, 9999px, 145px, 0); }
    20% { clip: rect(129px, 9999px, 102px, 0); }
    30% { clip: rect(79px, 9999px, 136px, 0); }
    40% { clip: rect(128px, 9999px, 53px, 0); }
    50% { clip: rect(30px, 9999px, 133px, 0); }
    60% { clip: rect(68px, 9999px, 124px, 0); }
    70% { clip: rect(99px, 9999px, 114px, 0); }
    80% { clip: rect(91px, 9999px, 52px, 0); }
    90% { clip: rect(17px, 9999px, 41px, 0); }
    100% { clip: rect(33px, 9999px, 67px, 0); }
}

/* Feature Cards */
.feature-card:hover {
    box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.3);
}

/* Quick Links */
.quick-link:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Toggle */
#theme-toggle-dark-icon, #theme-toggle-light-icon {
    display: none;
}

.dark #theme-toggle-dark-icon {
    display: block;
}

.light #theme-toggle-light-icon {
    display: block;
}

/* Pixel Art Icons */
.pixel-icon {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

.theme-switch {
  --toggle-size: 10px;
  /* the size is adjusted using font-size,
     this is not transform scale,
     so you can choose any size */
  --container-width: 5.625em;
  --container-height: 2.5em;
  --container-radius: 6.25em;
  /* radius 0 - minecraft mode :) */
  --container-light-bg: #3D7EAE;
  --container-night-bg: #1D1F2C;
  --circle-container-diameter: 3.375em;
  --sun-moon-diameter: 2.125em;
  --sun-bg: #ECCA2F;
  --moon-bg: #C4C9D1;
  --spot-color: #959DB1;
  --circle-container-offset: calc((var(--circle-container-diameter) - var(--container-height)) / 2 * -1);
  --stars-color: #fff;
  --clouds-color: #F3FDFF;
  --back-clouds-color: #AACADF;
  --transition: .5s cubic-bezier(0, -0.02, 0.4, 1.25);
  --circle-transition: .3s cubic-bezier(0, -0.02, 0.35, 1.17);
}

.theme-switch, .theme-switch *, .theme-switch *::before, .theme-switch *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: var(--toggle-size);
}

.theme-switch__container {
  width: var(--container-width);
  height: var(--container-height);
  background-color: var(--container-light-bg);
  border-radius: var(--container-radius);
  overflow: hidden;
  cursor: pointer;
  -webkit-box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
  box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.theme-switch__container::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  -webkit-box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
  border-radius: var(--container-radius)
}

.theme-switch__checkbox {
  display: none;
}

.theme-switch__circle-container {
  width: var(--circle-container-diameter);
  height: var(--circle-container-diameter);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: var(--circle-container-offset);
  top: var(--circle-container-offset);
  border-radius: var(--container-radius);
  -webkit-box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: var(--circle-transition);
  -o-transition: var(--circle-transition);
  transition: var(--circle-transition);
  pointer-events: none;
}

.theme-switch__sun-moon-container {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  width: var(--sun-moon-diameter);
  height: var(--sun-moon-diameter);
  margin: auto;
  border-radius: var(--container-radius);
  background-color: var(--sun-bg);
  -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
  -webkit-filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
  overflow: hidden;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.theme-switch__moon {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  background-color: var(--moon-bg);
  border-radius: inherit;
  -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.theme-switch__spot {
  position: absolute;
  top: 0.75em;
  left: 0.312em;
  width: 0.75em;
  height: 0.75em;
  border-radius: var(--container-radius);
  background-color: var(--spot-color);
  -webkit-box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
}

.theme-switch__spot:nth-of-type(2) {
  width: 0.375em;
  height: 0.375em;
  top: 0.937em;
  left: 1.375em;
}

.theme-switch__spot:nth-last-of-type(3) {
  width: 0.25em;
  height: 0.25em;
  top: 0.312em;
  left: 0.812em;
}

.theme-switch__clouds {
  width: 1.25em;
  height: 1.25em;
  background-color: var(--clouds-color);
  border-radius: var(--container-radius);
  position: absolute;
  bottom: -0.625em;
  left: 0.312em;
  -webkit-box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
  box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
  -webkit-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  -o-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
}

.theme-switch__stars-container {
  position: absolute;
  color: var(--stars-color);
  top: -100%;
  left: 0.312em;
  width: 2.75em;
  height: auto;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

/* actions */

.theme-switch__checkbox:checked + .theme-switch__container {
  background-color: var(--container-night-bg);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container {
  left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter));
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container:hover {
  left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter) - 0.187em)
}

.theme-switch__circle-container:hover {
  left: calc(var(--circle-container-offset) + 0.187em);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__moon {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__clouds {
  bottom: -4.062em;
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__stars-container {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}/* Comprehensive Theme CSS Support - Fixed to preserve text colors */
/* Comprehensive Theme CSS Support - Fixed Version */

/* Root variables for consistent theming */
:root {
    --light-bg: #ffffff;
    --light-secondary: #f3f4f6;
    --dark-bg: #0f172a;
    --dark-secondary: #1e293b;
    --dark-card: #334155;
    --text-light: #ffffff;
    --text-dark: #1f2937;
    --text-gray-light: #d1d5db;
    --text-gray-dark: #6b7280;
}

/* Ensure smooth transitions for all theme-related elements */
body, 
.navbar, 
.mobile-menu, 
section, 
.feature-card, 
.quick-link, 
.fact-card {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Override Tailwind's dark mode classes with our custom colors */
.dark {
    color-scheme: dark;
}

/* Body and HTML background - FIXED */
html.dark {
    background-color: var(--dark-bg) !important;
}

body.dark {
    background-color: var(--dark-bg) !important;
    color: var(--text-light) !important;
}

/* Navbar theming - FIXED */
.navbar {
    background-color: var(--light-bg);
    backdrop-filter: blur(10px);
}

.dark .navbar {
    background-color: var(--dark-bg) !important;
}

/* Mobile menu theming */
.mobile-menu {
    background-color: var(--light-bg);
}

.dark .mobile-menu {
    background-color: var(--dark-secondary) !important;
}

/* Section background overrides - FIXED */
.dark .bg-white {
    background-color: var(--dark-secondary) !important;
}

.dark .bg-gray-100 {
    background-color: var(--dark-bg) !important;
}

.dark .bg-gray-800 {
    background-color: var(--dark-secondary) !important;
}

.dark .bg-gray-900 {
    background-color: var(--dark-bg) !important;
}

/* Feature cards and interactive elements - FIXED */
.dark .feature-card {
    background-color: var(--dark-card) !important;
    color: var(--text-light) !important;
}

.dark .quick-link {
    background-color: var(--dark-card) !important;
    color: var(--text-light) !important;
}

.dark .fact-card {
    background-color: var(--dark-card) !important;
    color: var(--text-light) !important;
}

/* TEXT COLOR FIXES - This is the main issue */
.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 {
    color: var(--text-light) !important;
}

.dark p {
    color: var(--text-gray-light) !important;
}

.dark .text-gray-800 {
    color: var(--text-light) !important;
}

.dark .text-gray-600 {
    color: var(--text-gray-light) !important;
}

.dark .text-gray-500 {
    color: var(--text-gray-light) !important;
}

.dark .text-gray-200 {
    color: var(--text-light) !important;
}

.dark .text-gray-400 {
    color: var(--text-gray-light) !important;
}

.dark .text-black {
    color: var(--text-light) !important;
}

/* Font weight classes */
.dark .font-semibold,
.dark .font-bold {
    color: var(--text-light) !important;
}

/* Mobile menu links for visibility */
.dark .mobile-menu a {
    color: var(--text-light) !important;
}

.dark .mobile-menu a:hover {
    background-color: var(--dark-card) !important;
}

/* Navigation links - only for visibility on dark backgrounds */
.dark .nav-link:not(.text-red-500) {
    color: var(--text-gray-light) !important;
}

/* Hero section gradient override */
.dark .hero,
.dark section.bg-gradient-to-r {
    background: linear-gradient(to right, var(--dark-bg), var(--dark-secondary)) !important;
}

/* Instagram badge and special elements */
.dark .absolute.-bottom-6.-right-6 {
    background-color: var(--dark-card) !important;
    color: var(--text-light) !important;
}

/* Ensure proper contrast for buttons */
.dark .bg-gray-900:not(.bg-red-500) {
    background-color: var(--dark-card) !important;
}

/* Footer - keep darker than other sections */
.dark footer.bg-gray-800 {
    background-color: #111827 !important;
}

.dark footer.bg-gray-900 {
    background-color: #0f172a !important;
}

/* Preserve video hero content styling */
.video-hero-content h1,
.video-hero-content p {
    color: white !important;
}

/* Card hover effects in dark mode */
.dark .feature-card:hover,
.dark .quick-link:hover,
.dark .fact-card:hover {
    background-color: #475569 !important;
    transform: translateY(-4px);
}

/* Border and shadow adjustments for dark mode */
.dark .shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 
                0 4px 6px -2px rgba(0, 0, 0, 0.3) !important;
}

.dark .shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 
                0 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
}

.dark .shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 
                0 10px 10px -5px rgba(0, 0, 0, 0.3) !important;
}

/* Preserve colored text elements */
.dark .text-red-500 {
    color: #f87171 !important;
}

.dark .text-blue-500 {
    color: #60a5fa !important;
}

.dark .text-green-500 {
    color: #34d399 !important;
}

.dark .text-purple-500 {
    color: #a78bfa !important;
}

/* Border colors in dark mode */
.dark .border-red-500 {
    border-color: #ef4444 !important;
}

.dark .border-blue-500 {
    border-color: #3b82f6 !important;
}

.dark .border-green-500 {
    border-color: #10b981 !important;
}

.dark .border-purple-500 {
    border-color: #8b5cf6 !important;
}

/* Fix for elements that should transition properly */
.dark .feature-card,
.dark .quick-link {
    transition: all 0.3s ease !important;
}

/* Ensure all text inside cards is visible */
.dark .feature-card *,
.dark .quick-link *,
.dark .fact-card * {
    color: inherit !important;
}

.dark .feature-card h3,
.dark .quick-link h3,
.dark .fact-card h3 {
    color: var(--text-light) !important;
}

.dark .feature-card p,
.dark .quick-link p,
.dark .fact-card p {
    color: var(--text-gray-light) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dark .mobile-menu {
        background-color: var(--dark-secondary) !important;
        border-top: 1px solid var(--dark-card);
    }
    
    .dark .mobile-menu a {
        border-bottom: 1px solid var(--dark-card);
    }
}

/* Additional fixes for any missed elements */
.dark * {
    border-color: #374151 !important;
}

.dark input,
.dark textarea,
.dark select {
    background-color: var(--dark-card) !important;
    color: var(--text-light) !important;
    border-color: #4b5563 !important;
}

/* Fix for the theme switch to ensure it doesn't get affected */
.theme-switch,
.theme-switch * {
    color: inherit !important;
}
/* ADD THESE FIXES TO YOUR CSS FILE */

/* Fix for the white button hover issue */
.border-white.text-white:hover {
    background-color: white !important;
    color: #1f2937 !important; /* Dark gray text instead of gray-900 for better contrast */
    border-color: white !important;
}

/* Alternative: If you want different hover colors */
.border-white.text-white:hover.alternative {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-color: white !important;
    backdrop-filter: blur(10px);
}

/* Fix for music card hover in dark mode */
.dark .music-card li:hover {
    background-color: #4b5563 !important; /* gray-600 */
}

.dark .music-card li:hover h4 {
    color: white !important;
}

.dark .music-card li:hover p {
    color: #d1d5db !important; /* light gray */
}

/* Ensure music card text is always visible */
.music-card h4 {
    color: #1f2937; /* dark gray in light mode */
}

.dark .music-card h4 {
    color: white !important;
}

.music-card p {
    color: #6b7280; /* gray-500 in light mode */
}

.dark .music-card p {
    color: #d1d5db !important; /* gray-300 in dark mode */
}

/* Fix for music card background in dark mode */
.dark .music-card {
    background-color: var(--dark-card) !important;
}

/* Enhanced hover effects for better visibility */
.music-card li {
    transition: all 0.3s ease !important;
}

.music-card li:hover {
    background-color: #f3f4f6 !important; /* light gray in light mode */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dark .music-card li:hover {
    background-color: #4b5563 !important; /* gray-600 in dark mode */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Fix for play button visibility */
.music-card button {
    transition: all 0.3s ease;
}

.music-card li:hover button {
    transform: scale(1.1);
}

/* Additional safety for text visibility */
.dark .text-gray-800 {
    color: white !important;
}

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

.dark .font-semibold {
    color: white !important;
}
/* STEP 1: Add this at the VERY END of your CSS file with high specificity */

/* Fix for white button hover - HIGHEST SPECIFICITY */
a.border-2.border-white.text-white:hover,
a[href="vibe.html"]:hover {
    background-color: white !important;
    color: #1f2937 !important;
    border-color: white !important;
}

/* Fix for music card hover issues - HIGHEST SPECIFICITY */
.music-card li.flex.items-center:hover {
    background-color: #f3f4f6 !important;
}

.dark .music-card li.flex.items-center:hover {
    background-color: #475466 !important;
}

.dark .music-card li:hover h4.font-semibold {
    color: #ffffff !important;
}

.dark .music-card li:hover p.text-sm {
    color: #d1d5db !important;
}

/* Ensure all text in dark mode music cards is visible */
.dark .music-card h4,
.dark .music-card .font-semibold {
    color: #ffffff !important;
}

.dark .music-card p,
.dark .music-card .text-gray-600 {
    color: #d1d5db !important;
}

/* Force override any conflicting Tailwind classes */
.dark .music-card .text-gray-800 {
    color: #ffffff !important;
}

.dark .music-card .dark\:text-white {
    color: #ffffff !important;
}

.dark .music-card .dark\:text-gray-300 {
    color: #d1d5db !important;
}

/* Additional safety overrides */
.dark .bg-gray-700 {
    background-color: #374151 !important;
}

.dark .hover\:bg-gray-600:hover {
    background-color: #4b5563 !important;
}

/* Debug styles - these will help you see what's happening */
/* Remove these after testing */
.music-card li:hover {
    outline: 2px solid red !important;
}

.dark .music-card li:hover {
    outline: 2px solid blue !important;
}

a[href="vibe.html"]:hover {
    outline: 2px solid green !important;
}