* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.5;
}

/* Global container for consistent centering */
section, header, footer, .hero, .profile, .retro-arcade {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
}

.bg-fallback {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.bg-fallback video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.ticker {
  background: linear-gradient(to right, #ff0000, #8b0000);
  padding: 0.5rem;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

header {
 padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 9;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  width: 160px;
}

nav input {
  padding: 0.5rem 1rem;
  border: 1px solid crimson;
  border-radius: 20px;
  background: #111;
  color: #fff;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #111;
  border: 1px solid crimson;
  padding: 1rem;
  list-style: none;
  top: 100%;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* === NAV BUTTONS (Match Titan Button Style) === */
.menu a {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background: #111;
  border: 2px solid red;
  box-shadow: 0 0 10px red;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: heartbeat 4s infinite ease-in-out;
}

/* Hover glow and pulse */
.menu a:hover {
  background: red;
  color: #000;
  box-shadow: 0 0 25px crimson, 0 0 50px red;
  transform: scale(1.05);
}

/* Shine sweep animation */
.menu a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  animation: shine 4s infinite linear;
}

.menu a:hover {
  color: crimson;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.modal-content {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid crimson;
  max-width: 400px;
  width: 90%;
}

.modal-close {
  float: right;
  cursor: pointer;
  font-size: 1.5rem;
}

#login-form, #register-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#login-form input, #register-form input {
  padding: 0.5rem;
  border: 1px solid crimson;
  background: #222;
  color: #fff;
  border-radius: 5px;
}

#login-form button, #register-form button {
  background: crimson;
  color: #000;
  border: none;
  padding: 0.5rem;
  border-radius: 20px;
  cursor: pointer;
}

.oauth {
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.oauth.google {
  background: #4285f4;
  color: #fff;
}

.oauth.discord {
  background: #5865f2;
  color: #fff;
}

.profile {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background: #111;
  border: 1px solid crimson;
  border-radius: 10px;
  text-align: center;
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
}

.neon {
  font-size: 2.5rem;
  text-shadow: 0 0 10px crimson, 0 0 20px red;
}

.cta, .play-btn, .view-all {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: crimson;
  color: #000;
  text-decoration: none;
  border-radius: 20px;
  margin-top: 1rem;
}

.carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.carousel-slide {
  display: none;
  text-align: center;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid crimson;
}

.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.game-card {
  background: #111;
  border: 1px solid crimson;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.game-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

#leaderboards table {
  max-width: 800px;
  margin: 2rem auto;
  border-collapse: collapse;
}

#leaderboards th, #leaderboards td {
  border: 1px solid crimson;
  padding: 0.5rem;
}

#tournaments, #quiz, #community, #donations {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

.tournament-chat, .forum, .chat, .ugc, .spotlight, .blog {
  background: #111;
  border: 1px solid crimson;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
}

.chat-box, .forum-posts {
  height: 150px;
  overflow-y: auto;
  background: #222;
  padding: 0.5rem;
  border-radius: 5px;
}

#community iframe {
  margin: 1rem auto;
  display: block;
  border: 1px solid crimson;
  border-radius: 10px;
}

.signup-btn, #quiz button, #community button {
  background: crimson;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
}

.register {
  max-width: 400px;
  margin: 2rem auto;
  padding: 1rem;
  background: #111;
  border: 1px solid crimson;
  border-radius: 10px;
}

.forum {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

.post {
  background: #222;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 5px;
}

footer {
  background: transparent;
  padding: 1rem;
  text-align: center;
}

footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

footer a {
  color: #fff;
  text-decoration: none;
}

/* ============================================= */
/* 🌅 Footer Styling + Daylight Glow */
/* ============================================= */
footer {
  color: var(--text-color);
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
  transition: color 0.5s, text-shadow 0.5s;
}

footer a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s, text-shadow 0.3s;
}

footer a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 10px var(--accent-color);
}

/* ============================================= */
/* 🌅 Footer Styling + Daylight Red Glow */
/* ============================================= */
footer {
  color: var(--text-color);
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
  transition: color 0.5s, text-shadow 0.5s;
}

