/* ============================================
   FROSTAPP WEBSITE — VIP PAGE STYLES
   Mobile-First, Responsive, Premium Aesthetic
   ============================================ */

/* === VIP HERO === */
.vip-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vip-hero__crown {
  width: 100px;
  height: 100px;
  border-radius: 28px;
  background: rgba(255, 215, 0, 0.08);
  border: 2px solid var(--vip-gold-border);
  display: grid;
  place-items: center;
  font-size: 48px;
  margin: 0 auto 28px;
  animation: float 5s ease-in-out infinite;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vip-hero__crown::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), transparent, rgba(255, 215, 0, 0.12));
  z-index: -1;
}

.vip-hero__title {
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}

.vip-hero__title .gold-text {
  background: linear-gradient(135deg, #ffd700, #ff8c00, #ffd700);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

.vip-hero__desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Floating gold particles in VIP hero */
.vip-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.vip-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--vip-gold);
  opacity: 0;
  animation: sparkleFloat linear infinite;
}

@keyframes sparkleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.8; transform: translateY(80vh) scale(1); }
  90% { opacity: 0.6; }
  100% { transform: translateY(-20px) scale(0.5); opacity: 0; }
}

/* === VIP BENEFITS === */
.vip-benefits {
  padding: 60px 0;
}

.vip-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.vip-benefit {
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-color: rgba(255, 215, 0, 0.1);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.vip-benefit:hover {
  border-color: rgba(255, 215, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.06);
}

.vip-benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.12);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.vip-benefit__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.vip-benefit__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === PRICING === */
.vip-pricing {
  padding: 80px 0;
}

.vip-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  align-items: start;
}

.pricing-card {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform 200ms ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card--popular {
  border-color: rgba(255, 215, 0, 0.15);
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.06);
}

.pricing-card--popular:hover {
  transform: scale(1.04) translateY(-6px);
}

.pricing-card--popular::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.06), transparent, rgba(255, 215, 0, 0.06));
  z-index: -1;
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.pricing-card__badge--popular {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a0a00;
}

.pricing-card__badge--best {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: var(--text-dark);
}

.pricing-card__duration {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
  margin-top: 8px;
}

.pricing-card__price {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 4px;
  line-height: 1.1;
}

.pricing-card__price .currency {
  font-size: 20px;
  font-weight: 700;
  vertical-align: super;
}

.pricing-card__price .period {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card__saving {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-start);
  margin-bottom: 20px;
  min-height: 20px;
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-card__features li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-bright);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--accent-start);
  font-weight: 800;
  font-size: 14px;
}

