:root {
  --bg1: #070316;
  --bg2: #0d1633;
  --gold1: #ffd24d;
  --gold2: #ff9f00;
  --muted: rgba(255, 255, 255, 0.7);
}

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

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: #fff;
  background:
    radial-gradient(900px 400px at 50% 10%, rgba(255,230,120,0.1), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  min-height: 100vh;
  text-align: center;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* HEADER */
.vip-header {
  padding: 0px 0 5px;
}
.main-title, .logo {
  font-size: 55px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 16px rgba(290, 250, 0, 0.5);
}

/* HERO */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px;
}

.hero {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(255, 180, 0, 0.2);
}

.kicker {
  display: inline-block;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.headline {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 8px;
  color: #fff;
}

.lead {
  color: var(--muted);
  margin-bottom: 20px;
}

/* PRIZE IMAGE + SHIMMER */
.prize-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 0 18px;
}

.prize-wrap::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,220,90,1), rgba(255,170,0,0.5), transparent 70%);
  filter: blur(60px);
  animation: shimmer 2.5s ease-in-out infinite;
  z-index: 0;
  opacity: 0.9;
}


@keyframes shimmer {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.prize-wrap::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: conic-gradient(
    from 0deg,
    rgba(255,220,90,0.8) 0deg,
    rgba(255,170,0,0.0) 30deg,
    rgba(255,220,90,0.8) 60deg,
    rgba(255,170,0,0.0) 90deg,
    rgba(255,220,90,0.8) 120deg,
    rgba(255,170,0,0.0) 150deg,
    rgba(255,220,90,0.8) 180deg,
    rgba(255,170,0,0.0) 210deg,
    rgba(255,220,90,0.8) 240deg,
    rgba(255,170,0,0.0) 270deg,
    rgba(255,220,90,0.8) 300deg,
    rgba(255,170,0,0.0) 330deg,
    rgba(255,220,90,0.8) 360deg
  );
  border-radius: 50%;
  filter: blur(30px);
  animation: rotateRays 8s linear infinite;
  z-index: -1;
  opacity: 0.7;
}

@keyframes rotateRays {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.prize-img {
  width: 500px;
  max-width: 95%;
  border-radius: 16px;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* SHARE AREA (VERTICAL CENTER) */
.share-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.btn {
  padding: 14px 26px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn:hover { transform: scale(1.05); }

.btn-share {
  background: linear-gradient(90deg, #6c4cff, #3b8bff);
  color: #fff;
  box-shadow: 0 0 20px rgba(100,120,255,0.2);
}

.btn-enter {
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  color: #1a0e00;
  box-shadow: 0 0 20px rgba(255,180,60,0.3);
}

.btn-enter[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* PROGRESS RING */
.progress-ring {
  width: 120px;
  height: 120px;
}
.ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 12;
}
.ring-progress {
  fill: none;
  stroke: var(--gold1);
  stroke-width: 12;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease;
}
.progress-text {
  fill: #fff;
  font-weight: 700;
  font-size: 18px;
}

/* WINNER SECTION CENTERED */
.winner {
  margin-top: 24px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 210, 0, 0.3);
  box-shadow: 0 4px 18px rgba(255, 200, 0, 0.1);
}

.winner h3 {
  color: var(--gold1);
  margin-bottom: 8px;
  text-align: center;
}

#winner-content {
  text-align: center;
}

#winner-content p {
  color: var(--muted);
  font-size: 15px;
  margin: 4px 0;
}

#winner-content img {
  max-width: 260px;
  width: 100%;
  border-radius: 10px;
  margin: 8px auto 0;
  display: block;
}

/* FOOTER */
.site-footer {
  margin-top: 20px;
  padding: 10px;
  color: var(--muted);
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 640px) {
  .main-title { font-size: 32px; }
  .headline { font-size: 24px; }
  .prize-img { width: 280px; }
  .prize-wrap::before { width: 200px; height: 200px; }
}
