
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
  padding: 0;
  margin: 0;
  background: url('coin-bg1.png') no-repeat top left,
              url('coin-bg2.png') no-repeat bottom right,
              linear-gradient(160deg, #131313, #1c1c1c);
  background-size: 200px, 200px, cover;
  background-attachment: fixed;
  color: #fefefe;
  font-family: 'Orbitron', sans-serif;
}

header.hero {
  background: linear-gradient(180deg, #2e2e2e, #1a1a1a);
  border-bottom: 3px solid #ffcb6b;
  text-align: center;
  padding: 60px 20px;
}

header.hero h1 {
  font-size: 3em;
  color: #ffcb6b;
  text-shadow: 0 0 10px #ffcb6b;
}

header.hero p {
  color: #e4e4e4;
  font-size: 1.2em;
  margin: 10px 0;
}

header.hero a {
  background-color: #ffcb6b;
  color: #1a1a1a;
  text-decoration: none;
  padding: 12px 30px;
  margin: 10px;
  display: inline-block;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 0 12px #ffcb6b;
  transition: all 0.3s ease;
}

header.hero a:hover {
  background-color: #f7bb4e;
  box-shadow: 0 0 16px #ffe29d;
}

section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

section h2 {
  font-size: 2em;
  color: #ffcb6b;
  margin-bottom: 20px;
  text-shadow: 0 0 8px #ffcb6b;
}

section p, section ul li, section ol li {
  font-size: 1.1em;
  color: #eeeeee;
}

ul ul {
  margin-left: 20px;
}

a {
  color: #ffd98e;
}

footer {
  background-color: #1a1f29;
  padding: 20px;
  text-align: center;
  color: #999;
  border-top: 1px solid #ffcb6b;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin: 15px 0;
  box-shadow: 0 0 15px rgba(255, 203, 107, 0.3);
}

@media (max-width: 768px) {
  header.hero h1 {
    font-size: 2.2em;
  }

  header.hero p {
    font-size: 1em;
  }

  header.hero a {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  section h2 {
    font-size: 1.6em;
  }

  section {
    padding: 30px 15px;
  }
}