/* === THEME SHOWCASE === */
.vip-themes {
  padding: 80px 0;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.theme-card {
  padding: 20px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 200ms ease, border-color 200ms ease;
}

.theme-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.theme-card.active {
  border-color: var(--accent-border);
}

.theme-card__preview {
  width: 100%;
  height: 80px;
  border-radius: 12px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.theme-card__preview::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.theme-card__name {
  font-size: 14px;
  font-weight: 700;
}

.theme-card__icon {
  font-size: 20px;
  margin-bottom: 4px;
}

/* === THEME CARD V2 (redesigned) === */
.themes-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.theme-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(20, 25, 40, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease, border-color 300ms ease, background 300ms ease;
}

.theme-card-v2:hover {
  transform: translateY(-8px);
  background: rgba(30, 35, 55, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px color-mix(in srgb, var(--tc-accent) 15%, transparent);
}

.theme-card-v2--active {
  border-color: var(--tc-accent) !important;
  box-shadow: 0 0 20px color-mix(in srgb, var(--tc-accent) 25%, transparent),
              0 12px 30px rgba(0, 0, 0, 0.3) !important;
  background: rgba(30, 35, 55, 0.7) !important;
}

.theme-card-v2--active .theme-card-v2__accent {
  height: 4px;
  opacity: 1;
}

/* Override stagger transition-delay (persists from nth-child rules) + use animation for entrance */
@keyframes themeCardStaggerIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.themes-grid-v2.stagger-children.visible > .theme-card-v2 {
  opacity: 1;
  transform: translateY(0);
  animation: themeCardStaggerIn 500ms cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease, border-color 300ms ease, background 300ms ease;
  transition-delay: 0ms;
}

.themes-grid-v2.stagger-children.visible > .theme-card-v2:hover {
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease, border-color 300ms ease, background 300ms ease;
  transition-delay: 0ms;
}

.themes-grid-v2.stagger-children.visible > .theme-card-v2:nth-child(1)  { animation-delay: 0ms; }
.themes-grid-v2.stagger-children.visible > .theme-card-v2:nth-child(2)  { animation-delay: 50ms; }
.themes-grid-v2.stagger-children.visible > .theme-card-v2:nth-child(3)  { animation-delay: 100ms; }
.themes-grid-v2.stagger-children.visible > .theme-card-v2:nth-child(4)  { animation-delay: 150ms; }
.themes-grid-v2.stagger-children.visible > .theme-card-v2:nth-child(5)  { animation-delay: 200ms; }
.themes-grid-v2.stagger-children.visible > .theme-card-v2:nth-child(6)  { animation-delay: 250ms; }
.themes-grid-v2.stagger-children.visible > .theme-card-v2:nth-child(7)  { animation-delay: 300ms; }
.themes-grid-v2.stagger-children.visible > .theme-card-v2:nth-child(8)  { animation-delay: 350ms; }
.themes-grid-v2.stagger-children.visible > .theme-card-v2:nth-child(9)  { animation-delay: 400ms; }
.themes-grid-v2.stagger-children.visible > .theme-card-v2:nth-child(10) { animation-delay: 450ms; }
.themes-grid-v2.stagger-children.visible > .theme-card-v2:nth-child(11) { animation-delay: 500ms; }
.themes-grid-v2.stagger-children.visible > .theme-card-v2:nth-child(12) { animation-delay: 550ms; }
.themes-grid-v2.stagger-children.visible > .theme-card-v2:nth-child(n+13) { animation-delay: 600ms; }

.theme-card-v2__preview {
  position: relative;
  height: 120px;
  background: linear-gradient(135deg, var(--tc-from) 0%, var(--tc-to) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.theme-card-v2__preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.05) 0%, transparent 60%), linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}

.theme-card-v2__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--tc-accent);
  box-shadow: 0 0 15px var(--tc-accent);
  opacity: 0.7;
  transition: height 300ms ease, opacity 300ms ease;
  z-index: 2;
}

.theme-card-v2:hover .theme-card-v2__accent {
  height: 4px;
  opacity: 1;
}

.theme-card-v2__emoji {
  position: relative;
  z-index: 2;
  font-size: 40px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
  transform: translateY(4px);
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), filter 400ms ease;
}

.theme-card-v2:hover .theme-card-v2__emoji {
  transform: translateY(-4px) scale(1.1);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
}

/* Theme orb (replaces emoji) */
.theme-card-v2__orb {
  position: relative;
  z-index: 2;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), var(--tc-accent));
  box-shadow: 0 0 25px var(--tc-accent), 0 6px 12px rgba(0, 0, 0, 0.4);
  transform: translateY(4px);
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 400ms ease;
}

.theme-card-v2:hover .theme-card-v2__orb {
  transform: translateY(-4px) scale(1.15);
  box-shadow: 0 0 40px var(--tc-accent), 0 10px 20px rgba(0, 0, 0, 0.6);
}

.theme-card-v2__name {
  padding: 16px 16px 6px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
  text-align: center;
  transition: color 300ms ease;
}

.theme-card-v2:hover .theme-card-v2__name {
  color: var(--tc-accent);
}

.theme-card-v2__tag {
  margin: 0 auto 16px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 800;
  color: var(--tc-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--tc-accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--tc-accent) 20%, transparent);
  border-radius: 30px;
  display: inline-block;
  line-height: 1;
  transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.theme-card-v2:hover .theme-card-v2__tag {
  background: color-mix(in srgb, var(--tc-accent) 15%, transparent);
  border-color: color-mix(in srgb, var(--tc-accent) 40%, transparent);
  transform: scale(1.05);
}

