:root {
  --primary: #415a77;
  --bg-dark: #0d1b2a;
  --bg-card: #1b263b;
  --card-gradient: linear-gradient(135deg, #1b263b 0%, #415a77 100%);
  --gold: #ffd700;
  --silver: #c0c0c0;
  --bronze: #cd7f32;
  --shadow: 0 2px 16px #0004;
  --white: #fff;
}

html {
  overflow-x: hidden;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  padding-bottom: 4rem; /* Abstand zum unteren Bildschirmrand */
  background-color: #0d1b2a;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Full-page background gradient */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    #0d1b2a 0%,
    #1b263b 20%,
    #415a77 50%,
    #1b263b 80%,
    #0d1b2a 100%
  );
  z-index: -1;
  pointer-events: none;
}

/* Static Background */
/* body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/images/background_5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.12;
  z-index: -1;
} */

.header-logo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  text-align: center;
  padding: 1rem 0 1.2rem 0;
  /* background-image: url("assets/images/background_5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  /* border-radius: 0 0 2rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  background-color: rgba(27, 38, 59, 0.9); 
  background-blend-mode: overlay;*/
}

.header-logo img {
  max-height: 120px;
  width: auto;
  margin-bottom: 0.8rem;
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3))
      drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    transform: scale(1);
  }
  100% {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4))
      drop-shadow(0 0 25px rgba(255, 215, 0, 1.2));
    transform: scale(1.02);
  }
}

.header-social-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.header-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.header-social-links a:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.header-social-links svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

/* Top 3 Section */
.top3-section {
  padding-top: 0px;
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 2rem;
  padding: 2rem 1vw 0 1vw;
  position: relative;
  text-align: center;
}

.logo-top {
  object-fit: unset !important;
  width: auto !important;
}

.top3-section img {
  max-width: 300px;
  border-radius: 10px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  /* filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)); */
}

.top3-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  border-radius: 2rem;
  z-index: -1;
}

.top3-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
  letter-spacing: 2px;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #fff 50%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
  position: relative;
}

.top3-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #fff 50%,
    var(--gold) 100%
  );
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.top3-sub {
  text-align: center;
  font-size: 1.2rem;
  color: #e0e8ff;
  margin-bottom: 4rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.top3-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Begrenze maximale Spaltenanzahl */
@media (min-width: 1200px) {
  .top3-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
  }
}

.casino-card {
  background: var(--card-gradient);
  border-radius: 25px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 320px;
  padding: 1.5rem 1rem 1rem 1rem;
  text-align: center;
  margin: 0 auto 2rem auto;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(15px);
  overflow: hidden;
  height: fit-content;
  /* min-height: 500px; */
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.08),
    transparent
  );
  transition: left 0.7s;
  z-index: 1;
}

/* .casino-card:hover::before {
  left: 100%;
}

.casino-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(65, 90, 119, 0.3),
    0 0 30px rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
} */

.casino-card > * {
  position: relative;
  z-index: 2;
}

.casino-card.gold {
  z-index: 2;
  background: var(--card-gradient);
  position: relative;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.casino-card.gold::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, var(--gold), #fff, var(--gold));
  background-size: 200% 200%;
  border-radius: 2rem;
  z-index: -1;
  animation: gradientShift 4s ease infinite;
  opacity: 0.8;
}

/* .casino-card.gold:hover {
  transform: translateY(-12px) scale(1.08);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4),
    0 0 50px rgba(255, 215, 0, 0.2);
} */

.casino-card.silver {
  z-index: 1;
  background: var(--card-gradient);
  position: relative;
  box-shadow: 0 0 25px rgba(192, 192, 192, 0.2), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.casino-card.silver::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--silver), #fff, var(--silver));
  background-size: 200% 200%;
  border-radius: 2rem;
  z-index: -1;
  animation: gradientShift 5s ease infinite;
  opacity: 0.6;
}

/* .casino-card.silver:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 40px rgba(192, 192, 192, 0.3),
    0 0 40px rgba(192, 192, 192, 0.15);
} */

.casino-card.bronze {
  background: var(--card-gradient);
  position: relative;
  box-shadow: 0 0 25px rgba(205, 127, 50, 0.2), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.casino-card.bronze::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--bronze), #ffa500, var(--bronze));
  background-size: 200% 200%;
  border-radius: 2rem;
  z-index: -1;
  animation: gradientShift 6s ease infinite;
  opacity: 0.6;
}

/* .casino-card.bronze:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 40px rgba(205, 127, 50, 0.3),
    0 0 40px rgba(205, 127, 50, 0.15);
} */

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Platz Banner */
.casino-place-banner {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  z-index: 10;
}

