/* ===== CSS VARIABLES ===== */
:root {
  --bg: #0a0a0a;
  --text: #e8e1d4;
  --accent: #d4af37;
  --accent-bright: #f4c842;
  --header: #111;
  --card: #1a1a1a;
  --card-hover: #222;
  --shadow: rgba(212, 175, 55, 0.15);
  --gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    --accent: #ccc; /* new neutral accent */
  --accent-bright: #eee;
  --shadow: rgba(255, 255, 255, 0.1);
}

body.light-mode {
  --bg: #faf8f3;
  --text: #2c2c2c;
  --accent: #b8860b;
  --accent-bright: #d4af37;
  --header: #fff;
  --card: #fff;
  --card-hover: #f5f5f5;
  --shadow: rgba(184, 134, 11, 0.2);
  --gradient: linear-gradient(135deg, #faf8f3 0%, #f0f0f0 50%, #fff 100%);
}

/* ===== RESET & BASE STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  background: var(--gradient);
  background-attachment: fixed;
  
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 4rem;
  opacity: 0;
  animation: fadeIn 1.2s forwards ease-in-out;
  transition: all 0.4s ease;

}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 25%),
    radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.05) 0%, transparent 25%);
  pointer-events: none;
  z-index: -1;
}
.youtube-link,.tiktok-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--accent);
  font-weight: bold;
}

.tiktok-link:hover {
  text-decoration: underline;
}

.youtube-logo, .tiktok-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes imageLoad {
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

#live::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

#live > * {
  position: relative;
  z-index: 1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.05em;
}

h2 {
  font-size: 2.5rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px var(--shadow);
}

h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent);
  margin: 1rem auto;
  border-radius: 2px;
}

/* ===== LINKS ===== */
a {
  color: var(--accent);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

a:hover {
  color: white;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* ===== HEADER ===== */
header {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--accent);
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  animation: shimmer 3s infinite;
}

header h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0;
  color: var(--accent);
  text-shadow: 0 0 20px var(--shadow);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

/* ===== NAVIGATION ===== */
nav {
  background: #111;
  border-bottom: 1px solid #222;
}

nav a {
  color: #ddd;
  transition: color 0.3s ease, background 0.3s ease;
}

nav a:hover {
  color: #fff;
  background: #222;
}
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(34, 34, 34, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--accent);
}

nav a {
  color: #f0f0f0;;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: left 0.3s ease;
  z-index: -1;
}

nav a:hover::before {
  left: 0;
}

nav a:hover {
  background: rgba(255, 215, 0, 0.1); /* Subtle gold tint */
  color: #ffd700; /* Soft gold text */
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
}

/* ===== MODE TOGGLE ===== */
.toggle-mode {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: var(--card);
  border: 2px solid var(--accent);
  padding: 0.75rem;
  color: var(--accent);
  cursor: pointer;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 200;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.toggle-mode:hover {
  transform: rotate(180deg) scale(1.1);
  box-shadow: 0 6px 20px var(--shadow);
}

/* ===== SECTIONS ===== */
section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
  position: relative;
}

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border-radius: 15px;
  padding: 2rem;
  margin: 1.5rem 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transition: left 0.3s ease;
}

.card:hover::before {
  left: 0;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  background: var(--card-hover);
}
/* ABOUT SECTION LAYOUT */
.about-section {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.about-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  margin: 0 auto;
  width: 100%;
}

.about-text {
  flex: 1 1 300px;
  max-width: 600px;
  text-align: left;
}

/* POLAROID IMAGE STYLE */
.polaroid {
  background: #fff;
  padding: 1rem 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.polaroid:hover {
  transform: rotate(-1deg) scale(1.02);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.polaroid img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.polaroid-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #333;
  font-family: 'Libre Baskerville', serif;
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
  .about-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    text-align: left;
    max-width: 100%;
  }
}

/* ===== IMAGES ===== */
img {
  opacity: 0;
  animation: imageLoad 0.6s ease forwards;
}