footer p,
footer li,
footer a,
footer label,
footer select {
  color: var(--text-color);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}

footer a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 12px var(--accent-color), 0 0 25px crimson;
}

/* ☀️ Light Mode – Warm Red Glow (not pink) */
body.light-mode footer {
  color: #a00000; /* darker red base */
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.6), 0 0 20px rgba(255, 80, 80, 0.4);
}

body.light-mode footer p,
body.light-mode footer li,
body.light-mode footer a,
body.light-mode footer label,
body.light-mode footer select {
  color: #a00000;
  text-shadow: 0 0 10px rgba(255, 50, 50, 0.6), 0 0 25px rgba(255, 100, 100, 0.4);
}

body.light-mode footer a:hover {
  color: #ff0000;
  text-shadow: 0 0 15px rgba(255, 50, 50, 0.8), 0 0 35px rgba(255, 0, 0, 0.6);
}

/* 🌐 Language selector styling */
.language-selector-footer label,
.language-selector-footer select {
  color: var(--text-color);
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}

body.light-mode .language-selector-footer label,
body.light-mode .language-selector-footer select {
  color: #a00000;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  .menu {
    flex-direction: column;
    align-items: center;
  }
  .game-grid {
    grid-template-columns: 1fr;
  }
}
/* Profile */
.profile-header {
  text-align: center;
  margin-bottom: 2rem;
}
.profile-header .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid red;
  box-shadow: 0 0 15px red;
}
.vip-badge {
  background: gold;
  color: black;
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  margin-left: 10px;
  font-weight: bold;
  text-shadow: 0 0 5px #fff;
}

/* Additions to styles.css */
.retro-arcade {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 40px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    border: 2px solid var(--accent-neon);
    animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
    0% { border-color: var(--accent-neon); }
    50% { border-color: transparent; }
    100% { border-color: var(--accent-neon); }
}

.retro-arcade h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.retro-arcade h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

#platform-select {
    padding: 10px;
    background: var(--border);
    border: 2px solid var(--accent-crimson);
    color: var(--text-light);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    border-radius: 10px;
    margin-bottom: 30px;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

#platform-select:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--accent-neon);
}

.platform-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.platform-list li {
    margin: 15px 0;
}

.platform-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: color 0.3s, transform 0.3s;
    display: block;
    padding: 10px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-neon);
}

.platform-link:hover {
    color: var(--accent-neon);
    transform: translateX(10px);
    box-shadow: 0 0 10px var(--accent-neon);
}

.platform-link.active {
    color: var(--accent-neon);
    background: rgba(0, 255, 0, 0.2);
    border-color: var(--accent-crimson);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .retro-arcade h1 {
        font-size: 2.5rem;
    }

    #platform-select {
        width: 100%;
    }
}

/* === Unified Button Style (matches Discord button) === */
.cta, 
.play-btn, 
.view-all, 
.signup-btn, 
#donations .cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  background: #111;
  border: 2px solid red;
  box-shadow: 0 0 15px red;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  animation: heartbeat 4s infinite ease-in-out;
}

/* Hover effect */
.cta:hover, 
.play-btn:hover, 
.view-all:hover, 
.signup-btn:hover, 
#donations .cta:hover {
  background: red;
  color: #000;
  box-shadow: 0 0 25px crimson, 0 0 50px red;
  transform: scale(1.05);
}

/* Left-to-right shine animation */
.cta::before, 
.play-btn::before, 
.view-all::before, 
.signup-btn::before, 
#donations .cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  animation: shine 4s infinite linear;
}

/* Reuse animations (heartbeat + shine) */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px red, 0 0 20px crimson; }
  50% { transform: scale(1.03); box-shadow: 0 0 25px red, 0 0 40px crimson; }
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* === Fix: Restore Discord Join Button Style === */
#community .cta-btn {
  background: #111 !important;
  color: #fff !important;
  border: 2px solid red !important;
  box-shadow: 0 0 15px red !important;
}

#community .cta-btn:hover {
  background: red !important;
  color: #000 !important;
  box-shadow: 0 0 25px crimson, 0 0 50px red !important;
  transform: scale(1.05);
}