.casino-place-banner::before {
  content: attr(data-place);
  position: absolute;
  top: 18px;
  right: -45px;
  background: var(--gold);
  color: #fff;
  padding: 10px 72px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.casino-card.gold .casino-place-banner::before {
  background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
  content: "1.";
}

.casino-card.silver .casino-place-banner::before {
  background: linear-gradient(135deg, var(--silver) 0%, #f0f0f0 100%);
  content: "2.";
  color: #333;
}

.casino-card.bronze .casino-place-banner::before {
  background: linear-gradient(135deg, var(--bronze) 0%, #ffa500 100%);
  content: "3.";
}

/* Exklusiver Banner (Links) - gespiegeltes Design des Place-Banners */
.casino-exclusive-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 10;
}

.casino-exclusive-banner::before {
  content: attr(data-text);
  position: absolute;
  top: 40px;
  width: 100px;
  left: -90px;
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: #fff;
  padding: 3px 100px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes exclusivePulse {
  0%,
  90% {
    transform: scale(1);
  }
  95% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes exclusiveGlow {
  0% {
    opacity: 0.5;
    filter: blur(2px);
  }
  100% {
    opacity: 0.8;
    filter: blur(4px);
  }
}

.casino-logo {
  /* width: 120px; */
  object-fit: contain;
  /* padding: 45px; */
  margin-top: 1rem;
  margin-bottom: 2rem;
  /* transition: transform 0.3s ease, filter 0.3s ease; */
}

.casino-card:hover .casino-logo {
  transform: scale(1.08);
  filter: brightness(1.1) drop-shadow(0 4px 12px rgba(255, 215, 0, 0.3));
}

.casino-bonus {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
  padding: 0.2rem 0.6rem;
  border-radius: 0.6rem;
  backdrop-filter: blur(5px);
  margin-bottom: 0.4rem;
}

.casino-fspins {
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  padding: 0.1rem 0.4rem;
  border-radius: 0.4rem;
  backdrop-filter: blur(3px);
}

.casino-features {
  list-style: none;
  padding: 0.6rem 0.8rem;
  margin: 0.7rem 0 0.9rem 0;
  font-size: 0.98rem;
  color: #ffffff;
  text-align: left;
  border-radius: 0.8rem;
  backdrop-filter: blur(5px);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.casino-features li {
  margin: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.casino-buttons {
  /* margin-top: auto; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.casino-btn {
  margin: 0.6rem 0 0.4rem 0;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa726 100%);
  color: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 0.95rem;
  padding: 0.7rem 2.2rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: casinoPulse 2.5s ease-in-out infinite;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3),
    0 0 30px rgba(255, 140, 66, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

/* Casino icon entfernt - jetzt sanftes Pulsieren */

.casino-btn:hover {
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #ffed4e 100%);
  color: #000;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px) scale(1.05);
  animation: none;
  border-color: #ffd700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4),
    0 0 40px rgba(255, 237, 78, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

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

.casino-btn:active {
  transform: translateY(-2px) scale(1.02);
  animation: jackpotFlash 0.3s ease;
}

/* Features in Accordion-Bereich */
.casino-features-accordion {
  list-style: none;
  padding: 0.6rem 0.8rem;
  margin: 0;
  font-size: 0.98rem;
  color: #ffffff;
  text-align: left;
  border-radius: 0.8rem;
  backdrop-filter: blur(5px);
}

.casino-features-accordion li {
  margin: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* casinoGlow Animation entfernt - ersetzt durch casinoPulse */

@keyframes casinoPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3),
      0 0 30px rgba(255, 140, 66, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.7),
      0 0 60px rgba(255, 140, 66, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.5);
  }
}

@keyframes jackpotFlash {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.5) saturate(1.3);
  }
}

@keyframes infoGlow {
  0% {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3),
      0 0 30px rgba(255, 140, 66, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5),
      0 0 40px rgba(255, 140, 66, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

@keyframes infoGlowSubtle {
  0% {
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3),
      0 0 20px rgba(134, 142, 150, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 6px 18px rgba(108, 117, 125, 0.4),
      0 0 25px rgba(134, 142, 150, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

@keyframes successGlow {
  0% {
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4),
      0 0 30px rgba(102, 187, 106, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6),
      0 0 40px rgba(102, 187, 106, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

@keyframes infoPulse {
  0%,
  90% {
    transform: translateY(-50%) scale(1);
  }
  95% {
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}

@keyframes infoPulseFast {
  0% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.3);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}

@keyframes checkBounce {
  0%,
  80% {
    transform: translateY(-50%) scale(1);
  }
  90% {
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}

.casino-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.8rem;
}

.casino-link {
  color: #bcd;
  font-size: 0.99rem;
  text-decoration: none;
  transition: color 0.17s;
}

.casino-link:hover {
  color: var(--primary);
}

/* Accordion */
.accordion-toggle {
  margin: 0.5rem 0 0 0;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #6c757d 0%, #868e96 50%, #adb5bd 100%);
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0.4rem 1.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  outline: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  justify-content: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: infoGlowSubtle 3s ease-in-out infinite alternate;
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3),
    0 0 20px rgba(134, 142, 150, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.accordion-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.8s ease;
}

.accordion-toggle::after {
  display: none;
}

.accordion-toggle:hover {
  background: linear-gradient(135deg, #495057 0%, #6c757d 50%, #868e96 100%);
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px) scale(1.03);
  animation: none;
  border-color: #6c757d;
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.5),
    0 0 30px rgba(134, 142, 150, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.accordion-toggle:hover::before {
  left: 100%;
}

.accordion-toggle:hover::after {
  animation: infoPulseFast 0.6s ease-in-out infinite;
}

.accordion-toggle.open {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 50%, #81c784 100%);
  color: #fff;
  border-color: #4caf50;
  animation: successGlow 2s ease-in-out infinite alternate;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4),
    0 0 30px rgba(102, 187, 106, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.accordion-toggle.open::after {
  display: none;
}

.payment-logos {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin: 0;
  flex-wrap: wrap;
  padding: 0;
}

.payment-logos img {
  width: 45px;
  height: 28px;
  object-fit: contain;
  padding: 0.3rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: 6px;
  transition: all 0.2s ease;
  opacity: 0.8;
}

.payment-logos img:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  opacity: 0;
}

.accordion-content.open {
  max-height: 120px;
  padding: 1rem 0;
  opacity: 1;
}

/* Casino List Title */
.casino-list-title {
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.casino-list-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.4);
}

.more-btn {
  text-align: center;
  margin: 2.5rem 0;
}

.more-btn button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  font-size: 1.1rem;
  padding: 0.75rem 2.8rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 16px #415a7755;
  letter-spacing: 1px;
  transition: background 0.19s, transform 0.15s;
}

.more-btn button:hover {
  background: #283d56;
  transform: translateY(-2px);
}

/* Social Header - unter dem Logo */
.social-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 1rem 0;
  padding: 0 2rem;
  flex-wrap: wrap;
}

/* CTA Buttons Container */
.cta-buttons-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem 0;
  padding: 0 1rem;
}

/* Giveaway CTA Section */
.giveaway-cta-section {
  display: flex;
  justify-content: center;
}

/* Leaderboard CTA Section */
.leaderboard-cta-section {
  display: flex;
  justify-content: center;
}

.leaderboard-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #ffffff;
  border: none;
  border-radius: 2rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  position: relative;
  overflow: hidden;
}

.leaderboard-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

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

.leaderboard-cta-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.leaderboard-cta-btn:active {
  transform: translateY(0) scale(1.02);
}

.leaderboard-cta-icon {
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}

.leaderboard-cta-text {
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.leaderboard-cta-arrow {
  font-size: 1.2rem;
  animation: bounce-arrow 1.5s infinite;
}

.giveaway-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--gold) 0%, #ffed4a 100%);
  color: #1a1a2e;
  border: none;
  border-radius: 2rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.giveaway-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

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

.giveaway-cta-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.giveaway-cta-btn:active {
  transform: translateY(0) scale(1.02);
}

.giveaway-cta-icon {
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}

.giveaway-cta-text {
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.giveaway-cta-arrow {
  font-size: 1.2rem;
  animation: bounce-arrow 1.5s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

@keyframes bounce-arrow {
  0%,
  50%,
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(3px);
  }
  75% {
    transform: translateY(-3px);
  }
}

/* Responsive Giveaway CTA */
@media (max-width: 768px) {
  .giveaway-cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    gap: 0.6rem;
  }

  .giveaway-cta-icon {
    font-size: 1.2rem;
  }

  .giveaway-cta-arrow {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .cta-buttons-container {
    flex-direction: column;
    gap: 0.8rem;
    margin: 1rem 0 1.5rem 0;
  }

  .giveaway-cta-btn,
  .leaderboard-cta-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    gap: 0.5rem;
    border-radius: 1.5rem;
    width: 100%;
    justify-content: center;
  }

  .giveaway-cta-text,
  .leaderboard-cta-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .leaderboard-cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    gap: 0.6rem;
  }

  .leaderboard-cta-icon {
    font-size: 1.2rem;
  }

  .leaderboard-cta-arrow {
    font-size: 1.1rem;
  }
}

.social-header a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 215, 0, 0.3);
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.social-header img {
  width: 80px;
  height: 80px;
}

.social-header a:hover {
  background: rgba(255, 215, 0, 0.9);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px) scale(1.1) rotate(-5deg);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.social-header svg {
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
}

/* Responsive Design für Social Header */
@media (max-width: 768px) {
  .social-header {
    gap: 0.8rem;
    margin: 1.2rem 0 1rem 0;
    padding: 0 1rem;
  }

  .social-header a {
    width: 40px;
    height: 40px;
  }

  .social-header svg {
    width: 20px;
    height: 20px;
  }

  /* Giveaway Tickets Responsive - wird durch neue Media Queries überschrieben */
}

@media (max-width: 480px) {
  .social-header {
    gap: 0.6rem;
    margin: 1rem 0;
    padding: 0 0.5rem;
  }

  .social-header a {
    width: 36px;
    height: 36px;
  }

  .social-header svg {
    width: 18px;
    height: 18px;
  }

  /* Giveaway Tickets Mobile - wird durch neue Media Queries überschrieben */
}

/* Registration Banner */
.registration-banner {
  max-width: 1200px;
  margin: 4rem auto 2rem auto;
  padding: 0 1rem;
  position: relative;
}

.registration-content {
  background: var(--card-gradient);
  border-radius: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.registration-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 50%,
    rgba(255, 215, 0, 0.05) 100%
  );
  z-index: 1;
}

.registration-content > * {
  position: relative;
  z-index: 2;
}

.registration-icon {
  margin-bottom: 1.5rem;
  color: var(--gold);
  animation: registrationGlow 2s ease-in-out infinite alternate;
}

@keyframes registrationGlow {
  0% {
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
    transform: scale(1);
  }
  100% {
    filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.8));
    transform: scale(1.1);
  }
}

.registration-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #fff 50%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
  animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
}

.registration-subtitle {
  font-size: 1.3rem;
  color: #e0e8ff;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.registration-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.benefit-icon {
  font-size: 1.5rem;
  min-width: 2rem;
}

.benefit-text {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}

.registration-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.registration-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 220px;
  justify-content: center;
}

.registration-btn.primary {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #ffed4e 50%,
    var(--gold) 100%
  );
  color: #1b263b;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.registration-btn.secondary {
  background: linear-gradient(135deg, #0088cc 0%, #00aeff 50%, #0088cc 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

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

.registration-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.registration-btn.primary:hover {
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  background: linear-gradient(
    135deg,
    #ffed4e 0%,
    var(--gold) 50%,
    #ffed4e 100%
  );
}

.registration-btn.secondary:hover {
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
  background: linear-gradient(135deg, #00aeff 0%, #0088cc 50%, #00aeff 100%);
}

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

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.registration-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.registration-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.circle-2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.circle-3 {
  width: 60px;
  height: 60px;
  bottom: 15%;
  left: 15%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.6;
  }
}

/* Registration Modal */
.registration-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.registration-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.registration-modal-content {
  background: var(--card-gradient);
  border-radius: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.registration-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: sticky;
  top: 0;
  background: var(--card-gradient);
  z-index: 10;
  position: relative;
}

.registration-modal-logo img {
  height: 60px;
  width: auto;
}

.registration-modal-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.registration-modal-close:hover {
  background: rgba(255, 215, 0, 0.2);
  color: var(--gold);
  transform: rotate(90deg);
}

.registration-modal-body {
  padding: 2rem;
}

.registration-modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #fff 50%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.registration-modal-subtitle {
  text-align: center;
  color: #e0e8ff;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  font-weight: 500;
  color: #fff;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  padding: 0.8rem 1rem;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.password-field {
  position: relative;
  display: flex;
  align-items: center;
}

.password-field input {
  padding-right: 3rem;
  flex: 1;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.password-toggle:hover {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
}

.password-toggle:focus {
  outline: none;
  color: var(--gold);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #fff;
  transition: all 0.3s ease;
}

.checkbox-label:hover {
  color: var(--gold);
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--gold);
  border-color: var(--gold);
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #1b263b;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  display: block;
}

.form-agreements {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.form-agreements a {
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.form-agreements a:hover {
  color: #fff;
  text-decoration: underline;
}

.registration-benefits-modal {
  background: rgba(255, 215, 0, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.registration-benefits-modal h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.registration-benefits-modal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.registration-benefits-modal li {
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
}

.registration-submit-btn {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #ffed4e 50%,
    var(--gold) 100%
  );
  color: #1b263b;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.registration-submit-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  background: linear-gradient(
    135deg,
    #ffed4e 0%,
    var(--gold) 50%,
    #ffed4e 100%
  );
}

.registration-modal-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.registration-modal-footer p {
  color: #e0e8ff;
  margin: 0;
}

.registration-modal-footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.registration-modal-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Success Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.success-modal.show {
  opacity: 1;
  visibility: visible;
}

.success-modal-content {
  background: var(--card-gradient);
  border-radius: 1.5rem;
  width: 90%;
  max-width: 500px;
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  animation: successModalSlideIn 0.3s ease;
}

@keyframes successModalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.success-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem 2rem;
  position: relative;
}

.success-modal-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b263b;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  animation: successIconPulse 2s ease-in-out infinite;
}

@keyframes successIconPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  }
}

.success-modal-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.success-modal-close:hover {
  background: rgba(255, 215, 0, 0.2);
  color: var(--gold);
  transform: rotate(90deg);
}

.success-modal-body {
  padding: 2rem;
  text-align: center;
}

.success-modal-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #fff 50%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-modal-message {
  color: #e0e8ff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.success-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.success-btn {
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 140px;
}

.success-btn.primary {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #ffed4e 50%,
    var(--gold) 100%
  );
  color: #1b263b;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.success-btn.primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  background: linear-gradient(
    135deg,
    #ffed4e 0%,
    var(--gold) 50%,
    #ffed4e 100%
  );
}

.success-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.success-btn.secondary:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* User Actions - Login Button */
.user-actions {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.login-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.login-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Login Modal */
.login-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.login-modal.show {
  opacity: 1;
  visibility: visible;
}

.login-modal-content {
  background: var(--card-gradient);
  border-radius: 1.5rem;
  width: 90%;
  max-width: 450px;
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
}

.login-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: sticky;
  top: 0;
  background: var(--card-gradient);
  z-index: 10;
  position: relative;
}