/* === FEATURES SHOWCASE LAYOUT (for features.html) === */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-showcase--reverse {
  direction: rtl;
}

.feature-showcase--reverse > * {
  direction: ltr;
}

.feature-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.feature-list__item:hover {
  background: rgba(0, 198, 255, 0.06);
  border-color: rgba(0, 198, 255, 0.18);
  transform: translateX(6px);
}

.feature-list__icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list__item strong {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.feature-list__item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* === MINI GAME CARDS (preview mock) === */
.mini-game-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 200ms ease, border-color 200ms ease;
}

.mini-game-card:hover {
  border-color: rgba(0, 198, 255, 0.2);
  transform: translateY(-2px);
}

.mini-game-card__img {
  height: 80px;
  width: 100%;
}

.mini-game-card__body {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mini-game-card__title {
  height: 10px;
  background: var(--neutral-hover);
  border-radius: 4px;
  width: 60%;
}

.mini-game-card__badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  background: var(--neutral-overlay);
  color: var(--text-muted);
  white-space: nowrap;
}

.mini-game-card__badge--online {
  background: rgba(0, 198, 255, 0.1);
  color: var(--accent-start);
}

/* === MINI DOWNLOAD ITEMS (preview mock) === */
.mini-download {
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.mini-download:last-child {
  border-bottom: none;
}

.mini-download__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.mini-download__name {
  height: 10px;
  background: var(--neutral-hover);
  border-radius: 4px;
  width: 40%;
  display: block;
}

.mini-download__badge {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: white;
}

.mini-download__bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--surface-dark);
  overflow: hidden;
  margin-bottom: 6px;
}

.mini-download__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  position: relative;
  transition: width 1s ease;
}

.mini-download__fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

.mini-download__fill--done {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.mini-download__fill--done::after {
  animation: none;
}

.mini-download__info {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

/* === THEMES SHOWCASE (Dot grid) === */
.themes-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}

.theme-dot {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--dot-color-1), var(--dot-color-2));
  display: grid;
  place-items: center;
  font-size: 28px;
  cursor: pointer;
  transition: transform 200ms ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 2px solid transparent;
  justify-self: center;
}

.theme-dot:hover {
  transform: scale(1.12) rotate(-4deg);
  border-color: rgba(255,255,255,0.2);
}

/* === FROSTWHEEL DEMO === */
.frostwheel-demo__wheel {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-start) 0deg 60deg,
    var(--accent-end) 60deg 120deg,
    #a78bfa 120deg 180deg,
    var(--accent-start) 180deg 240deg,
    #ec4899 240deg 300deg,
    var(--accent-end) 300deg 360deg
  );
  display: grid;
  place-items: center;
  margin: 0 auto;
  animation: rotate 12s linear infinite;
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.1);
}

.frostwheel-demo__inner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--surface-dark);
  display: grid;
  place-items: center;
  font-size: 24px;
  border: 2px solid var(--border);
}

/* === COMPARISON TABLE === */
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comp-table thead {
  background: rgba(255, 255, 255, 0.03);
}

.comp-table th {
  padding: 18px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.comp-table__vip {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 165, 0, 0.04));
  color: var(--vip-gold) !important;
}

.comp-table td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}

.comp-table tbody tr:hover {
  background: var(--neutral-overlay);
}

.comp-table td:last-child {
  background: rgba(255, 215, 0, 0.02);
}

/* === FAQ STYLES === */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease, background 300ms ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 255, 255, 0.02);
}

.faq-item.open {
  border-color: rgba(0, 198, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 198, 255, 0.1);
  background: rgba(0, 198, 255, 0.02);
}

.faq-item__question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  transition: color 300ms ease;
}

.faq-item.open .faq-item__question {
  color: var(--accent-start);
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--text);
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), background 300ms ease, color 300ms ease, border-color 300ms ease;
}

.faq-item:hover .faq-item__icon {
  background: rgba(255, 255, 255, 0.1);
}

