* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Tajawal', sans-serif;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(255, 215, 96, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(184, 134, 11, 0.14), transparent 26%),
    radial-gradient(circle at center, rgba(255, 193, 7, 0.08), transparent 38%),
    linear-gradient(to bottom, rgba(255, 215, 96, 0.03), transparent 18%, transparent 82%, rgba(184, 134, 11, 0.05)),
    #000;
  color: #fff;
  overflow: hidden;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 215, 96, 0.35) 35%, transparent 60%);
  opacity: 0.07;
  filter: blur(80px);
  pointer-events: none;
}

body::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(234, 179, 8, 0.1);
  filter: blur(160px);
  pointer-events: none;
}

.wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.content {
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  margin-bottom: 36px;
  border: 1px solid rgba(250, 204, 21, 0.2);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(255, 200, 60, 0.08);
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fde68a;
  box-shadow: 0 0 16px rgba(255, 220, 120, 0.8);
  animation: pulse 1.8s infinite ease-in-out;
  flex-shrink: 0;
}

.badge-text {
  font-size: 13px;
  letter-spacing: 0.35em;
  color: rgba(254, 249, 195, 0.8);
  white-space: nowrap;
}

h1 {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  /*line-height: 0.95;*/
  letter-spacing: -0.03em;
  background: linear-gradient(to bottom, #FFF8D6, #FFD75E, #B8860B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 34px rgba(255, 210, 90, 0.22);
}

p {
  margin: 20px auto 0;
  max-width: 700px;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 2;
  color: rgba(254, 252, 232, 0.65);
}

.divider {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.divider-line {
  width: 96px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(234, 179, 8, 0.7), rgba(253, 224, 71, 0.3));
}

.divider-line.left {
  background: linear-gradient(to left, transparent, rgba(234, 179, 8, 0.7), rgba(253, 224, 71, 0.3));
}

.divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.8);
  box-shadow: 0 0 16px rgba(255, 215, 96, 0.7);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}

@media (max-width: 640px) {
  .badge {
    padding: 9px 16px;
    margin-bottom: 28px;
    gap: 10px;
  }

  .badge-text {
    font-size: 11px;
    letter-spacing: 0.28em;
  }

  .divider-line {
    width: 64px;
  }
}