.login-modal-logo img {
  height: 60px;
  width: auto;
}

.login-modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #fff 50%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-modal-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-modal-close:hover {
  background: rgba(255, 215, 0, 0.2);
  color: var(--gold);
  transform: rotate(90deg);
}

.login-modal-body {
  padding: 2rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #fff;
}

.forgot-password {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.forgot-password:hover {
  color: #fff;
  text-decoration: underline;
}

.login-submit-btn {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #ffed4e 50%,
    var(--gold) 100%
  );
  color: #1b263b;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.login-submit-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  background: linear-gradient(
    135deg,
    #ffed4e 0%,
    var(--gold) 50%,
    #ffed4e 100%
  );
}

.login-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.login-footer p {
  color: #e0e8ff;
  margin: 0;
}

.login-footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.login-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Password Reset Modal */
.password-reset-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.password-reset-modal.show {
  opacity: 1;
  visibility: visible;
}

.password-reset-modal-content {
  background: var(--card-gradient);
  border-radius: 1.5rem;
  width: 90%;
  max-width: 450px;
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.password-reset-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: sticky;
  top: 0;
  background: var(--card-gradient);
  z-index: 10;
  position: relative;
}

.password-reset-modal-logo img {
  height: 60px;
  width: auto;
}

.password-reset-modal-title {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #fff 50%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.password-reset-modal-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-reset-modal-close:hover {
  background: rgba(255, 215, 0, 0.2);
  color: var(--gold);
  transform: rotate(90deg);
}

.password-reset-modal-body {
  padding: 2rem;
}

.password-reset-description {
  color: #e0e8ff;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  text-align: center;
}

.password-reset-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.password-reset-submit-btn {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #ffed4e 50%,
    var(--gold) 100%
  );
  color: #1b263b;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.password-reset-submit-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  background: linear-gradient(
    135deg,
    #ffed4e 0%,
    var(--gold) 50%,
    #ffed4e 100%
  );
}

.password-reset-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.password-reset-footer p {
  color: #e0e8ff;
  margin: 0;
}

