.logo-svg {
  filter: drop-shadow(0 0 8px #fff) drop-shadow(0 0 2px #fff);
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
}

.container {
  max-width: 430px;
  margin: 0 auto;
  padding: 0;
  background: #000;
}

.hero {
  position: relative;
  text-align: center;
}

.hero-img {
  width: 100%;
  max-width: 320px;
  border: none;
  margin: 0;
  padding: 0;
  display: block;
  border-radius: 0;
}

.hero-title {
  margin-top: -50px;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.1rem;
  line-height: 1.1;
  letter-spacing: 1px;
}
.make-money {
  color: #fff;
  display: block;
}
.online {
  color: #2ecc40;
  display: block;
}
.challenge {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
}

.event-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  margin-top: 18px;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.35);
  border-radius: 32px;
  padding: 6px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.live-dot {
  width: 10px;
  height: 10px;
  background: #2ecc40;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px 2px #2ecc4066;
  animation: livePulse 1.2s infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 8px 2px #2ecc4066;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 16px 6px #2ecc4044;
    transform: scale(1.25);
  }
  100% {
    box-shadow: 0 0 8px 2px #2ecc4066;
    transform: scale(1);
  }
}
.live-text {
  color: #fff;
  font-weight: 700;
}
.event-date {
  color: #bdbdbd;
  font-weight: 400;
}

.main-content {
  background: #111;
  border-radius: 24px 24px 0 0;
  padding: 24px 18px 32px 18px;
  text-align: center;
}
.headline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.green {
  color: #2ecc40;
}
.blue {
  color: #00c3ff;
}
.subtext {
  font-size: 1.18rem;
  color: #bdbdbd;
  margin-bottom: 28px;
}

.cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #fff700 0%, #ffe600 60%, #fff700 100%);
  color: #000;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  border-radius: 48px;
  padding: 18px 32px 10px 32px;
  text-decoration: none;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.35);
  margin: 20PX auto 0 auto;
  max-width: 420px;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  animation: ctaPulse 3s infinite ease-in-out;
}
.cta-btn::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #fff700, #ffe600, #fff700);
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.cta-btn:hover::before {
  opacity: 0.8;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.5);
  animation-play-state: paused;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.35), 0 0 0 0 rgba(255,247,0,0.5);
  }
  50% {
    box-shadow: 0 6px 28px 0 rgba(0,0,0,0.45), 0 0 0 8px rgba(255,247,0,0.2);
  }
}
.ticket-icon {
  font-size: 1.6rem;
  color: #000;
  margin-bottom: -2px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}
.cta-text {
  font-size: 1rem;
  font-weight: 900;
  color: #000;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.cta-note {
  font-size: 1.05rem;
  font-weight: 400;
  color: #222;
  margin-top: 2px;
  margin-left: 2px;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #111;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  border-radius: 10px;
  color: #fff;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #fff;
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content form {
  display: flex;
  flex-direction: column;
}

.modal-content label {
  margin-bottom: 5px;
}

.modal-content input {
  margin-bottom: 15px;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.modal-content button {
  background: linear-gradient(90deg, #fff700 0%, #ffe600 60%, #fff700 100%);
  color: #000;
  font-weight: 900;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .container {
    max-width: 100vw;
    border-radius: 0;
  }
  .main-content {
    padding: 1px 8px 24px 8px;
  }
  .hero-img {
    max-width: 100vw;
    border: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
  }
}
