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

body {
  font-family: 'Whitney', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: url('https://images-ext-1.discordapp.net/external/K031vcOiPFgIIgP45wFQEozDMLmu5ilo8fpLWbLLgb0/%3Fwidth%3D1600%26format%3Dpng%26auto%3Dwebp%26s%3D53d372d13bd1af47f24b8069e239aa3870fc6b78/https/i.redd.it/new-and-slightly-older-discord-login-screen-as-a-png-v0-nnd20frfve3d1.png?format=webp&quality=lossless&width=400&height=225') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
}

/* Animated background elements */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(120, 119, 198, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes float {
  0%, 100% { opacity: 1; transform: translateY(0px); }
  50% { opacity: 0.8; transform: translateY(-20px); }
}

.card {
  background: #000000;
  border-radius: 12px;
  width: 420px;
  max-width: 90vw;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  position: relative;
}

.top-banner {
  position: relative;
  height: 120px;
  background: linear-gradient(90deg, #ff73fa 0%, #5865f2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.top-banner video {
  width: 100%;
  height: 110%;
  object-fit: cover;
  position: absolute;
  top: -5%;
  left: 0;
}





.breadcrumb {
  background: #000000;
  padding: 12px 20px;
  color: #b9bbbe;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbArrow__75013 {
  width: 16px;
  height: 16px;
  color: #72767d;
}

.title {
  background: #000000;
  color: white;
  text-align: center;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #333333;
}

#offerContainer {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-button {
  background: #5865f2;
  color: white;
  padding: 14px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  line-height: 1.3;
}

.offer-button:hover {
  background: #4752c4;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.offer-button:active {
  transform: translateY(0);
}

.countdown {
  background: #000000;
  color: #b9bbbe;
  text-align: center;
  padding: 16px 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid #333333;
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #333333;
  border-top: 2px solid #b9bbbe;
  border-radius: 50%;
  animation: simple-spin 1s linear infinite;
}

@keyframes simple-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#timer {
  color: white;
  font-weight: 600;
}

/* Responsive design */
@media (max-width: 480px) {
  .card {
    width: 100%;
    margin: 10px;
  }

  .top-banner {
    height: 100px;
  }

  .top-banner::after {
    font-size: 20px;
    top: 15px;
    left: 15px;
  }

  .title {
    font-size: 16px;
    padding: 14px 16px;
  }

  #offerContainer {
    padding: 16px;
  }

  .offer-button {
    padding: 12px 14px;
    font-size: 13px;
  }
}