.password-reset-footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.password-reset-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive Design für Registration Banner */
@media (max-width: 768px) {
  .registration-banner {
    margin: 3rem auto 1.5rem auto;
    padding: 0 1rem;
  }

  .registration-content {
    padding: 2.5rem 1.5rem;
  }

  .registration-title {
    font-size: 2rem;
  }

  .registration-subtitle {
    font-size: 1.1rem;
  }

  .registration-benefits {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .benefit-item {
    padding: 0.8rem;
  }

  .benefit-icon {
    font-size: 1.3rem;
  }

  .benefit-text {
    font-size: 0.9rem;
  }

  .registration-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .registration-btn {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .registration-banner {
    margin: 2rem auto 1rem auto;
    padding: 0 0.5rem;
  }

  .registration-content {
    padding: 2rem 1rem;
    border-radius: 1.5rem;
  }

  .registration-title {
    font-size: 1.7rem;
  }

  .registration-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .registration-benefits {
    margin-bottom: 1.5rem;
  }

  .benefit-item {
    padding: 0.7rem;
    border-radius: 0.8rem;
  }

  .benefit-icon {
    font-size: 1.2rem;
  }

  .benefit-text {
    font-size: 0.85rem;
  }

  .registration-btn {
    padding: 0.9rem 1.2rem;
    font-size: 0.85rem;
    /* min-width: 100%; */
  }

  .decoration-circle {
    display: none;
  }
}

/* Responsive Design für Registration Modal */
@media (max-width: 768px) {
  .registration-modal-content {
    width: 95%;
    max-width: none;
  }

  .registration-modal-header {
    padding: 1rem 1.5rem;
  }

  .registration-modal-logo img {
    height: 50px;
  }

  .registration-modal-body {
    padding: 1.5rem;
  }

  .registration-modal-title {
    font-size: 1.3rem;
  }

  .registration-modal-subtitle {
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkbox-group {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .registration-submit-btn {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .registration-modal-content {
    width: 98%;
    border-radius: 1rem;
  }

  .registration-modal-header {
    padding: 1rem;
  }

  .registration-modal-logo img {
    height: 40px;
  }

  .registration-modal-body {
    padding: 1rem;
  }

  .registration-modal-title {
    font-size: 1.1rem;
  }

  .registration-modal-subtitle {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select {
    padding: 0.7rem 0.8rem;
    font-size: 0.9rem;
  }

  .password-field input {
    padding-right: 2.5rem;
  }

  .password-toggle {
    right: 0.5rem;
    padding: 0.2rem;
  }

  .password-toggle svg {
    width: 18px;
    height: 18px;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .form-agreements {
    padding: 1rem;
  }

  .registration-benefits-modal {
    padding: 0.5rem;
  }

  .registration-benefits-modal h3 {
    font-size: 1rem;
  }

  .registration-benefits-modal li {
    font-size: 0.8rem;
  }

  .registration-submit-btn {
    font-size: 0.9rem;
    padding: 0.9rem 1.5rem;
  }

  /* Success Modal Mobile */
  .success-modal-content {
    width: 95%;
    max-width: none;
    margin: 1rem;
  }

  .success-modal-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }

  .success-modal-icon {
    width: 60px;
    height: 60px;
  }

  .success-modal-body {
    padding: 1.5rem;
  }

  .success-modal-title {
    font-size: 1.5rem;
  }

  .success-modal-message {
    font-size: 1rem;
  }

  .success-modal-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .success-btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.9rem;
  }

  /* Login Modal Mobile */
  .login-modal-content {
    width: 95%;
    max-width: none;
    margin: 1rem;
  }

  .login-modal-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }

  .login-modal-logo img {
    height: 50px;
  }

  .login-modal-title {
    font-size: 1.3rem;
  }

  .login-modal-body {
    padding: 1.5rem;
  }

  .login-options {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .login-submit-btn {
    font-size: 1rem;
    padding: 1rem;
  }

  /* Password Reset Modal Mobile */
  .password-reset-modal-content {
    width: 95%;
    max-width: none;
    margin: 1rem;
  }

  .password-reset-modal-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }

  .password-reset-modal-logo img {
    height: 50px;
  }

  .password-reset-modal-title {
    font-size: 1.1rem;
  }

  .password-reset-modal-body {
    padding: 1.5rem;
  }

  .password-reset-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .password-reset-submit-btn {
    font-size: 1rem;
    padding: 1rem;
  }

  /* User Actions Mobile */
  .user-actions {
    margin: 0.5rem 0;
  }

  .login-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

/* Social Bar */
.social-bar {
  position: fixed;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 110;
  padding: 1rem;
}

.social-bar a,
.social-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 215, 0, 0.3);
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.social-bar a:hover {
  background: rgba(255, 215, 0, 0.9);
  border-color: var(--gold);
  color: #fff;
  transform: translateX(-5px) translateY(-2px) scale(1.08) rotate(-5deg);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.social-bar svg {
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
}

/* More Button spezielle Stile */
.social-more-btn {
  outline: none;
  font-size: 0;
  /* Sicherstellen, dass alle Basis-Styles angewendet werden */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
  color: var(--primary) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(5px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  cursor: pointer !important;
}

.social-more-btn.active {
  transform: rotate(90deg);
}

/* Versteckte Social Icons */
.social-hidden {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 0;
  overflow: visible;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(-10px);
  opacity: 0;
}

.social-hidden.show {
  max-height: 500px;
  transform: translateY(0);
  opacity: 1;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
}

.social-hidden a {
  animation: slideInFromBottom 0.3s ease forwards;
}

.social-hidden a:hover {
  background: rgba(255, 215, 0, 0.9) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
  transform: translateX(-5px) translateY(-2px) scale(1.08) rotate(-5deg) !important;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4) !important;
}

.social-hidden a:nth-child(1) {
  animation-delay: 0.1s;
}

.social-hidden a:nth-child(2) {
  animation-delay: 0.2s;
}

.social-hidden a:nth-child(3) {
  animation-delay: 0.3s;
}

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

/* Responsive */
@media (max-width: 950px) {
  .top3-grid {
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 1.5rem;
    padding: 0 1rem;
  }
  /* .casino-card {
    max-width: none;
    min-width: 0;
  } */
}

@media (max-width: 600px) {
  /* Casino Quick Bar für mobile Geräte anpassen */
  .casino-quick-bar {
    right: 70px; /* Näher zur Social Bar auf mobilen Geräten */
    gap: 0.4rem;
  }

  .casino-quick-bar.show {
    max-width: 160px; /* Schmaler auf mobilen Geräten */
  }

  .casino-quick-btn {
    width: 40px;
    height: 40px;
    padding: 4px;
  }

  .casino-quick-logo {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 600px) {
  .logo-top {
    height: 120px !important;
  }

  .top3-grid {
    padding: 0px 2rem;
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
  }
  .top3-section {
    padding-top: 0px !important;
    margin-top: 1rem;
    padding: 1.5rem 1vw 0 1vw;
  }
  .top3-title {
    font-size: 1.33rem;
  }
  .casino-card,
  .casino-card.small {
    padding: 1.15rem 0.4rem;
  }

  .casino-list-title {
    font-size: 1.05rem;
  }
  .more-btn button {
    font-size: 1rem;
    padding: 0.7rem 2.2rem;
  }
}

@media (max-width: 425px) {
  .top3-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .casino-card {
    max-width: none;
    min-height: 420px;
    padding: 1.2rem 0.8rem 0.8rem 0.8rem;
  }

  /* Casino Logos auf Mobile kompakter */
  .casino-card .casino-logo {
    margin-bottom: 0.6rem;
    margin-top: 25px;
  }

  /* Bonus Text auf Mobile kompakter */
  .casino-card .casino-bonus {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  /* Freispiele auf Mobile kompakter */
  .casino-card .casino-fspins {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  /* Button auf Mobile kompakter */
  .casino-card .casino-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.8rem;
    margin: 0.4rem 0 0.3rem 0;
  }

  /* Accordion Buttons auf Mobile kompakter */
  .casino-card .accordion-toggle {
    font-size: 0.7rem;
    padding: 0.3rem 1.2rem;
    margin: 0.3rem 0 0 0;
  }
}

/* Casino Quick Bar (horizontal) */
.casino-quick-bar {
  position: fixed;
  bottom: 2.5rem;
  right: 120px; /* Rechts neben der Social Bar */
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  z-index: 109;
  max-width: 0;
  overflow: visible;
  transition: max-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(20px);
  opacity: 0;
  align-items: center;
}

.casino-quick-bar.show {
  max-width: 200px;
  transform: translateX(0);
  opacity: 1;
  transition: max-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
}

.casino-quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 215, 0, 0.3);
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  animation: slideInFromRight 0.3s ease forwards;
  padding: 5px;
}

.casino-quick-btn:nth-child(1) {
  animation-delay: 0.1s;
}

.casino-quick-btn:nth-child(2) {
  animation-delay: 0.2s;
}

.casino-quick-btn:nth-child(3) {
  animation-delay: 0.3s;
}

.casino-quick-btn:hover {
  background: rgba(255, 215, 0, 0.9);
  border-color: var(--gold);
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.casino-quick-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.casino-quick-btn:hover .casino-quick-logo {
  transform: scale(1.1);
  filter: brightness(1.1);
}

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

/* +18 Altersverifikation Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(135, 46, 224, 0.15) 0%,
    rgba(65, 90, 119, 0.3) 30%,
    rgba(13, 27, 42, 0.8) 70%,
    rgba(0, 0, 0, 0.95) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(8px);
  animation: modalFadeIn 0.8s ease-out;
}

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: linear-gradient(
    135deg,
    rgba(27, 38, 59, 0.95) 0%,
    rgba(65, 90, 119, 0.9) 50%,
    rgba(27, 38, 59, 0.95) 100%
  );
  border: 3px solid transparent;
  background-clip: padding-box;
  border-radius: 25px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(135, 46, 224, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  animation: modalSlideUp 0.8s ease-out;
}

.age-modal-content::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.8) 0%,
    rgba(135, 46, 224, 0.8) 25%,
    rgba(65, 90, 119, 0.8) 50%,
    rgba(135, 46, 224, 0.8) 75%,
    rgba(255, 215, 0, 0.8) 100%
  );
  border-radius: 25px;
  z-index: -1;
  animation: gradientRotate 6s linear infinite;
}

.age-modal-logo {
  margin-bottom: 2rem;
}

.age-modal-logo img {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.6));
  animation: logoFloat 3s ease-in-out infinite;
}

.age-modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  background: linear-gradient(
    135deg,
    #fff 0%,
    rgba(255, 215, 0, 0.9) 50%,
    #fff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.age-modal-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.age-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.age-confirm-btn {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 50%, #4caf50 100%);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4), 0 0 20px rgba(76, 175, 80, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.age-confirm-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.age-confirm-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(76, 175, 80, 0.6),
    0 0 30px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, #5cbf60 0%, #4caf50 50%, #5cbf60 100%);
}

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

.age-confirm-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.age-leave-btn {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-underline-offset: 4px;
}

.age-leave-btn:hover {
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Animationen */
@keyframes modalFadeIn {
  0% {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  100% {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}

@keyframes modalSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive Design für Modal */
@media (max-width: 600px) {
  .age-modal-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .age-modal-title {
    font-size: 1.5rem;
  }

  .age-modal-text {
    font-size: 1rem;
  }

  .age-confirm-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

/* Giveaway Section */
.giveaway-section {
  max-width: 1200px;
  width: calc(100% - 2rem);
  margin: 4rem auto 2rem auto;
  padding: 2rem 1rem;
  background: var(--card-gradient);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.giveaway-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 50%,
    rgba(255, 215, 0, 0.05) 100%
  );
  border-radius: 2rem;
  z-index: 1;
}

.giveaway-section > * {
  position: relative;
  z-index: 2;
}

.giveaway-header {
  text-align: center;
  margin-bottom: 3rem;
}

.giveaway-total-prize {
  font-size: 4rem;
  font-weight: bold;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #fff 50%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
  margin-bottom: 1rem;
  animation: giveawayGlow 3s ease-in-out infinite alternate;
}

.giveaway-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.giveaway-subtitle {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.giveaway-description {
  font-size: 1.1rem;
  color: #e0e8ff;
  max-width: 600px;
  margin: 0 auto 1rem auto;
  line-height: 1.6;
}

.giveaway-period {
  font-size: 1rem;
  color: #ffd700;
  margin: 0 auto 2rem auto;
  font-weight: 600;
  text-align: center;
  background: rgba(255, 215, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: inline-block;
  max-width: fit-content;
}

.giveaway-conditions {
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  max-width: 800px;
  text-align: left;
}

.giveaway-conditions h3 {
  color: #ffd700;
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.conditions-list {
  display: grid;
  gap: 0.8rem;
}

.giveaway-condition {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
}

.condition-icon {
  font-size: 1.2rem;
  color: #27ae60;
  flex-shrink: 0;
}

.condition-text {
  color: #e0e8ff;
  font-size: 0.95rem;
  line-height: 1.4;
}

.giveaway-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.giveaway-prizes-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.giveaway-tickets-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.giveaway-prizes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.giveaway-prize-item {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.giveaway-prize-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--gold);
  transform: translateX(5px);
}

.giveaway-prize-place {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--gold);
  margin-right: 1rem;
  min-width: 80px;
}

.giveaway-prize-description {
  flex: 1;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.4;
}

.giveaway-prize-amount {
  color: var(--gold);
  font-weight: bold;
  font-size: 1rem;
}

.giveaway-tickets-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.giveaway-ticket-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15) 0%,
    rgba(255, 215, 0, 0.05) 100%
  );
  border-radius: 1.2rem;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.giveaway-ticket-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    #fff 50%,
    var(--gold) 100%
  );
}

.giveaway-ticket-item:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.giveaway-ticket-icon {
  font-size: 2.5rem;
  margin: 0;
  order: -1;
}

.giveaway-ticket-deposit {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.giveaway-ticket-tickets {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.giveaway-ticket-casino {
  font-size: 0.9rem;
  color: #e0e8ff;
  font-style: italic;
  margin-top: 0.5rem;
}

.giveaway-ticket-example {
  font-size: 0.85rem;
  color: #27ae60;
  font-weight: 600;
  margin-top: 0.3rem;
  text-align: center;
}

.giveaway-casinos {
  margin-top: 3rem;
}

.giveaway-casinos-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.giveaway-casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.giveaway-casino-card {
  background: var(--card-gradient);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.giveaway-casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.05) 0%,
    transparent 50%,
    rgba(255, 215, 0, 0.02) 100%
  );
  border-radius: 1.5rem;
  z-index: 1;
}

.giveaway-casino-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
}

.giveaway-casino-card:hover::before {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 50%,
    rgba(255, 215, 0, 0.05) 100%
  );
}

.giveaway-casino-card > * {
  position: relative;
  z-index: 2;
}

.giveaway-casino-logo {
  height: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.giveaway-casino-card:hover .giveaway-casino-logo {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.giveaway-casino-bonus {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.giveaway-casino-freispiele {
  font-size: 0.95rem;
  color: #e0e8ff;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.giveaway-casino-btn {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #ffed4e 50%,
    var(--gold) 100%
  );
  color: #1b263b;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.giveaway-casino-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.giveaway-casino-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  background: linear-gradient(
    135deg,
    #ffed4e 0%,
    var(--gold) 50%,
    #ffed4e 100%
  );
}

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

.giveaway-casino-features {
  margin-top: 1rem;
  text-align: left;
}

.giveaway-casino-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.giveaway-casino-features li {
  color: #e0e8ff;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.giveaway-casino-features li::before {
  content: "✅";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.giveaway-casino-exclusive {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(238, 90, 36, 0.4);
  animation: exclusivePulse 2s ease-in-out infinite;
}

@keyframes giveawayGlow {
  0% {
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
    transform: scale(1);
  }
  100% {
    filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.6));
    transform: scale(1.02);
  }
}

/* Responsive Design für Giveaway */
@media (max-width: 1024px) {
  .giveaway-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .giveaway-prizes-title {
    font-size: 1.6rem;
  }

  .giveaway-tickets-title {
    font-size: 1.4rem;
  }

  .giveaway-tickets-list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
  }
}

@media (max-width: 900px) {
  .giveaway-total-prize {
    font-size: 3rem;
  }

  .giveaway-title {
    font-size: 2rem;
  }

  .giveaway-subtitle {
    font-size: 1.3rem;
  }

  .giveaway-conditions {
    margin: 1.5rem auto;
    padding: 1.5rem;
  }

  .giveaway-conditions h3 {
    font-size: 1.2rem;
  }

  .condition-text {
    font-size: 0.9rem;
  }

  .giveaway-prizes-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .giveaway-tickets-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .giveaway-prize-item {
    padding: 0.8rem 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .giveaway-prize-place {
    margin-right: 0;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
  }

  .giveaway-prize-description {
    font-size: 0.95rem;
  }

  .giveaway-prize-amount {
    font-size: 1.1rem;
    margin-top: 0.3rem;
  }
}

@media (max-width: 768px) {
  .giveaway-section {
    width: calc(100% - 1rem);
    margin: 2rem auto 1rem auto;
    padding: 1.5rem 0.8rem;
  }

  .giveaway-content {
    gap: 1.5rem;
  }

  .giveaway-total-prize {
    font-size: 2.8rem;
  }

  .giveaway-title {
    font-size: 1.9rem;
  }

  .giveaway-subtitle {
    font-size: 1.2rem;
  }

  .giveaway-description {
    font-size: 1rem;
  }

  .giveaway-prizes-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }

  .giveaway-tickets-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .giveaway-tickets-list {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    max-width: 100%;
  }

  .giveaway-ticket-item {
    padding: 1.2rem 0.8rem;
    gap: 0.6rem;
  }

  .giveaway-ticket-icon {
    font-size: 2rem;
  }

  .giveaway-ticket-deposit {
    font-size: 1rem;
  }

  .giveaway-ticket-tickets {
    font-size: 0.95rem;
  }

  .giveaway-casinos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .giveaway-casino-card {
    padding: 1.5rem;
  }

  .giveaway-casino-logo {
    width: 100px;
    max-height: 70px;
  }

  .giveaway-casino-bonus {
    font-size: 1rem;
  }

  .giveaway-casino-freispiele {
    font-size: 0.9rem;
  }

  .giveaway-casino-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .giveaway-section {
    width: calc(100% - 0.5rem);
    margin: 1.5rem auto 1rem auto;
    padding: 1.2rem 0.6rem;
  }

  .giveaway-total-prize {
    font-size: 2.5rem;
  }

  .giveaway-title {
    font-size: 1.8rem;
  }

  .giveaway-subtitle {
    font-size: 1.1rem;
  }

  .giveaway-description {
    font-size: 0.95rem;
  }

  .giveaway-prizes-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .giveaway-tickets-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .giveaway-tickets-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    max-width: 100%;
  }

  .giveaway-ticket-item {
    padding: 1rem 0.6rem;
    gap: 0.5rem;
  }

  .giveaway-ticket-icon {
    font-size: 1.8rem;
  }

  .giveaway-ticket-deposit {
    font-size: 0.9rem;
  }

  .giveaway-ticket-tickets {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .giveaway-section {
    width: calc(100% - 0.4rem);
    margin: 1rem auto 0.8rem auto;
    padding: 1rem 0.5rem;
    border-radius: 1.5rem;
  }

  .giveaway-total-prize {
    font-size: 2.2rem;
  }

  .giveaway-title {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }

  .giveaway-subtitle {
    font-size: 1rem;
  }

  .giveaway-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .giveaway-content {
    gap: 1.2rem;
  }

  .giveaway-prizes-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .giveaway-tickets-title {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .giveaway-prize-item {
    padding: 0.7rem 0.8rem;
    gap: 0.4rem;
  }

  .giveaway-prize-place {
    font-size: 1rem;
    min-width: 60px;
  }

  .giveaway-prize-description {
    font-size: 0.85rem;
  }

  .giveaway-prize-amount {
    font-size: 1rem;
  }

  .giveaway-tickets-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .giveaway-ticket-item {
    padding: 0.8rem 0.4rem;
    gap: 0.4rem;
    border-radius: 1rem;
  }

  .giveaway-ticket-icon {
    font-size: 1.6rem;
  }

  .giveaway-ticket-deposit {
    font-size: 0.8rem;
  }

  .giveaway-ticket-tickets {
    font-size: 0.75rem;
  }

  .giveaway-casinos-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .giveaway-casino-card {
    padding: 1.2rem 1rem;
    border-radius: 1.2rem;
  }

  .giveaway-casino-logo {
    width: 80px;
    max-height: 60px;
    margin-bottom: 1rem;
  }

  .giveaway-casino-bonus {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .giveaway-casino-freispiele {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .giveaway-casino-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    border-radius: 40px;
  }
}

@media (max-width: 360px) {
  .giveaway-section {
    width: calc(100% - 0.25rem);
    margin: 0.8rem auto 0.6rem auto;
    padding: 0.8rem 0.3rem;
  }

  .giveaway-total-prize {
    font-size: 2rem;
  }

  .giveaway-title {
    font-size: 1.4rem;
  }

  .giveaway-subtitle {
    font-size: 0.9rem;
  }

  .giveaway-description {
    font-size: 0.85rem;
  }

  .giveaway-tickets-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .giveaway-ticket-item {
    padding: 0.7rem 0.3rem;
  }

  .giveaway-ticket-icon {
    font-size: 1.4rem;
  }

  .giveaway-ticket-deposit {
    font-size: 0.75rem;
  }

  .giveaway-ticket-tickets {
    font-size: 0.7rem;
  }
}

/* ============================================
   LOADING SCREEN
   ============================================ */

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f1419 0%, #1b263b 50%, #0f1419 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.5s ease-in-out;
}

.loading-screen.hidden {
  animation: fadeOut 0.5s ease-in-out forwards;
}

.loading-content {
  text-align: center;
  color: white;
  max-width: 400px;
  padding: 2rem;
}

.loading-logo {
  margin-bottom: 2rem;
}

.loading-logo img {
  width: 120px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.loading-spinner {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.spinner {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 0 auto;
}

.spinner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid transparent;
  border-top: 4px solid #ffd700;
  border-right: 4px solid #ffa500;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.spinner::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 3px solid transparent;
  border-top: 3px solid #ffd700;
  border-left: 3px solid #ffa500;
  border-radius: 50%;
  animation: spin 1.8s linear infinite reverse;
}

/* Container für Pulse-Animation */
.loading-spinner {
  animation: pulse 2s ease-in-out infinite alternate;
}

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

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

.loading-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(45deg, #ffd700, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loading-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.loading-progress {
  width: 100%;
  margin-top: 1rem;
}

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

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffa500);
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.progress-text {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Loading Screen Responsive */
@media (max-width: 768px) {
  .loading-content {
    max-width: 300px;
    padding: 1.5rem;
  }

  .loading-logo img {
    width: 90px;
  }

  .loading-text h2 {
    font-size: 1.5rem;
  }

  .loading-text p {
    font-size: 1rem;
  }

  .spinner {
    width: 40px;
    height: 40px;
  }
}

/* ===== HAMBURGER MENU STYLES ===== */

/* Navigation Actions Container */
.nav-actions {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 9999;
}

/* Desktop Only Login Button */
.desktop-only {
  display: flex;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

/* Mobile Login Button (nur sichtbar auf Mobile) */
.mobile-login-section {
  display: none;
  justify-content: center;
  margin: 1rem 0 0.5rem 0;
}

.mobile-login-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-login-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.mobile-login-btn svg {
  transition: transform 0.3s ease;
}

.mobile-login-btn:hover svg {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .mobile-login-section {
    display: flex;
  }
}

/* Hamburger Button */
.hamburger-btn {
  background: var(--card-gradient);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 15px rgba(27, 38, 59, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

.hamburger-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  border-color: var(--gold);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-btn.active .hamburger-line:first-child {
  transform: rotate(45deg) translateY(6px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:last-child {
  transform: rotate(-45deg) translateY(-6px);
}

/* Main Menu Overlay */
.main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.main-menu.show {
  opacity: 1;
  visibility: visible;
}

.main-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.main-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.main-menu.show .main-menu-content {
  transform: translateX(0);
}

/* Menu Header */
.main-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--card-gradient);
}

.main-menu-logo img {
  height: 40px;
  width: auto;
}

.main-menu-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  padding: 0;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.main-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Menu Body */
.main-menu-body {
  padding: 20px 20px 30px 20px;
  flex: 1;
  overflow-y: auto;
}

.menu-section-title {
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* CTA Section */
.menu-cta-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.menu-cta-btn.primary {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.menu-cta-btn.secondary {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

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

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

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

.menu-cta-btn.primary:hover {
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.menu-cta-btn.secondary:hover {
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-icon {
  font-size: 1.1rem;
}

/* Giveaway & Leaderboard Section (under login button) */
.menu-giveaway-leaderboard-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-giveaway-leaderboard-section .menu-giveaway-cta,
.menu-giveaway-leaderboard-section .menu-leaderboard-cta {
  margin-bottom: 0;
}

/* Casino Mini Section */
.menu-casinos-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-casino-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-casino-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-casino-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.menu-casino-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  /* border-radius: 6px; */
  /* background: white; */
  padding: 4px;
}

.menu-casino-info {
  flex: 1;
}

.menu-casino-name {
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  margin: 0;
}

.menu-casino-bonus {
  color: #ffd700;
  font-size: 0.8rem;
  margin: 2px 0 0 0;
}

.menu-casino-place {
  background: linear-gradient(135deg, #ffd700 0%, #f59e0b 100%);
  color: #1f2937;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
}

/* Social Media Section */
.menu-social-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-social-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 215, 0, 0.3);
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.menu-social-btn:hover {
  background: rgba(255, 215, 0, 0.9);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px) scale(1.1) rotate(-5deg);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.menu-social-btn svg {
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
}

/* Additional Section */
.menu-additional-section {
  margin-bottom: 20px;
}

/* Bottom CTA Buttons */
.menu-bottom-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.menu-bottom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.menu-bottom-btn.primary {
  background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
  color: #1f2937;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.menu-bottom-btn.secondary {
  background: linear-gradient(135deg, #0088cc 0%, #0ea5e9 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

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

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

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

.menu-bottom-btn.primary:hover {
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.menu-bottom-btn.secondary:hover {
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.giveaway-mini-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.giveaway-mini-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.8s ease;
}

.giveaway-mini-banner:hover::before {
  left: 100%;
}

.giveaway-mini-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.giveaway-mini-icon {
  font-size: 2rem;
  animation: giveawayPulse 2s ease-in-out infinite;
}

@keyframes giveawayPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.giveaway-mini-text {
  flex: 1;
}

.giveaway-mini-text strong {
  display: block;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 2px;
}

.giveaway-mini-text span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

/* Leaderboard Menu CTA */
.menu-leaderboard-cta {
  margin-top: 10px;
}

.leaderboard-mini-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.leaderboard-mini-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.8s ease;
}

.leaderboard-mini-banner:hover::before {
  left: 100%;
}

.leaderboard-mini-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.leaderboard-mini-icon {
  font-size: 2rem;
  animation: giveawayPulse 2s ease-in-out infinite;
}

.leaderboard-mini-text {
  flex: 1;
}

.leaderboard-mini-text strong {
  display: block;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 2px;
}

.leaderboard-mini-text span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-actions {
    top: 15px;
    right: 15px;
  }

  .main-menu-content {
    width: 320px;
  }

  .menu-social-btn {
    width: 40px;
    height: 40px;
  }

  .menu-social-btn svg {
    width: 20px;
    height: 20px;
  }

  .menu-bottom-btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .main-menu-content {
    width: 100%;
    max-width: none;
  }

  .hamburger-btn {
    padding: 10px;
  }

  .hamburger-line {
    width: 18px;
  }

  .menu-social-btn {
    width: 36px;
    height: 36px;
  }

  .menu-social-btn svg {
    width: 18px;
    height: 18px;
  }

  .menu-bottom-btn {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .main-menu-body {
    padding: 15px 15px 25px 15px;
  }
}

/* Slotpicker CTA Section in Menu */
.menu-slotpicker-section {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 100%
  );
  border-radius: 16px;
  border: 2px solid rgba(99, 102, 241, 0.3);
  animation: slideIn 0.5s ease-out;
}

.slotpicker-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.slotpicker-cta-icon {
  font-size: 4rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.slotpicker-cta-title {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: -0.5px;
}

.slotpicker-cta-text {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.slotpicker-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

.slotpicker-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.6);
}

.slotpicker-cta-btn .btn-arrow {
  font-size: 1.25rem;
  transition: transform 0.3s;
}

.slotpicker-cta-btn:hover .btn-arrow {
  transform: translateX(5px);
}

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

/* ===================================
   LEADERBOARD SECTION STYLES - AAA PREMIUM
   =================================== */

.leaderboard-section {
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto;
  /* padding: 0 1rem; */
  position: relative;
}

.leaderboard-section > div:not(.leaderboard-header) {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--primary) 100%);
  background-image: radial-gradient(
      ellipse at top,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom,
      rgba(255, 215, 0, 0.03) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, var(--bg-card) 0%, var(--primary) 100%);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  backdrop-filter: blur(20px);
  padding: 3rem 2rem;
}

/* Premium Gold Border Animation */
.leaderboard-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--silver),
    var(--bronze),
    var(--gold)
  );
  background-size: 300% 100%;
  animation: gradientShift 4s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Ambient Glow Effect - REMOVED */
/* .leaderboard-section::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.08) 0%,
    transparent 70%
  );
  animation: ambientRotate 20s linear infinite;
  pointer-events: none;
} */

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
}

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

/* Leaderboard Header - Premium AAA */
.leaderboard-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 1rem;
  position: relative;
  z-index: 2;
}

.leaderboard-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
  animation: trophyFloat 3s ease-in-out infinite;
  display: inline-block;
}

@keyframes trophyFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
  }
  50% {
    transform: translateY(-15px) rotate(-5deg);
    filter: drop-shadow(0 0 50px rgba(255, 215, 0, 1));
  }
}

.leaderboard-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #ffed4e 25%,
    var(--gold) 50%,
    #ffed4e 75%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: goldShimmer 3s linear infinite;
  filter: drop-shadow(0 2px 10px rgba(255, 215, 0, 0.3));
  position: relative;
}

@keyframes goldShimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.leaderboard-subtitle {
  font-size: 1.3rem;
  color: #e0e8ff;
  font-weight: 400;
  opacity: 0.9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===================================
   PRIZE POOL BANNER STYLES
   =================================== */

.prize-pool-banner {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15) 0%,
    rgba(255, 165, 0, 0.1) 25%,
    rgba(255, 107, 53, 0.08) 50%,
    rgba(255, 165, 0, 0.1) 75%,
    rgba(255, 215, 0, 0.15) 100%
  );
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2),
    0 0 60px rgba(255, 215, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: prizePoolPulse 3s ease-in-out infinite;
}

@keyframes prizePoolPulse {
  0%,
  100% {
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2),
      0 0 60px rgba(255, 215, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3),
      0 0 80px rgba(255, 215, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

.prize-pool-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.prize-pool-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.6));
  animation: prizeIconFloat 2s ease-in-out infinite;
}

