h1, h2 {
  font-family: 'Bangers', cursive;
}

body, p {
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  background-color: #0a0a23;
  color: #f5f5f5;
}

/* HEADER AREA */
header {
  background-image: url("bolt-background.png");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 120px 32px;
  position: relative;
  color: white;
}

.overlay {
  background-color: rgba(10, 10, 35, 0.85);
  padding: 48px 64px;
  border-radius: 12px;
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}

h1 {
  font-size: 93px; /* equivalent to 70pt */
  color: #f5e216;
  margin: 0;
  letter-spacing: 1.5px;
}

.tagline {
  font-size: 21px;
  margin: 20px 0;
  color: #00fff7;
}

.cta-btn {
  display: inline-block;
  background-color: #ff007f;
  color: white;
  padding: 12px 24px;
  margin-top: 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #ff007f;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #d9006f;
}

/* SECTIONS */
section {
  padding: 48px 32px;
}

h2 {
  text-align: center;
  color: #f5e216;
  margin-bottom: 32px;
  font-size: 36px;
}

/* HOW TO PLAY GRID */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  background: #1f1f2e;
  border-left: 5px solid #ff2c2c;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
}

/* PRODUCT IMAGE */
.product-img {
  display: block;
  max-width: 300px;
  margin: 0 auto;
  box-shadow: 0 0 20px #ff007f;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #f5e216, 0 0 60px #ff007f;
}

/* SHOCK SECTION */
#shock {
  background-image: url("lighting-bolt.png");
  background-size: cover;
  background-position: center;
  padding: 80px 32px;
  text-align: center;
}

.shock-bg {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 32px;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
  color: white;
  font-size: 18px;
}

/* FOOTER */
footer {
  bbackground-image: url("bolt-background.png");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 32px;
  font-size: 14px;
  color: #fff;
}