
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
}


.progress-bars-section {
  padding: 40px 0;
  margin-bottom: 40px;
}

.circle-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 20px;
}

.circle {
  position: relative;
  width: 200px;
  height: 200px;
}

.circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.circle-text h2 {
  font-size: 2.5rem;
  color: #7e7e7e;
  margin-bottom: 5px;
}

.circle-text p {
  color: #666;
  font-size: 1.1rem;
}

.circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-background {
  fill: none;
  stroke: #ecf0f1;
  stroke-width: 8;
}

#circle-left .circle-progress {
  fill: none;
  stroke: #dc3545;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1s ease;
}

#circle-right .circle-progress {
  fill: none;
  stroke: #28a745;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1s ease;
}


.content {
  position: relative;
  padding: 40px 20px;
}

.content-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f8f9fa;
  z-index: -1;
}

.content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.main-title {
  font-size: 2.5rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #3498db;
}

.blog-section {
  margin-bottom: 60px;
  padding: 20px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-section h2 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

.blog-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #34495e;
  margin-bottom: 20px;
}

.blog-image {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  object-fit: cover;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-image:hover {
  transform: scale(1.02);
}


.park-stats, .goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-box, .goal-box {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-box:hover, .goal-box:hover {
  transform: translateY(-5px);
}

.stat-box h3, .goal-box h3 {
  color: #3498db;
  font-size: 1.8rem;
  margin-bottom: 10px;
}


.help-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.help-box {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.help-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.help-box h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 15px;
}


.blog-section ul {
  list-style-type: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #333;
}

.blog-section ul li:before {
  content: "•";
  color: #28a745;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}


.game-box-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.game-box {
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.game-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  object-fit: cover;
}

.game-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}

.game-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.play-button {
  background-color: #28a745;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  animation: popUpButton 1s ease forwards, pulsate 2s infinite;
}

.play-button:hover {
  background-color: #218838;
}


.footer {
  background-color: #333;
  padding: 30px 0;
  color: white;
  margin-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  height: 40px;
  margin: 0 10px;
}

.footer-link, .tos-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover, .tos-link:hover {
  color: #e9ecef;
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes popUpButton {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .circle-container {
    flex-direction: column;
    align-items: center;
  }

  .content-container {
    padding: 15px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

.no-bg {
  background: none;
}

.footer {
  color: white;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}