@keyframes prizeIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.prize-pool-title-section {
  flex: 1;
  min-width: 200px;
}

.prize-pool-main-title {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 50%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
}

.prize-pool-subtitle {
  font-size: 1.1rem;
  color: #e0e8ff;
  margin: 0;
  opacity: 0.9;
}

.prize-pool-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.2) 0%,
    rgba(255, 165, 0, 0.15) 100%
  );
  padding: 1rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  min-width: 180px;
}

.prize-pool-total-label {
  font-size: 0.85rem;
  color: #a0b0d0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.prize-pool-total-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 50%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(255, 215, 0, 0.5));
  animation: totalValuePulse 1.5s ease-in-out infinite;
}

@keyframes totalValuePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Prize Pool Grid */
.prize-pool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.prize-pool-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.prize-pool-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prize-pool-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.prize-pool-item:hover::before {
  opacity: 1;
}

/* Top 3 Special Styling */
.prize-pool-item.top-1 {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.2),
    rgba(255, 165, 0, 0.1)
  );
  border-color: rgba(255, 215, 0, 0.5);
  grid-row: span 1;
}

.prize-pool-item.top-2 {
  background: linear-gradient(
    135deg,
    rgba(192, 192, 192, 0.15),
    rgba(169, 169, 169, 0.1)
  );
  border-color: rgba(192, 192, 192, 0.4);
}