.faq-item.open .faq-item__icon {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  border-color: transparent;
  color: var(--text-dark);
  transform: rotate(135deg);
  box-shadow: 0 0 15px rgba(0, 198, 255, 0.4);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer p {
  min-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: #a0a0a0;
  line-height: 1.8;
  margin: 0;
  padding: 0 28px 0;
  opacity: 0;
  transform: translateY(-15px);
  transition: opacity 300ms ease, transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), padding 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.open .faq-item__answer p {
  padding: 0 28px 24px;
  opacity: 1;
  transform: translateY(0);
}

/* === DOWNLOAD PAGE === */
.download-hero {
  padding: 160px 0 60px;
  text-align: center;
}

.download-hero__icon {
  width: 120px;
  height: 120px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  display: grid;
  place-items: center;
  font-size: 52px;
  margin: 0 auto 28px;
  box-shadow: 0 8px 30px rgba(0, 198, 255, 0.2), 0 0 60px rgba(0, 198, 255, 0.08);
  animation: float 6s ease-in-out infinite;
}

.download-box {
  max-width: 500px;
  margin: 40px auto 0;
  text-align: center;
}

.download-box__version {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.download-box__platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--neutral-overlay);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* System Requirements */
.sys-req {
  padding: 60px 0;
}

.sys-req__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.sys-req__card {
  padding: 28px;
}

.sys-req__card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sys-req__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sys-req__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-bright);
}

.sys-req__list li .label {
  color: var(--text-muted);
  min-width: 80px;
  font-weight: 600;
}

/* Steps */
.install-steps {
  padding: 60px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-card__number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: var(--text-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
  margin: 0 auto 16px;
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.15);
}

.step-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === VIP RESPONSIVE (MOBILE-FIRST) === */
@media (max-width: 1024px) {
  .vip-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .themes-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-showcase--reverse {
    direction: ltr;
  }

  .sys-req__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vip-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card--popular {
    transform: none;
  }

  .pricing-card--popular:hover {
    transform: translateY(-6px);
  }

  .vip-benefits__grid {
    grid-template-columns: 1fr;
  }

  .themes-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .themes-showcase {
    grid-template-columns: repeat(4, 1fr);
    max-width: 340px;
  }

  .theme-dot {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    font-size: 22px;
  }

  .themes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comp-table {
    font-size: 12px;
  }

  .comp-table th,
  .comp-table td {
    padding: 10px 12px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .vip-hero__crown {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    font-size: 38px;
  }

  /* Feature showcase visual mocks: better mobile */
  .feature-showcase__visual .glass-card {
    padding: 14px;
  }

  .mini-game-card__img {
    height: 60px;
  }

  .mini-game-card__body {
    padding: 8px;
  }

  /* FAQ items: better touch padding */
  .faq-item__question {
    padding: 16px;
    font-size: 14px;
  }

  .faq-item__answer {
    padding: 0 16px 16px;
  }

  /* System requirements */
  .sys-req__list li {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .vip-hero {
    padding: 130px 0 60px;
  }

  .pricing-card {
    padding: 24px 18px;
  }

  .pricing-card__price {
    font-size: 36px;
  }

  .themes-showcase {
    grid-template-columns: repeat(3, 1fr);
    max-width: 260px;
  }

  .themes-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .theme-card-v2__preview {
    height: 90px;
  }

  .theme-card-v2__emoji {
    font-size: 28px;
  }

  .theme-card-v2__name {
    font-size: 13px;
    padding: 10px 8px 4px;
  }

  .theme-card-v2__tag {
    font-size: 9px;
    padding: 3px 8px;
    margin-bottom: 12px;
  }

  .theme-dot {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  /* Download hero */
  .download-hero {
    padding: 130px 0 60px;
  }

  .download-hero__icon {
    font-size: 48px;
  }

  .download-box__version {
    font-size: 12px;
  }

  .download-box__platform {
    font-size: 12px;
  }

  /* Steps grid: 1 col on mobile */
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Feature list compact */
  .feature-list__item {
    padding: 12px;
  }

  /* VIP benefits icon */
  .vip-benefit__icon {
    font-size: 28px;
  }
}
