/* captaincredit.css — Clean Mobile-Friendly Hero Page */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Comic Neue', sans-serif;
  background-color: #000;
  color: #e8ffe8;
  line-height: 1.6;
  text-align: center;
  padding: 0 1rem;
}

/* HEADER */
.hero-header {
  background: linear-gradient(180deg, #003300 0%, #000 100%);
  padding: 2rem 1rem;
  border-bottom: 2px solid #00ff80;
  box-shadow: 0 0 12px rgba(0, 255, 128, 0.3);
}

.hero-title {
  font-family: 'Bangers', cursive;
  color: #00ff80;
  font-size: clamp(2rem, 6vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 0 8px #00ff80, 0 0 20px #007a33;
  margin-bottom: 0.3rem;
}

.tagline {
  font-family: 'Comic Neue', sans-serif;
  color: #baffd9;
  font-size: clamp(1rem, 3vw, 1.25rem);
  margin-top: 0.25rem;
  text-shadow: 0 0 6px #00ff80;
}

/* MAIN CONTENT */
main {
  max-width: 800px;
  margin: 1.5rem auto;
  padding: 0 0.5rem;
}

/* CONTENT BOX */
.content {
  background-color: #0b1a0f;
  padding: 1.25rem;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 255, 128, 0.35);
  color: #c0ffd5;
  text-align: left;
}

.content h2 {
  font-family: 'Bangers', cursive;
  color: #00ff80;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: clamp(1.4rem, 4.5vw, 1.8rem);
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 0 6px #00ff80;
}

.content p {
  font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  margin-bottom: 1rem;
  text-align: left;
}

/* IMAGE */
.hero-img {
  display: block;
  margin: 1.5rem auto;
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 128, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 28px rgba(0, 255, 128, 0.8);
}

/* BUTTONS */
.button-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  font-family: 'Bangers', cursive;
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 12px;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  text-align: center;
  cursor: pointer;
  border: none;
  min-width: 130px;
}

/* Green “Hero” Buttons */
.btn-hero {
  background-color: #00ff80;
  color: #111;
  box-shadow: 0 4px 12px rgba(0, 255, 128, 0.4);
}

.btn-hero:hover {
  background-color: #00ffaa;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 255, 128, 0.6);
}

/* Red “Alert” Buttons */
.btn-alert {
  background-color: #ff004f;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 0, 79, 0.4);
}

.btn-alert:hover {
  background-color: #ff3366;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(255, 0, 79, 0.6);
}

/* FOOTER */
footer {
  background-color: #0a0a0a;
  padding: 1rem;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  border-top: 1px solid rgba(0, 255, 128, 0.2);
}

/* RESPONSIVE TUNING */
@media (min-width: 768px) {
  .content {
    padding: 2rem;
  }

  .content p {
    font-size: 1.1rem;
  }

  .button-container {
    gap: 20px;
  }

  .btn {
    min-width: 160px;
    padding: 12px 28px;
  }
}
@media (min-width: 1024px) {
  body {
    padding: 0 2rem;
  }

  main {
    padding: 0;
  }
}