.prize-pool-item.top-3 {
  background: linear-gradient(
    135deg,
    rgba(205, 127, 50, 0.15),
    rgba(184, 115, 51, 0.1)
  );
  border-color: rgba(205, 127, 50, 0.4);
}

.prize-pool-place {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.prize-pool-place-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.prize-pool-value {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.prize-pool-description {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Prize Pool Decorations */
.prize-pool-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.prize-pool-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  animation: glowRotate 10s linear infinite;
}

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

.prize-pool-sparkle {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.6;
  animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-1 {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.sparkle-2 {
  bottom: 20%;
  left: 8%;
  animation-delay: 1s;
}

.sparkle-3 {
  top: 60%;
  right: 25%;
  animation-delay: 2s;
}

@keyframes sparkleFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px) scale(1.2);
    opacity: 1;
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Prize Pool */
@media (max-width: 768px) {
  .prize-pool-banner {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .prize-pool-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .prize-pool-title-section {
    width: 100%;
    text-align: center;
  }

  .prize-pool-total {
    width: 100%;
    align-items: center;
  }

  .prize-pool-icon {
    font-size: 3rem;
    margin: 0 auto;
  }

  .prize-pool-main-title {
    font-size: 1.5rem;
  }

  .prize-pool-total-value {
    font-size: 2rem;
  }

  .prize-pool-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
  }

  .prize-pool-item {
    padding: 0.75rem;
  }

  .prize-pool-value {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .prize-pool-banner {
    padding: 1rem;
    border-radius: 16px;
  }

  .prize-pool-main-title {
    font-size: 1.25rem;
    letter-spacing: 1px;
  }

  .prize-pool-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prize-pool-place {
    font-size: 1.25rem;
  }

  .prize-pool-value {
    font-size: 1rem;
  }
}

/* Leaderboard Info Box */
.leaderboard-info-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 1.25rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(27, 38, 59, 0.9) 0%,
    rgba(65, 90, 119, 0.8) 100%
  );
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.leaderboard-info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  animation: leaderboardInfoShine 3s ease-in-out infinite;
}

@keyframes leaderboardInfoShine {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

.leaderboard-info-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  animation: leaderboardIconPulse 2s ease-in-out infinite;
}

@keyframes leaderboardIconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.leaderboard-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.leaderboard-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.leaderboard-info-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* Responsive Leaderboard Info Box */
@media (max-width: 768px) {
  .leaderboard-info-box {
    flex-direction: column;
    text-align: center;
    padding: 1rem 1.25rem;
    margin: 0 1rem 2rem 1rem;
    max-width: calc(100% - 2rem);
  }

  .leaderboard-info-icon {
    font-size: 2rem;
  }

  .leaderboard-info-title {
    font-size: 1rem;
  }

  .leaderboard-info-subtitle {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .leaderboard-info-box {
    padding: 0.8rem 1rem;
    gap: 0.75rem;
  }

  .leaderboard-info-icon {
    font-size: 1.75rem;
  }

  .leaderboard-info-title {
    font-size: 0.95rem;
  }

  .leaderboard-info-subtitle {
    font-size: 0.8rem;
  }
}

/* Leaderboard Tabs */
.leaderboard-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.leaderboard-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #a0b0d0;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.leaderboard-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.leaderboard-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.leaderboard-tab.active {
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  border-color: transparent;
  color: var(--bg-dark);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3);
  transform: translateY(-3px) scale(1.05);
}

.leaderboard-tab.active::before {
  opacity: 1;
}

.leaderboard-tab .tab-icon {
  font-size: 1.25rem;
}

/* Leaderboard Content */
.leaderboard-content {
  margin-top: 2rem;
}

/* Podium (Top 3) */
.leaderboard-podium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.podium-place {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);

  /* Scroll Animation - Initial State */
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.podium-place.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.podium-place:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.podium-place.first {
  order: 2;
  background: radial-gradient(
      ellipse at top,
      rgba(255, 215, 0, 0.3) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 193, 7, 0.15));
  border: 3px solid var(--gold);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4),
    0 0 80px rgba(255, 215, 0, 0.3), inset 0 0 60px rgba(255, 215, 0, 0.1);
  position: relative;
  transition-delay: 0.2s;
}

.podium-place.first.visible {
  transform: scale(1.15);
}

.podium-place.first::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 20px;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold), #ffed4e, var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
  0%,
  100% {
    opacity: 0.6;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
  }
}

.podium-place.first:hover {
  transform: scale(1.18) translateY(-10px);
  box-shadow: 0 25px 80px rgba(255, 215, 0, 0.5),
    0 0 100px rgba(255, 215, 0, 0.4);
}

