@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle at top, #0a0a0a, #000);
  color: #f9d64a;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.logo {
  width: 140px;
  margin-bottom: 20px;
  border-radius: 50%;
}

h1 {
  font-size: 2.8rem;
  margin: 10px 0;
}

.tagline {
  color: #ddd;
  max-width: 600px;
}

.ca-box {
  display: flex;
  align-items: center;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid gold;
  border-radius: 10px;
  padding: 10px 15px;
  margin-top: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.ca-box:hover {
  background: rgba(255, 215, 0, 0.2);
}

#ca {
  font-size: 0.9rem;
  margin-right: 10px;
  word-break: break-all;
}

#copyBtn {
  color: gold;
  transition: 0.3s;
}

#copyBtn:hover {
  color: white;
}

.socials {
  margin-top: 25px;
}

.socials a {
  color: gold;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: 0.3s;
}

.socials a:hover {
  color: white;
}

.scroll-btn {
  position: absolute;
  bottom: 30px;
  border: 1px solid gold;
  background: transparent;
  color: gold;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.scroll-btn:hover {
  background: gold;
  color: black;
}

/* How to Buy Section */
.how-to-buy {
  background: #111;
  padding: 30px 15px;
  text-align: center;
}

.buy-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 700px;
  margin: 60px auto;
}

.buy-step {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: gold;
  box-shadow: 0 0 10px gold;
  margin-bottom: 15px;
}

.line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, gold, transparent);
}

.buy-card {
  background: linear-gradient(145deg, #1a1a1a, #000);
  border: 1px solid gold;
  padding: 20px 0px;
  border-radius: 15px;
  color: #f1f1f1;
  width: 100%;
  max-width: 500px;
  margin-bottom: 40px;
  text-align: center;
}

.chart-section {
  background: #0a0a0a;
  text-align: center;
  padding: 70px 20px;
}

.chart-embed {
  margin: 30px auto;
  max-width: 900px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border: 2px solid gold;
  color: gold;
  background: rgba(255, 215, 0, 0.08);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.btn:hover {
  background: gold;
  color: black;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
  transform: translateY(-3px);
}

.buy-btn {
  animation: pulseGold 2s infinite alternate;
}

.whitepaper-btn {
  border-color: #ffffff;
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.whitepaper-btn:hover {
  background: white;
  color: black;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 8px rgba(255, 215, 0, 0.3); }
  100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
}


.video-placeholder {
  border: 1px dashed gold;
  margin: 40px auto 0;
  height: 300px;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  border-radius: 15px;
  font-size: 1rem;
  transition: 0.3s;
}

.video-placeholder:hover {
  color: gold;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  border: 2px solid gold;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
  transition: 0.4s ease;
}

.video-container:hover {
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
  transform: scale(1.01);
}

.video-container iframe,
.video-container video {
  width: 100%;
  height: 500px;
  display: block;
  border: none;
}


footer {
  background: #000;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #caa945;
}

/* Responsive */
@media (min-width: 800px) {
  .buy-flow {
    flex-direction: row;
    justify-content: space-between;
  }

  .buy-step {
    flex: 1;
  }

  .line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, gold, transparent);
  }

  .dot {
    margin: 0 auto 15px;
  }
}
