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

.wrapper {
  min-height: 100vh;
  background-image: url("assets/background.png");
  background-size: cover;
  background-position: center;
  color: white;
  font-family: "Chakra Petch", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course-separator {
  margin: 30px 0;
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.main-content {
  text-align: center;
}

.highlight-text {
  color: #f7358f;
  font-weight: bold;
}

.notification {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bell-icon {
  width: 30px;
}

.content {
  display: grid;
  grid-template-columns: 450px auto;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 20px;
  align-items: start;
}

.content-details {
  background-color: rgba(0, 0, 0, 0.6);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 2rem;
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.content-header {
  margin-bottom: 14px;
}

.content-price {
  margin-top: auto;
  padding-top: 16px;
}

.price-discount {
  display: flex;
  align-items: center;
  justify-content: center;
}

.green-dot {
  width: 25px;
}

.green-text {
  color: green;
}

.red-dot {
  width: 25px;
}

.red-text {
  color: red;
}

.button {
  background-color: transparent;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  border: 2px solid white;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Chakra Petch", sans-serif;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
  animation: bounce2 2s ease infinite;
}

@keyframes bounce2 {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  60% {
    transform: translateY(-8px);
  }
}

.button:hover {
  background-color: white;
  color: #f7358f;
}

.track-img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
  margin-top: 1rem;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.6);
}

.footer p {
  font-size: 14px;
}

.footer-icon {
  font-size: 14px;
  color: white;
  margin: 0 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer-icon:hover {
  transform: scale(1.2);
}

/* Responsive styles */
@media (max-width: 968px) {
  .content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .content-details {
    min-height: auto;
  }

  .track-img {
    max-width: 100%;
  }
  
  .logo .logo-image {
    width: 250px;
    height: auto;
  }
}

@media (max-width: 568px) {
  .content {
    padding: 0 10px;
  }
}