.podium-place.second {
  order: 1;
  background: radial-gradient(
      ellipse at top,
      rgba(192, 192, 192, 0.3) 0%,
      transparent 70%
    ),
    linear-gradient(
      135deg,
      rgba(192, 192, 192, 0.25),
      rgba(169, 169, 169, 0.15)
    );
  border: 2px solid var(--silver);
  box-shadow: 0 15px 40px rgba(192, 192, 192, 0.3),
    0 0 40px rgba(192, 192, 192, 0.2);
  transition-delay: 0.1s;
}

.podium-place.second:hover {
  box-shadow: 0 20px 50px rgba(192, 192, 192, 0.4),
    0 0 60px rgba(192, 192, 192, 0.3);
}

.podium-place.third {
  order: 3;
  background: radial-gradient(
      ellipse at top,
      rgba(205, 127, 50, 0.3) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, rgba(205, 127, 50, 0.25), rgba(184, 115, 51, 0.15));
  border: 2px solid var(--bronze);
  box-shadow: 0 15px 40px rgba(205, 127, 50, 0.3),
    0 0 40px rgba(205, 127, 50, 0.2);
  transition-delay: 0.3s;
}

.podium-place.third:hover {
  box-shadow: 0 20px 50px rgba(205, 127, 50, 0.4),
    0 0 60px rgba(205, 127, 50, 0.3);
}

.podium-crown {
  font-size: 3.5rem;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9))
    drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
  animation: crownFloat 3s ease-in-out infinite;
  z-index: 10;
}

@keyframes crownFloat {
  0%,
  100% {
    transform: translateX(-50%) rotate(-10deg) translateY(0px);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9))
      drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
  }
  50% {
    transform: translateX(-50%) rotate(10deg) translateY(-8px);
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 1))
      drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
  }
}

.podium-medal {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  animation: medalSpin 4s ease-in-out infinite;
  display: inline-block;
}

@keyframes medalSpin {
  0%,
  100% {
    transform: rotateY(0deg);
  }
  25% {
    transform: rotateY(180deg);
  }
  50% {
    transform: rotateY(360deg);
  }
  75% {
    transform: rotateY(180deg);
  }
}

.podium-place.first .podium-medal {
  filter: drop-shadow(0 0 15px var(--gold))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.podium-place.second .podium-medal {
  filter: drop-shadow(0 0 12px var(--silver))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.podium-place.third .podium-medal {
  filter: drop-shadow(0 0 12px var(--bronze))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.podium-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.podium-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podium-username {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.podium-place.first .podium-username {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.podium-brand {
  font-size: 0.95rem;
  color: #8b9dc3;
  margin-bottom: 0.75rem;
}

.podium-bets {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.podium-place.first .podium-bets {
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldPulse 2s ease-in-out infinite;
}

.podium-place.second .podium-bets {
  color: var(--silver);
  filter: drop-shadow(0 0 8px rgba(192, 192, 192, 0.5));
}

.podium-place.third .podium-bets {
  color: var(--bronze);
  filter: drop-shadow(0 0 8px rgba(205, 127, 50, 0.5));
}

@keyframes goldPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
  }
}

.podium-rank {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}

.podium-rank sup {
  font-size: 0.75rem;
  font-weight: 600;
}

/* Leaderboard List (Ranks 4-10) */
.leaderboard-list {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.leaderboard-list-header {
  display: grid;
  grid-template-columns: 80px 1fr 150px 120px 120px;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.list-header-col {
  font-size: 0.875rem;
  font-weight: 700;
  color: #8b9dc3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leaderboard-list-body {
  min-height: 300px;
}

.leaderboard-row {
  display: grid;
  grid-template-columns: 80px 1fr 150px 120px 120px;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  align-items: center;
  position: relative;

  /* Scroll Animation - Initial State */
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease,
    box-shadow 0.4s ease;
}

.leaderboard-row.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered Animation Delays for Rows 4-10 */
.leaderboard-row:nth-child(1).visible {
  transition-delay: 0.1s;
}
.leaderboard-row:nth-child(2).visible {
  transition-delay: 0.2s;
}
.leaderboard-row:nth-child(3).visible {
  transition-delay: 0.3s;
}
.leaderboard-row:nth-child(4).visible {
  transition-delay: 0.4s;
}
.leaderboard-row:nth-child(5).visible {
  transition-delay: 0.5s;
}
.leaderboard-row:nth-child(6).visible {
  transition-delay: 0.6s;
}
.leaderboard-row:nth-child(7).visible {
  transition-delay: 0.7s;
}

.leaderboard-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.leaderboard-row:hover {
  background: linear-gradient(
    90deg,
    rgba(255, 215, 0, 0.08) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  transform: translateX(8px);
  box-shadow: -4px 0 20px rgba(255, 215, 0, 0.15);
}

.leaderboard-row:hover::before {
  opacity: 1;
}

.leaderboard-row:last-child {
  border-bottom: none;
}

.row-rank {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.2),
    rgba(255, 215, 0, 0.05)
  );
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.leaderboard-row:hover .row-rank {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.3),
    rgba(255, 215, 0, 0.1)
  );
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  transform: scale(1.1);
}

.row-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.row-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.row-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.row-user-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.row-brand {
  font-size: 1rem;
  color: #8b9dc3;
  font-weight: 500;
}

.row-bets {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00d9ff, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.3));
}

.row-prize {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.leaderboard-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* padding: 4rem 2rem; */
  text-align: center;
}

.leaderboard-empty p {
  font-size: 1.2rem;
  color: #8b9dc3;
}

/* Leaderboard Info */
.leaderboard-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.leaderboard-timer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.timer-icon {
  font-size: 2rem;
}

.timer-text {
  display: flex;
  flex-direction: column;
}

.timer-label {
  font-size: 0.875rem;
  color: #8b9dc3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timer-value {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
  animation: timerPulse 1.5s ease-in-out infinite;
}

@keyframes timerPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
  }
}

.leaderboard-update {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #8b9dc3;
}

.update-icon {
  font-size: 1.25rem;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 1024px) {
  .leaderboard-title {
    font-size: 2.5rem;
  }

  .leaderboard-podium {
    gap: 1rem;
  }

  .podium-place.first {
    transform: scale(1.05);
  }

  .podium-place.first:hover {
    transform: scale(1.05) translateY(-8px);
  }

  .leaderboard-list-header,
  .leaderboard-row {
    grid-template-columns: 60px 1fr 120px 100px 100px;
    padding: 1rem;
    gap: 0.75rem;
  }

  .list-header-col {
    font-size: 0.75rem;
  }

  .row-rank {
    font-size: 1.25rem;
  }

  .row-user-name {
    font-size: 1rem;
  }

  .row-bets,
  .row-prize {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .leaderboard-section {
    margin: 2rem auto;
    border-radius: 16px;
  }

  .leaderboard-title {
    font-size: 2rem;
  }

  .leaderboard-subtitle {
    font-size: 1rem;
  }

  .leaderboard-tabs {
    gap: 0.5rem;
  }

  .leaderboard-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .leaderboard-tab .tab-icon {
    font-size: 1rem;
  }

  /* Stack Podium Vertically on Mobile */
  .leaderboard-podium {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 400px;
  }

  .podium-place.first,
  .podium-place.second,
  .podium-place.third {
    order: initial;
    transform: scale(1);
  }

  .podium-place.first:hover,
  .podium-place.second:hover,
  .podium-place.third:hover {
    transform: translateY(-4px);
  }

  /* Simplified List Layout for Mobile */
  .leaderboard-list-header {
    display: none;
  }

  .leaderboard-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    position: relative;
  }

  .row-rank {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
  }

  .row-user {
    width: 100%;
  }

  .row-user-avatar {
    width: 50px;
    height: 50px;
  }

  .row-brand,
  .row-bets,
  .row-prize {
    width: 100%;
    text-align: left;
    padding-left: 66px;
  }

  .row-brand::before {
    content: "Casino: ";
    color: #8b9dc3;
    font-weight: 600;
  }

  .row-bets::before {
    content: "Wetten: ";
    color: #8b9dc3;
    font-weight: 600;
  }

  .row-prize::before {
    content: "Preis: ";
    color: #8b9dc3;
    font-weight: 600;
  }

  .leaderboard-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .timer-value {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .leaderboard-icon {
    font-size: 3rem;
  }

  .leaderboard-title {
    font-size: 1.75rem;
  }

  .leaderboard-tab {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }

  .podium-medal {
    font-size: 2.5rem;
  }

  .podium-avatar {
    width: 60px;
    height: 60px;
  }

  .podium-username {
    font-size: 1.1rem;
  }

  .podium-bets {
    font-size: 1.25rem;
  }

  .row-user-avatar {
    width: 40px;
    height: 40px;
  }

  .row-user-name {
    font-size: 0.95rem;
  }

  .row-brand,
  .row-bets,
  .row-prize {
    padding-left: 56px;
    font-size: 0.9rem;
  }
}

/* ===================================
   EXTENDED GIVEAWAY SYSTEM STYLES
   =================================== */

/* Giveaway Modal */
.giveaway-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
}

.giveaway-modal.show {
  opacity: 1;
}

.giveaway-modal-content {
  background: linear-gradient(135deg, #1b263b 0%, #415a77 100%);
  border-radius: 20px;
  max-width: 500px;
  width: calc(100% - 20px);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .giveaway-modal {
    padding: 5px;
  }

  .giveaway-modal-content {
    width: calc(100% - 10px);
    border-radius: 15px;
    max-height: 95vh;
  }

  .giveaway-modal-header {
    padding: 20px 15px 15px 15px;
  }

  .giveaway-modal-header h2 {
    font-size: 1.4rem;
  }

  .giveaway-modal-body {
    padding: 20px 15px;
  }

  .giveaway-submit-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

.giveaway-modal-header {
  padding: 30px 30px 20px 30px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
}

.giveaway-modal-header h2 {
  margin: 0;
  color: var(--gold);
  font-size: 1.8rem;
  text-align: center;
}

.giveaway-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.giveaway-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.giveaway-modal-body {
  padding: 30px;
}

.giveaway-modal-body p {
  color: #e0e8ff;
  margin-bottom: 20px;
  line-height: 1.6;
}

.giveaway-modal-note {
  font-size: 0.9rem;
  color: #a0b0d0;
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}

.giveaway-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
  color: #0d1b2a;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.giveaway-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.giveaway-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Giveaway Actions Section */
#giveawayActions {
  margin: 3rem 0;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  box-sizing: border-box;
  overflow: hidden;
}

.giveaway-actions-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 2rem;
  text-align: center;
  word-wrap: break-word;
}