.extra-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  margin: 2rem auto;
}

.extra-img img {
  width: 50%;
  max-width: 2500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  filter: brightness(0.9);
}

.extra-img img:hover {
  transform: scale(1.02);
  filter: brightness(1);
  box-shadow: 0 15px 40px var(--shadow);
}

/* ===== GIGS SECTION ===== */
.gig-setlist-container,
.gigs-setlist-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.gig,
.gigs {
  flex: 1 1 300px;
  min-width: 280px;
}

.gigs ul {
  list-style: none;
  padding: 0;
}

.gigs li {
  background: var(--card);
  margin: 1rem 0;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 5px solid var(--accent);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.gigs li::before {
  content: "♪";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.gigs li:hover {
  background: var(--accent);
  color: #000;
  transform: translateX(10px);
}

.gigs li:hover::before {
  opacity: 1;
  transform: translateY(-50%) rotate(360deg);
}

/* ===== SETLIST SECTION ===== */
.setlist {
  flex: 1 1 300px;
  min-width: 280px;
}

.setlist img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.setlist-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.setlist-image-wrapper img {
  max-width: 100%;
  border-radius: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.setlist-image-wrapper img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px var(--shadow);
}

.setlist-image-wrapper figcaption,
.setlist figcaption {
  margin-top: 1rem;
  font-style: italic;
  color: var(--accent);
  text-align: center;
  font-size: 1rem;
}
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.extra-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.extra-img {
  flex: 1 1 300px;
  max-width: 400px;
}

.contact-content {
  flex: 2 1 400px;
}

/* Optional tweaks for the form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.input-row input {
  flex: 1;
  min-width: 150px;
}
/* ===== LIVE SECTION ===== */
.gigs-setlist-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.card {
  flex: 1 1 300px;
  min-width: 280px;
  background: var(--card);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
/* Reuse shared .card styling */
.live.card {
  flex: 1 1 300px;
  min-width: 280px;
  padding: 1.5rem;
  background: var(--card);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

/* Audio track blocks */
.track {
  margin-bottom: 1.5rem;
  background: #222;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.track:hover {
  background: #2e2e2e;
}

.track h3 {
  margin: 0 0 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}

/* Audio styling */
audio {
  width: 100%;
  outline: none;
  margin-top: 0.5rem;
}
#live {
  background: var(--card);
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem auto;
  max-width: 900px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.track {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.track:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

.track h3 {
  color: var(--accent);
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.track audio,
audio {
  width: 100%;
  border-radius: 8px;
  outline: 0;
  filter: sepia(0.3) hue-rotate(30deg);
}

/* ===== SOCIAL SECTION ===== */
.social {
  text-align: center;
  margin: 3rem auto;
  padding: 2rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 15px;
  border: 1px solid var(--accent);
}

.tiktok-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1rem 2.5rem 1rem 2rem;
  border: 2px solid var(--accent);
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: transparent;
}

.tiktok-link i {
  font-size: 1.6rem;
  transition: color 0.4s ease;
}

.tiktok-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.tiktok-link:hover::before {
  width: 400px;
  height: 400px;
  opacity: 0;
}

.tiktok-link:hover {
  color: white;
  transform: scale(1.07);
  box-shadow: 0 0 12px var(--accent), 0 0 25px var(--accent);
}

.tiktok-link:hover i {
  color: white;
}

.tiktok-link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  box-shadow: inset 0 0 0 2px var(--accent);
  z-index: -1;
  pointer-events: none;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--card);
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem auto;
  max-width: 600px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.input-row input {
  flex: 1;
  min-width: 200px;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--shadow);
  transform: translateY(-2px);
}

.contact-form button {
  padding: 1rem 2rem;
  background: var(--accent);
  border: 0;
  border-radius: 30px;
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-form button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-form button:hover::before {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.confirmation-message {
  color: var(--accent);
  font-weight: bold;
  text-align: center;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  border: 1px solid var(--accent);
  margin-top: 1rem;
  display: none;
  animation: fadeIn 0.5s ease;
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 3rem auto;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 2px solid var(--accent);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  filter: grayscale(0.3) contrast(1.1);
}

/* ===== LIGHT MODE OVERRIDES ===== */
body.light-mode .toggle-mode {
  color: var(--text);
}

body.light-mode .card,
body.light-mode .contact-form {
  background: var(--card);
  color: var(--text);
}
.map-section {
  padding: 2rem;
  border-radius: 12px;
  background: var(--card);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}

.map-section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.map-section .highlight {
  color: var(--accent);
}

.map-intro {
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.info-card {
  flex: 1 1 300px;
  background: var(--card);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.setlist-image-wrapper img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.setlist-image-wrapper figcaption {
  font-style: italic;
  font-size: 0.9rem;
  color: #666;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.extra-img img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.input-row input {
  flex: 1;
  min-width: 120px;
}

@media (max-width: 768px) {
  .info-cards {
    flex-direction: column;
  }

  .info-card {
    width: 100%;
  }
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  section {
    padding: 2rem 1rem;
  }
  
  header {
    padding: 2rem 1rem;
  }
  
  .input-row {
    flex-direction: column;
  }
  
  .input-row input {
    min-width: auto;
  }
  
  nav {
    padding: 1rem;
    gap: 0.5rem;
    flex-direction: column;
    align-items: center;
  }
  
  nav a {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .gigs-setlist-wrapper,
  .gig-setlist-container {
    flex-direction: column;
  }
}

.learn-section {
  padding: 2rem;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.video-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 12px var(--shadow);
  text-align: center;
}

.video-card h3 {
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

video {
  width: 100%;
  border-radius: 0.5rem;
}
.learn-section {
  padding: 2rem;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.video-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 12px var(--shadow);
  text-align: center;
}

.video-card h3 {
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

video {
  width: 100%;
  border-radius: 0.5rem;
}

.learn-intro {
  margin-top: 2rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.video-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 12px var(--shadow);
  text-align: center;
}

.video-card video {
  width: 100%;
  border-radius: 0.5rem;
}

body.dark-mode {
  --bg-color: #121212;
  --text-color: #f5f5f5;
  --card-bg: #1e1e1e;
  --link-color: #1db954; /* or any accent color */
}

body.dark-mode a {
  color: var(--link-color);
}

body.dark-mode .card {
  background: var(--card-bg);
  color: var(--text-color);
}

/* Light mode overrides */
body.light-mode {
  --bg-color: #ffffff;
  --text-color: #111111;
  --card-bg: #f9f9f9;
  --link-color: #1a73e8;
}
body.dark-mode {
  --bg-color: #111;
  --text-color: #f2f2f2;
  --card-bg: #222;
  --header-bg: linear-gradient(to right, #111, #333);
  --header-text: #f2f2f2;
  --btn-bg: #333;
  --btn-text: #fff;
  --btn-hover: #555;
}

body.light-mode a {
  color: var(--link-color);
}

body.light-mode .card {
  background: var(--card-bg);
  color: var(--text-color);
}

body.dark-mode {
  --bg-color: #111;
  --text-color: #f2f2f2;
  --card-bg: #222;
  --header-bg: linear-gradient(to right, #111, #333);
  --header-text: #f2f2f2;
  --btn-bg: #333;
  --btn-text: #fff;
  --btn-hover: #555;
}

body.light-mode {
  --bg-color: #f2f2f2;
  --text-color: #222;
  --card-bg: #fff;
  --header-bg: linear-gradient(to right, #1f1f1f, #444);
  --header-text: #fff;
  --btn-bg: #1f1f1f;
  --btn-text: #fff;
  --btn-hover: #444;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  transition: background 0.3s, color 0.3s;
}

.card, .gear-item {
  background: var(--card-bg);
  transition: background 0.3s, color 0.3s;
}