/* === Fix: Make Discord Join Button match all main buttons === */
.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  background: #111;
  border: 2px solid red;
  box-shadow: 0 0 15px red;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  animation: heartbeat 4s infinite ease-in-out;
}

/* Hover glow and pulse */
.cta-btn:hover {
  background: red;
  color: #000;
  box-shadow: 0 0 25px crimson, 0 0 50px red;
  transform: scale(1.05);
}

/* Shine sweep effect */
.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  animation: shine 4s infinite linear;
}

/* Use same animations as other buttons */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px red, 0 0 20px crimson; }
  50% { transform: scale(1.03); box-shadow: 0 0 25px red, 0 0 40px crimson; }
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* === COMMUNITY SECTION === */
.community {
  text-align: center;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.community h2 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 10px red, 0 0 20px crimson;
  margin-bottom: 1.5rem;
}

.community iframe {
  border: 2px solid red;
  border-radius: 12px;
  box-shadow: 0 0 20px red;
  margin: 1.5rem auto;
  display: block;
  width: 350px;
  height: 500px;
  animation: heartbeat 4s infinite ease-in-out;
}

/* === SOCIAL BUTTONS === */
.social-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* === BASE SOCIAL BUTTON === */
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  background: #111;
  border: 2px solid red;
  box-shadow: 0 0 15px red;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  animation: heartbeat 4s infinite ease-in-out;
}

/* Hover glow + pulse */
.social-btn:hover {
  background: red;
  color: #000;
  box-shadow: 0 0 25px crimson, 0 0 50px red;
  transform: scale(1.05);
}

/* Shine sweep effect */
.social-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  animation: shine 4s infinite linear;
}

/* === ICONS === */
.social-icon,
.discord-icon {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 5px red);
}

/* Specific brand hover colors (optional subtle tint) */
.discord-btn:hover { background: red; }
.youtube-btn:hover { background: red; }
.facebook-btn:hover { background: red; }
.google-btn:hover { background: red; }

/* Animations */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px red, 0 0 20px crimson; }
  50% { transform: scale(1.03); box-shadow: 0 0 25px red, 0 0 40px crimson; }
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .community iframe {
    width: 100%;
    height: 400px;
  }
  .social-btn {
    width: 100%;
    justify-content: center;
  }
}

/* === UNIVERSAL TITAN HEADERS === */
h2, h3 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 10px red, 0 0 20px crimson, 0 0 30px red;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  animation: titlePulse 4s infinite ease-in-out;
}

/* Optional: make main section titles (h2) slightly bigger */
h2 {
  font-size: 2rem;
}

/* Subtitles (h3) a bit smaller but still glow */
h3 {
  font-size: 1.5rem;
}

/* Subtle pulsing glow animation */
@keyframes titlePulse {
  0%, 100% { text-shadow: 0 0 10px red, 0 0 20px crimson, 0 0 30px red; }
  50% { text-shadow: 0 0 20px crimson, 0 0 40px red, 0 0 60px crimson; }
}

.language-selector select,
.language-selector-footer select {
  background: #111;
  color: #fff;
  border: 2px solid red;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 0 10px red;
}

.language-selector select:hover,
.language-selector-footer select:hover {
  background: red;
  color: #000;
  box-shadow: 0 0 25px crimson, 0 0 50px red;
}

.countdown {
  margin-top: 2rem;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 15px red;
}

#countdown-timer {
  font-size: 2rem;
  margin-top: 0.5rem;
  font-weight: bold;
  color: crimson;
  text-shadow: 0 0 20px red, 0 0 40px crimson;
  animation: heartbeat 2s infinite ease-in-out;
}

.news-container {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 2rem;
}

.news-card {
  background: #111;
  border: 2px solid red;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 0 15px red;
  transition: 0.3s;
  text-align: left;
}

.news-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px crimson, 0 0 50px red;
}

.news-card h3 {
  color: crimson;
  margin-bottom: 0.5rem;
}

.news-card p {
  color: #ddd;
}