.giveaway-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
  width: 100%;
}

.giveaway-action-card {
  background: linear-gradient(135deg, #1b263b 0%, #2a3f5f 100%);
  border-radius: 15px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.giveaway-action-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.giveaway-action-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.giveaway-action-card:hover::before {
  opacity: 1;
}

.action-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.action-content {
  position: relative;
  z-index: 2;
}

.action-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
}

.action-description {
  font-size: 0.9rem;
  color: #a0b0d0;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.action-reward {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 1rem;
}

.action-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
  color: #0d1b2a;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* Responsive Giveaway Actions */
@media (max-width: 768px) {
  #giveawayActions {
    margin: 2rem 0;
    padding: 1.5rem 0.8rem;
  }

  .giveaway-actions-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .giveaway-actions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .giveaway-action-card {
    padding: 1.2rem;
  }

  .action-icon {
    font-size: 2.5rem;
  }

  .action-name {
    font-size: 1.1rem;
  }

  .action-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  #giveawayActions {
    margin: 1.5rem 0;
    padding: 1rem 0.5rem;
    border-radius: 12px;
  }

  .giveaway-actions-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .giveaway-action-card {
    padding: 1rem;
    border-radius: 10px;
  }

  .action-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .action-name {
    font-size: 1rem;
  }

  .action-description {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .action-reward {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .action-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Giveaway Timer Display */
.giveaway-timer-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1) 0%,
    rgba(255, 215, 0, 0.05) 100%
  );
  border-radius: 15px;
}

.timer-unit {
  text-align: center;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  min-width: 60px;
}

.timer-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold);
}

.timer-label {
  font-size: 0.8rem;
  color: #a0b0d0;
  margin-top: 5px;
}

.timer-separator {
  font-size: 2rem;
  color: var(--gold);
  font-weight: bold;
}

/* Ticket Counter Badge */
.ticket-counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
  border-radius: 50px;
  color: #0d1b2a;
  font-weight: bold;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.ticket-icon {
  font-size: 1.5rem;
}

.ticket-count {
  font-size: 1.8rem;
  font-weight: bold;
}

.ticket-label {
  font-size: 0.9rem;
}

/* Giveaway Messages */
.giveaway-message {
  position: fixed;
  top: 100px;
  right: 20px;
  max-width: 400px;
  padding: 20px 25px;
  border-radius: 10px;
  color: white;
  font-weight: 500;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  transform: translateX(500px);
  transition: transform 0.3s ease;
}

.giveaway-message.show {
  transform: translateX(0);
}

.giveaway-message-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.giveaway-message-error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.giveaway-message-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.giveaway-message-info {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .giveaway-actions-grid {
    grid-template-columns: 1fr;
  }

  .giveaway-modal-content {
    margin: 10px;
    max-width: 100%;
  }

  .giveaway-timer-display {
    flex-wrap: wrap;
    gap: 5px;
  }

  .timer-unit {
    min-width: 50px;
    padding: 8px 10px;
  }

  .timer-value {
    font-size: 1.5rem;
  }

  .giveaway-message {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* Ref Link Modal Specific Styles */
.ref-link-display {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.ref-link-display label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.ref-link-box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ref-link-box input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 15px;
  color: #e0e8ff;
  font-size: 0.9rem;
  font-family: "Courier New", monospace;
}

.ref-link-box .copy-btn {
  background: linear-gradient(135deg, var(--gold), #ffed4e);
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 50px;
}

.ref-link-box .copy-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.reward-display {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1),
    rgba(255, 215, 0, 0.05)
  );
  border-radius: 12px;
  margin: 20px 0;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.reward-icon {
  font-size: 3rem;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.reward-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.reward-text strong {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 800;
}

.reward-text span {
  font-size: 0.9rem;
  color: #a0b0d0;
}

.action-modal-description {
  font-size: 1.05rem;
  color: #c0d0ff;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}

.giveaway-modal-body small {
  display: block;
  margin-top: 8px;
  color: #8090b0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.giveaway-submit-btn .btn-icon {
  font-size: 1.2rem;
}

/* Responsive adjustments for ref link modal */
@media (max-width: 768px) {
  .ref-link-box {
    flex-direction: column;
  }

  .ref-link-box .copy-btn {
    width: 100%;
  }

  .reward-display {
    flex-direction: column;
    text-align: center;
  }

  .reward-icon {
    font-size: 2.5rem;
  }
}

/* ===================================
   GIVEAWAY SECTION - REDESIGN (Screenshot-Style)
   =================================== */

/* Giveaway Section - Design passend zur Index-Seite */
.giveaway-section {
  width: 100%;
  max-width: 900px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: var(--card-gradient);
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.giveaway-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.05) 0%,
    transparent 50%,
    rgba(255, 215, 0, 0.05) 100%
  );
  border-radius: 24px;
  z-index: 0;
  pointer-events: none;
}

@keyframes giveawayPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

/* Header */
.giveaway-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 3rem;
}

.giveaway-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.giveaway-main-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.giveaway-countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.countdown-label {
  font-size: 1.5rem;
}

.countdown-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}

/* Top 3 Prizes */
.giveaway-prizes-top3 {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.prize-card-top {
  background: rgba(27, 38, 59, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.prize-card-top:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.6);
}

.prize-card-top.first {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.2),
    rgba(255, 165, 0, 0.1)
  );
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.prize-place-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid rgba(255, 215, 0, 0.4);
  color: var(--gold);
}

.prize-icon {
  font-size: 5rem;
  margin: 1.5rem 0 1rem 0;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.prize-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.75rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prize-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  margin: 1rem 0;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5),
    0 4px 12px rgba(255, 215, 0, 0.3);
  line-height: 1;
}

.prize-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
  line-height: 1.5;
}

/* Weitere Preise (4-10+) */
.giveaway-prizes-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.prize-card {
  background: rgba(27, 38, 59, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.prize-card:hover {
  background: rgba(27, 38, 59, 0.8);
  transform: translateX(8px);
  border-color: rgba(255, 215, 0, 0.4);
}

.prize-card-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.prize-card-content {
  flex: 1;
}

.prize-card-place {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prize-card-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.prize-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Regeln Section */
.giveaway-rules-section {
  position: relative;
  z-index: 2;
  background: rgba(27, 38, 59, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.giveaway-rules-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin: 0 0 1.5rem 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.giveaway-rules-content {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 2;
  white-space: pre-line;
  text-align: left;
}

.giveaway-rules-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.giveaway-rules-content li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.giveaway-rules-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Actions Section */
.giveaway-actions-section {
  position: relative;
  z-index: 2;
}

.giveaway-actions-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin: 0 0 2rem 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.giveaway-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 1.5rem;
}

.action-card {
  background: rgba(27, 38, 59, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1rem 1rem 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.action-card:hover {
  background: rgba(65, 90, 119, 0.7);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.action-card-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.action-card-icon {
  font-size: 3rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.action-card-content {
  flex: 1;
}

.action-card-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  /* margin-bottom: 0.5rem; */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.action-card-desc {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.action-card-button {
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.action-card-button:hover {
  background: white;
  color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .giveaway-prizes-top3 {
    grid-template-columns: 1fr;
  }

  .prize-card-top.first {
    transform: scale(1);
  }

  .giveaway-actions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .giveaway-section {
    padding: 2rem 1rem;
    /* margin: 2rem 1rem; */
  }

  .giveaway-main-title {
    font-size: 2.5rem;
  }

  .giveaway-prizes-list {
    grid-template-columns: 1fr;
  }

  .prize-value {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .giveaway-main-title {
    font-size: 2rem;
  }

  .countdown-value {
    font-size: 1.1rem;
  }

  .action-card {
    flex-direction: column;
    text-align: center;
  }

  .action-card-left {
    flex-direction: column;
    text-align: center;
  }
}

/* ===================================
   ACTION MODAL - Popup für Aktionen
   =================================== */

.action-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.action-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.action-modal-content {
  position: relative;
  z-index: 10001;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--primary) 100%);
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.action-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10002;
}

.action-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.action-modal-header {
  text-align: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.action-modal-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.action-modal-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.action-modal-subtitle {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
}

.action-modal-body {
  padding: 2rem;
  overflow-x: hidden;
}

.action-modal-link-section,
.action-modal-form-section {
  margin-bottom: 2rem;
}

.action-modal-info {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.action-modal-info strong {
  color: var(--gold);
  font-weight: 700;
}

.action-modal-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--bg-dark);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.action-modal-link-btn:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.action-link-icon {
  font-size: 1.5rem;
}

.action-link-arrow {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.action-modal-link-btn:hover .action-link-arrow {
  transform: translateX(5px);
}

.action-email-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 215, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.action-email-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form-checkbox label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  cursor: pointer;
  line-height: 1.4;
}

.action-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.action-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

.action-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#actionFormStatus {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

.action-modal-rewards {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  margin-top: 1.5rem;
}

.rewards-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.rewards-text {
  flex: 1;
  color: white;
}

.rewards-text strong {
  color: var(--gold);
  font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .action-modal-content {
    margin: 1rem;
    max-height: 95vh;
  }

  .action-modal-header {
    padding: 1.5rem 1rem;
  }

  .action-modal-body {
    padding: 1.5rem 1rem;
  }

  .action-modal-icon {
    font-size: 3rem;
  }

  .action-modal-title {
    font-size: 1.5rem;
  }

  .action-modal-subtitle {
    font-size: 1rem;
  }
}
