* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  line-height: 1.6;
  color: #333;
}

/* Header */
header {
  background-color: #FFCFCF;
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: red;
  text-shadow: 2px 2px 5px rgb(255, 106, 0);
}

header p {
  font-size: 1.1rem;
}

/* Section Headings with Color Animation */
section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  animation: rainbowFade 5s infinite alternate;
}

/* About Section */
#about {
  background-color: #FFE6C9;
  padding: 2rem;
  margin: 1rem;
  border-radius: 12px;
}

.green-river {
  color: #006202; 
  background: none;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Fun Facts Section */
#fun-facts {
  background-color: #d5e8ec;
  padding: 2rem;
  margin: 1rem;
  border-radius: 12px;
}

.fun-facts-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.fun-facts-content ul {
  flex: 1;
  min-width: 250px;
  list-style: disc inside;
}

.fun-facts-content li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.emoji-highlight {
  background-color: #fff458;
  border-radius: 4px;
  padding: 0 0.3rem;
  margin-right: 0.2rem;
}

/* Cat GIF */
.cat-gif {
  width: 200px;
  border: 4px solid #948979;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/* My Journey Section */
#my-journey {
  background-color: #e2fff8;
  padding: 2rem;
  margin: 1rem;
  border-radius: 12px;
  color: #333;
}

/* Cat Sticker Section */
#cat-stickers {
  background-color: #F6E6F6;
  padding: 2rem;
  margin: 1rem;
  border-radius: 12px;
  text-align: center;
}

.cat-sticker-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.cat-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cat-sticker {
  width: 100px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.6s ease;
  border: 4px solid #767676; 
}

.cat-sticker.spin {
  transform: rotate(360deg);
}

.click-count {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #444;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #CAE8BD;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 1rem;
}

footer a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
}

footer a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background-color: #537D5D;
  transition: width 0.4s ease;
}

footer a:hover::after {
  width: 100%;
}

footer a:hover {
  color: #537D5D;
}

/* Color Animation */
@keyframes rainbowFade {
  0%   { color: #FE5D26; }
  50%  { color: #5409DA; }
  100% { color: #537D5D; }
}

/* Responsive Layout */
@media (max-width: 600px) {
  .fun-facts-content {
    flex-direction: column;
    align-items: center;
  }

  .cat-gif {
    margin-top: 1rem;
  }
}
