/* Reset & font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(145deg, #000000, #0a0f2c);
  color: #ffffff;
  padding: 2rem;
}

/* Container styling */
.affiliate-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.content-box {
  background: rgba(15, 20, 40, 0.9);
  border-radius: 16px;
  padding: 3rem;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

/* Headings */
.content-box h1 {
  font-size: 2.5rem;
  color: #0ff; /* Neon Cyan */
  text-align: center;
  margin-bottom: 1rem;
}

.subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 2rem;
}

/* Highlight sections */
.highlight-box {
  background-color: #101530;
  padding: 1.5rem;
  border-left: 5px solid #0ff;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.highlight-box h2 {
  color: #0ff;
  margin-bottom: 0.8rem;
}

.highlight-box p,
.highlight-box ul,
.highlight-box ol {
  color: #ccc;
  line-height: 1.6;
}

.highlight-box span.neon {
  color: #0ff;
  font-weight: bold;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  margin: 0 auto;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: #0ff;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background: #00faff;
  transform: scale(1.05);
}