* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: aliceblue;
  font-family: "Montserrat", sans-serif;
}

html,
body {
  background-color: #000;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  height: 100%;
  color: #fff;
}

.main-container {
  text-align: start;
  padding-top: 10px;
}

.page-title {
  color: #ffffff;
  font-size: 36px;
}

.content-wrapper {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 20px;
}

.section-title {
  font-size: 34px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
}

.card-container {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 20px;
  width: 100vw;
  height: 100vh;
}

.event-card {
  background: linear-gradient(135deg, #1d1d1d, #000000);
  border: 2px solid white;
  border-radius: 12px;
  width: 610px;

  text-align: center;
  box-shadow: 0 8px 15px #d1b261;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.event-card:hover {
  transform: scale(1.05);
}

.event-image {
  width: 600px;

  object-fit: cover;
  border-radius: 12px;
}

.card-info {
  padding: 10px;
}

.card-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px #d1b261;
}

.card-summary {
  color: #fff;
  font-size: 1rem;
  margin-top: 10px;
  text-shadow: 2px 2px 8px #d1b261;
}

/* Responsive styles for smaller screens (e.g., mobile) */
@media (max-width: 768px) {
  .page-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .event-card {
    width: 100%;
    max-width: 400px;
    /* Adjust card width for mobile */
  }

  .event-image {
    width: 100%;
    max-width: 100%;
    /* Ensure image doesn't overflow */
    object-fit: cover;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-summary {
    font-size: 0.9rem;
  }
}

/* Popup Modal */
.popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: #000000;
  border: 2px solid white;
  padding: 30px;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  text-align: center;
  color: #fff;
}

.popup-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.close-btn {
  color: #ffffff;
  position: absolute;
  bottom: 20px;
  left: 20px;
  cursor: pointer;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: transparent;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.close-btn:hover {
  color: #d1b261;
}

/* Responsive Design */
@media (max-width: 768px) {
  .card-container {
    justify-content: center;
  }

  .event-card {
    width: 90%;
  }
}

#mbcbtn {
  z-index: 0;
  position: sticky;
  bottom: 20px;
  left: 20px;
}

.btn-watchs {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  border: none;
  text-shadow: 4px 4px 12px rgba(182, 159, 28, 1);
  background-color: #d1b261;
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-watch {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  font-size: 1rem;
  position: sticky;
  font-weight: 700;
  text-shadow: 8px 8px 16px #d1b261;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-watch:hover {
  cursor: pointer;
}