.news-card .date {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* ============================================= */
/* 🌗 LIGHT / DARK MODE SYSTEM */
/* ============================================= */
:root {
  --bg-color: #000;
  --text-color: #fff;
  --accent-color: red;
  --card-bg: rgba(255,255,255,0.05);
}

body.light-mode {
  --bg-color: #1a1a2e; /* deep twilight blue */
  --text-color: #fefefe;
  --accent-color: #ff5555;
  --card-bg: rgba(255,255,255,0.08);
}

/* Base cosmic background */
body {
  background: radial-gradient(circle at 50% 20%, #111 0%, #000 70%);
  color: var(--text-color);
  transition: background 1s ease, color 0.5s ease;
}

/* Soft daylight nebula for light mode */
body.light-mode {
  background: radial-gradient(circle at 50% 30%, #30475e 0%, #1a1a2e 60%, #000 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Text & Button coloring */
h1, h2, h3, p, a, .play-btn, .social-btn, .cta, .view-all {
  color: var(--text-color);
}

.play-btn, .cta, .social-btn {
  border-color: var(--accent-color);
}

/* Button toggle */
button#theme-toggle {
  background: none;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 8px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.2rem;
}
button#theme-toggle:hover {
  background: var(--accent-color);
  color: var(--bg-color);
  box-shadow: 0 0 10px var(--accent-color);
}

/* ============================================= */
/* ☀️ Better Visibility in Light Mode */
/* ============================================= */
body.light-mode .play-btn,
body.light-mode .social-btn,
body.light-mode .cta,
body.light-mode .view-all,
body.light-mode button {
  background-color: var(--accent-color);
  color: var(--bg-color);
  border: 1px solid var(--accent-color);
  box-shadow: 0 0 10px rgba(255, 100, 100, 0.4);
}

body.light-mode .play-btn:hover,
body.light-mode .social-btn:hover,
body.light-mode .cta:hover,
body.light-mode .view-all:hover,
body.light-mode button:hover {
  background-color: var(--bg-color);
  color: var(--accent-color);
  box-shadow: 0 0 15px var(--accent-color);
}

/* ============================================= */
/* 🌞 Subtle Solar Glow Overlay */
/* ============================================= */
body.light-mode::before {
  content: "";
  position: fixed;
  top: -10%;
  left: -10%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 180, 0.15), transparent 70%);
  animation: softSun 18s infinite ease-in-out alternate;
  z-index: -1;
}

@keyframes softSun {
  0% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.05); }
  100% { opacity: 0.2; transform: scale(1.1); }
}


/* ============================================= */
/* 🌞 Daylight Space Effect for Light Mode */
/* ============================================= */

/* Default dark cosmic look (you already have stars and glow) */
body {
  background: radial-gradient(circle at 50% 20%, #111 0%, #000 70%);
  transition: background 1s ease, color 0.5s ease;
}

/* Light mode gets a sunlit nebula gradient */
body.light-mode {
  background: linear-gradient(160deg, #e3f2fd 0%, #fff9c4 40%, #ffe0b2 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background 1s ease, color 0.5s ease;
}

/* Optional: gentle "solar shimmer" effect on buttons */
body.light-mode .play-btn,
body.light-mode .cta,
body.light-mode .social-btn {
  box-shadow: 0 0 20px rgba(255, 180, 0, 0.4);
}

/* 🔆 Subtle solar animation overlay */
body.light-mode::before {
  content: "";
  position: fixed;
  top: -20%;
  left: -10%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 150, 0.2), transparent 70%);
  animation: sunflare 15s infinite ease-in-out alternate;
  z-index: -1;
}

@keyframes sunflare {
  0% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.05); }
  100% { opacity: 0.25; transform: scale(1.1); }
}

/* ===== Remove bullets & improve donation list spacing ===== */
.donation-list {
  list-style: none;         /* 🚫 Removes bullets */
  padding-left: 0;          /* Removes left indent */
  margin: 1em 0;
}

.donation-list li {
  margin: 0.5em 0;          /* Adds vertical spacing */
  font-size: 1.1em;
  line-height: 1.6em;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.3); /* optional glow effect */
}

/* === 🔧 UNIVERSAL FIX: Remove all default list bullets and padding === */
ul {
  list-style: none;  /* 🚫 removes bullets globally */
  padding: 0;
  margin: 0;
}
