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

body {
  margin: 0;
  font-family: 'Comic Neue', cursive, sans-serif;
  background: linear-gradient(to bottom, #ff7f00 0%, #ffd700 100%);
  color: #000;
  text-align: center;
}

header, main {
  padding: 10px;
}

.icon {
  width: 120px;
  border-radius: 50%;
}

.subtitle, .ca, .counter, .about-link {
  font-family: 'Comic Neue', cursive, sans-serif;
  font-weight: 600;
}

.subtitle {
  font-size: 1.1em;
  max-width: 90%;
  margin: 10px auto;
}

.ca {
  font-size: 0.85em;
  margin-top: 0;
  word-wrap: break-word;
}

.socials a {
  margin: 0 15px;
  font-size: 2.2em;
  color: #000;
  text-decoration: none;
}

h1 {
  font-size: 2.4em;
  margin-top: 20px;
}

.frog-container {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#bonk-frog {
  width: 300px;
  height: 300px;
  object-fit: cover;
  transition: transform 0.1s;
}

.counter {
  font-size: 1.3em;
  margin-top: 10px;
}

.about-link {
  display: inline-block;
  margin: 30px auto;
  color: #004d40;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  h1 {
    font-size: 1.9em;
  }

  .subtitle {
    font-size: 1em;
  }

  .counter {
    font-size: 1.1em;
  }

  .ca {
    font-size: 0.75em;
    padding: 0 5px;
  }

  .about-link {
    font-size: 1em;
  }

  .socials a {
    font-size: 1.7em;
  }
}