/* 🔤 Globale Schrift */
* {
  font-family: Verdana, Geneva, sans-serif;
  letter-spacing: 0.75px;
  line-height: 1.5;
}

/* 🧩 Bot-Karten Grid Layout */
.bot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
html.dark .bot-grid {
  background-color: #121212;
}

/* ✨ Slide-In Animation */
.bot-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #F77F1B30;
  background: linear-gradient(135deg, #ffffff, #fff4e5);
}
.bot-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.bot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}
.bot-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
}

/* 🔸 Farbvarianten */
.signal {
  background: linear-gradient(135deg, #ff9900cc, #ffb347aa, #ffe0b3aa);
}
.trend {
  background: linear-gradient(135deg, #aa66ccbb, #cc99ff99, #e6ccff88);
}
.scalper {
  background: linear-gradient(135deg, #00cc99bb, #66ffcc99, #c6fff5aa);
}

/* 🌗 Dark Mode */
html.dark .bot-card {
  background: linear-gradient(135deg, #2a2a2a, #3b3b3b);
  color: #e5e5e5;
}
html.dark .signal {
  background: linear-gradient(135deg, #ffbb55aa, #ffaa33aa);
}
html.dark .trend {
  background: linear-gradient(135deg, #bb88ddbb, #cc99ffaa);
}
html.dark .scalper {
  background: linear-gradient(135deg, #33ddaa, #88ffeebb);
}

/* 🏷️ Badges */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.badge.active {
  background-color: #d1fae5;
  color: #065f46;
}
.badge.watch {
  background-color: #fef3c7;
  color: #92400e;
}

/* 🚀 Footer */
footer {
  background: linear-gradient(90deg, #F77F1B, #FFA733);
}
html.dark footer {
  background: linear-gradient(90deg, #F77F1B, #cc6600);
}

/* 🎨 Hintergrundanimationen */
.smooth-bg,
.hero-section,
.chart-section,
.intro-hero,
.bots-section {
  transition: background-color 3s ease 0.2s, color 3s ease 0.2s;
}
html:not(.dark) .smooth-bg {
  background-color: #ffffff;
  color: #1f1f1f;
}
html.dark .smooth-bg {
  background-color: #1a202c;
  color: #e5e5e5;
}
html.dark .hero-section {
  background-color: #1f1f1f;
  color: #fafafa;
}
html.dark .chart-section {
  background-color: #0f0f0f;
}
html.dark .intro-hero {
  background-color: #262626;
  color: #ffbb66;
}
html.dark .bots-section {
  background-color: #1a1a1a;
}

/* 🧭 Top-Bar & Theme Button */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: orange;
}
.theme-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.theme-toggle:hover {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .theme-toggle {
    font-size: 1.2rem;
  }
}

/* 🌀 Fade-In Icons */
.fade-icon {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#theme-icon,
#theme-icon-footer {
  transition: opacity 0.3s ease;
}

/* 📦 Mobiles Slide-In Menü */
#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 240px;
  max-width: 20vw;
  padding: 1rem;
  box-sizing: border-box;
  z-index: 50;
  background-color: #FDE68A;
  color: #1f1f1f;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
}
html.dark #mobile-menu {
  background-color: #7c2d12;
  color: #ffffff;
}
#mobile-menu.show {
  transform: translateX(0);
}
@media (max-width: 480px) {
  #mobile-menu {
    width: 80%;
    max-width: none;
  }
}

/* 📍 Navigationseinträge */
#mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 165, 0, 0.3);
}
#mobile-menu a:hover {
  color: #F77F1B;
}

/* ✖️ Menü schließen */
#mobile-menu-close {
  text-align: right;
  padding: 0.75rem 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.bot-card {
  text-align: center;
  padding: 1.5rem;
}

.bot-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.bot-grid {
  padding-left: 1rem;
  padding-right: 1rem;
}
.watch-icon {
  animation: pulse 1.5s infinite ease-in-out;
  transform-origin: center;
}

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