/* === GLOBAL === */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle at center, #010518, #000000);
  color: #ffffff;
  overflow-x: hidden;
}

/* === Canvas Regen-Effekt === */
canvas#rain-canvas {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* === Hero Box === */
.hero {
  z-index: 2;
  position: relative;
  max-width: 500px;
  margin: 100px auto 30px;
  padding: 40px 30px;
  text-align: center;
  border-radius: 20px;
  background: rgba(0, 10, 25, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 30px rgba(0, 123, 255, 0.25);
  border: 1px solid rgba(0, 123, 255, 0.2);
}

/* === Logo === */
.hero-logo {
  width: 140px;
  height: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 16px #007bff);
}

/* === Social Buttons direkt unter Logo === */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 6px 0 18px;
}

.social-buttons img {
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 4px #007bff);
}

.social-buttons img:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px #339cff);
}

/* === Titel und Untertitel === */
.hero-title {
  font-size: 2.1rem;
  color: #007bff;
  text-shadow: 0 0 20px #0084ff, 0 0 40px #339cff;
  margin-bottom: 10px;
}

.hero-sub {
  color: #aad4ff;
  margin-bottom: 20px;
}

/* === Suchfeld === */
.search-box {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.search-box input {
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  width: 80%;
  max-width: 320px;
  background-color: rgba(0, 50, 70, 0.85);
  color: #ffffff;
  font-size: 14px;
  box-shadow: inset 0 0 6px #007bff55;
  outline: none;
}

/* === Search-Button unter dem Feld === */
.search-button {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.search-button button {
  padding: 12px 24px;
  background: #007bff;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 14px #007bff88;
  transition: background 0.3s ease, transform 0.2s ease;
}

.search-button button:hover {
  background: #005ecc;
  transform: scale(1.05);
}

/* === Coins Liste === */
.coin-list {
  font-size: 14px;
  color: #a5d5ff;
  margin-top: 10px;
}

/* === About Box direkt in Hero === */
.about-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 480px;
  padding: 28px 20px;
  background: rgba(0, 20, 50, 0.95);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 123, 255, 0.3);
  backdrop-filter: blur(14px);
  z-index: 999;
  color: #cceaff;
  font-size: 14px;
  border: 1px solid rgba(0, 123, 255, 0.2);
}

.about-popup h2 {
  color: #00aaff;
  font-size: 18px;
  margin-bottom: 14px;
  text-shadow: 0 0 6px #339cff;
}

.about-popup p {
  line-height: 1.6;
  margin: 10px 0;
}

.about-popup button {
  margin-top: 20px;
  padding: 10px 20px;
  font-family: 'Orbitron', sans-serif;
  border: none;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about-popup button:hover {
  background-color: #005ecc;
}

/* === Kleine Footer Buttons (About & Whitepaper) === */
.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.footer-buttons button,
.footer-buttons a {
  font-size: 12px;
  padding: 6px 12px;
  background: transparent;
  color: #aad4ff;
  border: 1px solid #007bff;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-buttons button:hover,
.footer-buttons a:hover {
  background-color: rgba(0, 123, 255, 0.1);
  color: #ffffff;
}

/* === Info-Boxen für Message, Marktdaten und Chart === */
.info-box {
  margin-top: 15px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(0, 30, 60, 0.8);
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.2);
  border: 1px solid rgba(0, 123, 255, 0.2);
  backdrop-filter: blur(12px);
  color: #aad4ff;
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

canvas#priceChart {
  margin-top: 20px;
  width: 100% !important;
  max-width: 100%;
  border-radius: 12px;
  background: rgba(0, 10, 25, 0.7);
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.15);
  display: none;
}


.about-inline {
  margin-top: 15px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(0, 20, 40, 0.85);
  border: 1px solid rgba(0, 123, 255, 0.2);
  box-shadow: 0 0 16px rgba(0, 123, 255, 0.1);
  color: #c2eaff;
  font-size: 14px;
  line-height: 1.6;
  backdrop-filter: blur(8px);
  text-align: left;
  display: none;
}

.about-inline h2 {
  color: #00aaff;
  font-size: 16px;
  margin-bottom: 10px;
  text-shadow: 0 0 6px #339cff;
}

#coinSuggestions div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

#coinSuggestions div:hover {
  background-color: rgba(0, 123, 255, 0.1);
}

#coinSuggestions img {
  border-radius: 50%;
}
