/* ============================================
   MUSICLAND HOMEPAGE – Black & Yellow Theme
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #111;
  --black-card: #1a1a1a;
  --yellow: #FFD700;
  --yellow-dim: rgba(255, 215, 0, 0.85);
  --yellow-glow: rgba(255, 215, 0, 0.4);
  --white: #fff;
  --gray: #aaa;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: 'Oswald', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ---------- SECTION 1 — HERO ---------- */
.hero-home {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0%;
  background: url('../images/hero-banner.webp') center/cover no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  text-shadow: 0 0 60px var(--yellow-glow);
  line-height: 1;
  overflow: hidden;
}

.hero-title .char {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 1rem 3rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hero-cta:hover {
  background: #ffe44d;
  transform: translateY(-4px);
  box-shadow: 0 20px 50px var(--yellow-glow);
}

/* ---------- SECTION 2 — FESTIVAL INTRO ---------- */
.festival-intro {
  padding: clamp(80px, 12vw, 140px) 5%;
  background: var(--black);
}

.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.intro-text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 1rem;
}

.intro-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.intro-image {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid var(--yellow-dim);
}

.intro-text[data-reveal],
.intro-image-wrap[data-reveal] {
  opacity: 0;
  transform: translateY(50px);
}

.intro-text.revealed,
.intro-image-wrap.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SECTION HEADING ---------- */
.section-heading {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--white);
}

.section-heading[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}

.section-heading.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SECTION 3 — LINEUP SLIDER ---------- */
.lineup-slider-section {
  padding: clamp(80px, 10vw, 120px) 5%;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 50%, var(--black) 100%);
}

.lineup-swiper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.artist-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--black-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.artist-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px var(--yellow-glow), 0 20px 60px rgba(0,0,0,0.5);
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.artist-card:hover img {
  transform: scale(1.08);
}

.artist-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}

.swiper-pagination-bullet {
  background: var(--gray);
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: var(--yellow);
  opacity: 1;
  transform: scale(1.2);
}

/* ---------- SECTION 4 — EXPERIENCE CARDS ---------- */
.experience-cards-section {
  padding: clamp(80px, 10vw, 120px) 5%;
  background: var(--black);
}

.experience-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 500px;
}

.exp-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--black-card);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.exp-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 50px var(--yellow-glow);
}

.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.exp-card:hover img {
  transform: scale(1.1);
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  pointer-events: none;
}

.exp-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: var(--white);
}

.exp-card-content h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px var(--yellow-glow);
}

.exp-card-content p {
  font-size: 1rem;
  color: var(--gray);
}

.exp-card[data-reveal] {
  opacity: 0;
  transform: translateY(60px);
}

.exp-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SECTION 5 — VIDEO ---------- */
.video-immersive {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.video-title {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  text-shadow: 0 0 40px var(--yellow-glow);
}

.video-content[data-reveal] {
  opacity: 0;
  transform: scale(0.9);
}

.video-content.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ---------- SECTION 6 — EVENT DETAILS ---------- */
.event-details-section {
  padding: clamp(80px, 10vw, 120px) 5%;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-card) 100%);
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--yellow-glow);
  border-color: var(--yellow);
}

.event-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.event-card h3 {
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.event-card p {
  font-size: 1rem;
  color: var(--gray);
}

.event-card[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}

.event-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SECTION 7 — GALLERY ---------- */
.gallery-section {
  padding: clamp(80px, 10vw, 120px) 5%;
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  z-index: 2;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::after,
.gallery-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}

.gallery-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SECTION 8 — PARTNERS ---------- */
.partners-home-section {
  padding: clamp(80px, 10vw, 120px) 5%;
  background: var(--black-soft);
}

.partners-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  background: var(--black-card);
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,215,0,0.1);
}

.partner-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px var(--yellow-glow);
}

.partner-logo img {
  max-width: 100%;
  height: 50px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.partner-logo[data-reveal] {
  opacity: 0;
  transform: scale(0.9);
}

.partner-logo.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ---------- SECTION 9 — FINAL CTA ---------- */
.final-cta-section {
  padding: clamp(100px, 15vw, 160px) 5%;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-card) 50%, var(--black) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--yellow-glow) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta-title {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 60px var(--yellow-glow);
}

.final-cta-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray);
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
}

.final-cta-btn {
  display: inline-block;
  padding: 1.25rem 3.5rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.final-cta-btn:hover {
  background: #ffe44d;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 25px 60px var(--yellow-glow);
}

.final-cta-inner[data-reveal] {
  opacity: 0;
  transform: translateY(50px);
}

.final-cta-inner.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .intro-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intro-image-wrap {
    order: -1;
  }

  .experience-cards-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .exp-card {
    min-height: 320px;
  }

  .event-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .event-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== ANNOUNCEMENT POPUP ===== */
.announcement-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  animation: overlayFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.8s ease;
}

.announcement-overlay.dismiss {
  opacity: 0;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
}

