
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #0f0f0f;
  color: #f4f4f4;
  text-align: center;
}
.hero {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: white;
  padding: 60px 20px;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cta-button {
  background-color: #fff;
  color: #111;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.cta-button:hover {
  background-color: #ffcc80;
  transform: scale(1.1);
}
.pulse {
  animation: pulseAnim 1.5s infinite;
}
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulseAnim {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.grid-container {
  padding: 40px 20px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}
.block {
  background: rgba(255,255,255,0.08);
  border: 2px solid #444;
  padding: 25px 0;
  font-weight: bold;
  color: #f4f4f4;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}
.block:hover {
  background-color: #23d5ab;
  color: #111;
  transform: scale(1.08);
}
.disclaimer {
  padding: 40px 20px;
  background-color: #222;
  font-size: 0.9rem;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 8px;
}
footer {
  padding: 20px;
  background-color: #111;
  font-size: 0.9rem;
  color: #ccc;
}
