/* ================================ */
/* GLOBAL SETTINGS */
/* ================================ */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Orbitron', sans-serif;
  background: transparent; /* Canvas sichtbar machen */
  color: #fff;
  overflow-x: hidden;
}

/* Canvas Background */
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: black; /* optional für dunklen Space */
}

/* ================================ */
/* CONTAINER & LAYOUT */
/* ================================ */
.container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 50px 20px;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 200vh;
  background: transparent; /* Canvas sichtbar */
}

/* ================================ */
/* HEADER */
/* ================================ */
header h1 {
  font-size: 3em;
  color: #ff7f00;
  text-shadow: 0 0 12px #ff7f00, 0 0 30px rgba(255,127,0,0.9);
  margin-bottom: 20px;
}
header p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 50px auto;
  line-height: 1.5;
  color: #ffa64d;
  text-shadow: 0 0 6px rgba(255,160,77,0.6);
}

/* ================================ */
/* FEATURES BOXES WITH NEON GLOW */
/* ================================ */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px; /* Abstand zwischen Boxen */
  margin-bottom: 50px;
}

.feature {
  background: rgba(20, 20, 20, 0.5); /* leicht transparent, Canvas sichtbar */
  padding: 30px;
  border-radius: 25px;
  width: 280px;
  box-shadow: 
    0 0 25px rgba(255,127,0,0.9), 
    0 0 50px rgba(255,127,0,0.6), 
    0 0 80px rgba(255,127,0,0.3);
  border: 2px solid rgba(255,127,0,0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 
    0 0 90px rgba(255,127,0,1), 
    0 0 150px rgba(255,127,0,0.7), 
    0 0 200px rgba(255,127,0,0.4);
}

.feature h2 {
  color: #ff7f00;
  margin-bottom: 12px;
  text-shadow: 0 0 12px #ff7f00, 0 0 30px rgba(255,127,0,0.8);
  font-size: 1.5rem;
}

.feature p {
  color: #ffa64d;
  font-size: 1rem;
  line-height: 1.4;
  text-shadow: 0 0 6px rgba(255,160,77,0.6);
}

/* ================================ */
/* CTA BUTTON */
/* ================================ */
.cta-button {
  padding: 20px 40px;
  background: #ff7f00;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 12px;
  font-size: 1.2em;
  transition: 0.3s;
  text-shadow: 0 0 12px #ff7f00, 0 0 24px rgba(255,127,0,0.7);
}
.cta-button:hover {
  background: #ffa64d;
  color: black;
  transform: scale(1.1);
  box-shadow: 0 0 35px #ff7f00, 0 0 70px rgba(255,127,0,0.7);
}

/* ================================ */
/* FOOTER */
/* ================================ */
footer {
  margin-top: 60px;
  font-size: 0.9em;
  color: #888;
}

/* ================================ */
/* BTC BOX */
/* ================================ */
#btc-box {
  margin-top: 160px;
  margin-bottom: 150px;
  text-align: center;
}
#btc-box h2 {
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin-bottom: 35px;
  text-shadow: 0 0 20px #F7931A, 0 0 40px rgba(247,147,26,0.8);
}
#btc-price {
  font-size: 3.5rem;
  font-weight: bold;
  color: #F7931A;
  transition: all 0.4s ease;
  text-shadow: 0 0 25px #F7931A, 0 0 50px rgba(247,147,26,0.5);
}

/* ================================ */
/* SCROLL ANIMATION */
/* ================================ */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease, text-shadow 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 0 12px rgba(255,127,0,0.5);
}

/* ================================ */
/* SCROLLBAR FIX */
/* ================================ */
html, body {
  overflow-y: auto;
  overflow-x: hidden;
}