/* Animated background particles */
.announcement-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 50, 50, 0.3), transparent),
    radial-gradient(2px 2px at 80% 20%, rgba(255, 200, 50, 0.2), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(255, 80, 80, 0.25), transparent),
    radial-gradient(2px 2px at 60% 80%, rgba(255, 160, 50, 0.15), transparent),
    radial-gradient(2px 2px at 10% 90%, rgba(200, 50, 50, 0.2), transparent),
    radial-gradient(2px 2px at 90% 60%, rgba(255, 100, 100, 0.2), transparent);
  animation: particleDrift 8s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Moving glow orbs */
.popup-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.popup-glow-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(180, 20, 20, 0.6), transparent 70%);
  top: -10%;
  left: -5%;
  animation: orbFloat1 6s ease-in-out infinite alternate;
}

.popup-glow-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 50, 20, 0.5), transparent 70%);
  bottom: -10%;
  right: -5%;
  animation: orbFloat2 7s ease-in-out infinite alternate;
}

.popup-glow-orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 180, 50, 0.3), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 5s ease-in-out infinite alternate;
}

/* Popup card */
.announcement-card {
  position: relative;
  max-width: 580px;
  width: 92%;
  padding: 48px 44px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(80, 10, 10, 0.65), rgba(40, 5, 5, 0.8));
  border: 1px solid rgba(255, 60, 60, 0.15);
  box-shadow:
    0 0 60px rgba(180, 20, 20, 0.3),
    0 0 120px rgba(120, 10, 10, 0.15),
    0 25px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  opacity: 0;
  transform: scale(0.85) translateY(30px);
  animation: cardEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards,
             cardFloat 4s ease-in-out 1.6s infinite;
}

.announcement-overlay.dismiss .announcement-card {
  animation: cardExit 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Top accent line */
.announcement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff4444, #ffcc00, #ff4444, transparent);
  border-radius: 2px;
  opacity: 0;
  animation: accentReveal 0.6s ease 1.2s forwards;
}

/* Icon pulse ring */
.popup-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 60, 60, 0.12);
  border: 1px solid rgba(255, 60, 60, 0.25);
  margin-bottom: 24px;
  position: relative;
  animation: iconPulse 2.5s ease-in-out infinite;
}

.popup-icon-wrapper i {
  font-size: 26px;
  color: #ff5555;
  filter: drop-shadow(0 0 8px rgba(255, 60, 60, 0.5));
}

.popup-icon-wrapper::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 60, 60, 0.15);
  animation: ringExpand 2.5s ease-in-out infinite;
}

/* Typography */
.popup-heading {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 6px;
  color: #ffcc00;
  text-shadow: 0 0 20px rgba(255, 200, 0, 0.4), 0 0 40px rgba(255, 200, 0, 0.15);
  margin-bottom: 20px;
  line-height: 1.2;
}

.popup-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  font-weight: 300;
}

.popup-text-refund {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Divider */
.popup-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 60, 60, 0.5), transparent);
  margin: 0 auto 28px;
}

/* Button */
.popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, rgba(200, 30, 30, 0.7), rgba(150, 20, 20, 0.9));
  border: 1px solid rgba(255, 80, 80, 0.25);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(180, 20, 20, 0.3), 0 0 40px rgba(180, 20, 20, 0.1);
  position: relative;
  overflow: hidden;
}

.popup-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 80, 80, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50px;
}

.popup-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(200, 30, 30, 0.5), 0 0 60px rgba(200, 30, 30, 0.2);
  border-color: rgba(255, 100, 100, 0.4);
}

.popup-btn:hover::before {
  opacity: 1;
}

.popup-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Auto-close progress bar */
.popup-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff4444, #ffcc00);
  border-radius: 0 0 24px 24px;
  width: 100%;
  transform-origin: left;
  animation: progressShrink 11s linear forwards;
}

/* ===== KEYFRAMES ===== */
@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes cardExit {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  to {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
}

@keyframes accentReveal {
  from { opacity: 0; width: 0; }
  to { opacity: 1; width: 80px; }
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 60, 60, 0.2); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px 4px rgba(255, 60, 60, 0.15); }
}

@keyframes ringExpand {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0; }
}

@keyframes particleDrift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(30px, -20px) rotate(2deg); }
}

@keyframes orbFloat1 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 40px); }
}

@keyframes orbFloat2 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50px, -30px); }
}

@keyframes orbFloat3 {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.3); }
}

@keyframes progressShrink {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .announcement-card {
    padding: 36px 24px;
    border-radius: 20px;
  }

  .popup-heading {
    font-size: 1.6rem;
    letter-spacing: 4px;
  }

  .popup-text {
    font-size: 0.9rem;
  }

  .popup-text-refund {
    font-size: 0.85rem;
    padding: 12px 16px;
  }

  .popup-btn {
    padding: 12px 28px;
    font-size: 0.85rem;
  }

  .popup-icon-wrapper {
    width: 52px;
    height: 52px;
  }

  .popup-icon-wrapper i {
    font-size: 22px;
  }

  .popup-glow-orb-1 { width: 250px; height: 250px; }
  .popup-glow-orb-2 { width: 180px; height: 180px; }
  .popup-glow-orb-3 { width: 120px; height: 120px; }
}