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

body {
  font-family: 'Lilita One', cursive;
  background: #1e0340;
  color: #fff;
  overflow-x: hidden;
}

.sunburst-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 45%, #7c3aed 0%, #5b21b6 30%, #4c1d95 50%, #3b0764 70%, #1e0340 100%);
}
.sunburst-bg::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 250vmax; height: 250vmax;
  transform: translate(-50%, -50%);
  background: repeating-conic-gradient(from 0deg, rgba(255,255,255,0.045) 0deg 5deg, transparent 5deg 10deg);
  animation: sunburst-spin 240s linear infinite;
}
.sunburst-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 45%, transparent 30%, rgba(30,3,64,0.5) 80%);
  pointer-events: none;
}
@keyframes sunburst-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.particles-layer {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: float-particle linear infinite;
}
.particle.gold {
  background: rgba(251,191,36,0.3);
}
@keyframes float-particle {
  from { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  to   { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.vip-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 200px auto 60px auto;
  text-align: center;
  padding: 20px 12px 40px 12px;
}

.payment-message {
  max-width: 600px;
  margin: 0 auto 24px auto;
  padding: 16px 24px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-family: 'Lilita One', cursive;
  text-align: center;
  backdrop-filter: blur(10px);
  animation: msg-appear 0.5s ease-out;
}
.payment-message.success {
  background: rgba(74,222,128,0.15);
  color: #4ade80;
  border: 2px solid rgba(74,222,128,0.3);
  box-shadow: 0 4px 20px rgba(74,222,128,0.2);
}
.payment-message.error {
  background: rgba(239,68,68,0.15);
  color: #f87171;
  border: 2px solid rgba(239,68,68,0.3);
  box-shadow: 0 4px 20px rgba(239,68,68,0.2);
}
@keyframes msg-appear {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.vip-hero {
  margin-bottom: 50px;
  position: relative;
}
.vip-crown {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 0 30px rgba(251,191,36,0.7)) drop-shadow(0 0 60px rgba(251,191,36,0.3));
  margin-bottom: 16px;
  animation: crown-float 3s ease-in-out infinite;
}
@keyframes crown-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(2deg); }
  75% { transform: translateY(-4px) rotate(-2deg); }
}
.vip-title {
  font-family: 'Lilita One', cursive;
  font-size: 3.2rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 30%, #fcd34d 60%, #fbbf24 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: title-shimmer 4s linear infinite;
  filter: drop-shadow(0 2px 10px rgba(251,191,36,0.4));
}
@keyframes title-shimmer {
  to { background-position: 300% center; }
}
.vip-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}



.billing-toggle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
}
.billing-toggle-pills {
  display: inline-flex;
  background: rgba(15,5,40,0.85);
  border: 2px solid rgba(167,139,250,0.35);
  border-radius: 60px;
  padding: 7px;
  gap: 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 30px rgba(124,58,237,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: toggleAttention 3s ease-in-out 1.5s 2;
}
@keyframes toggleAttention {
  0%, 100% { transform: scale(1); box-shadow: 0 6px 30px rgba(124,58,237,0.3); }
  50% { transform: scale(1.03); box-shadow: 0 8px 40px rgba(124,58,237,0.5), 0 0 20px rgba(167,139,250,0.15); }
}
.billing-pill {
  font-family: 'Lilita One', cursive;
  font-size: 1.5rem;
  padding: 18px 52px;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: rgba(255,255,255,0.4);
  cursor: url('/static/cursor/select.cur'), pointer !important;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}
.billing-pill:hover {
  color: rgba(255,255,255,0.7);
}
.billing-pill-active {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  box-shadow: 0 6px 24px rgba(124,58,237,0.5), 0 0 40px rgba(124,58,237,0.2);
  text-shadow: 0 0 12px rgba(255,255,255,0.3);
  transform: scale(1.04);
}
.billing-pill-active:hover {
  color: #fff;
}

.pill-save {
  display: inline-block;
  font-size: 0.65rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.3px;
  font-family: 'Lilita One', cursive;
  text-shadow: none;
  box-shadow: 0 2px 8px rgba(34,197,94,0.3);
}

.plan-save-chip {
  display: inline-block;
  font-family: 'Lilita One', cursive;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 12px rgba(34,197,94,0.3);
  position: relative;
  z-index: 1;
}

.plan-price-old {
  font-family: 'Lilita One', cursive;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.plan-price-old span {
  position: relative;
}
.plan-price-old span::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 2px;
  background: #ef4444;
  transform: rotate(-8deg);
  border-radius: 2px;
}

.vip-plans {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  margin-bottom: 40px;
  align-items: start;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}

.vip-plan {
  position: relative;
  border-radius: 24px;
  padding: 38px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
  overflow: hidden;
  cursor: url('/static/cursor/select.cur'), pointer !important;
  user-select: none;
  -webkit-user-select: none;
}
.vip-plan *,
.vip-plan *::before,
.vip-plan *::after {
  cursor: url('/static/cursor/select.cur'), pointer !important;
}

.vip-plan-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  z-index: 0;
  pointer-events: none;
}

.plan-basic {
  background: linear-gradient(160deg, rgba(15,22,40,0.95) 0%, rgba(22,32,64,0.95) 40%, rgba(26,48,96,0.95) 100%);
  border: 2px solid rgba(96,165,250,0.3);
  box-shadow: 0 8px 40px rgba(59,130,246,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}
.plan-basic .vip-plan-glow {
  background: radial-gradient(circle at 50% 0%, rgba(59,130,246,0.15) 0%, transparent 60%);
}
.plan-basic:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 50px rgba(59,130,246,0.3), 0 0 30px rgba(96,165,250,0.15);
}

.plan-gold {
  background: linear-gradient(160deg, rgba(26,14,8,0.97) 0%, rgba(45,27,16,0.97) 30%, rgba(74,45,21,0.97) 55%, rgba(109,68,32,0.97) 100%);
  border: 3px solid rgba(251,191,36,0.4);
  box-shadow: 0 12px 50px rgba(251,191,36,0.25), 0 0 40px rgba(251,191,36,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
  z-index: 2;
  padding: 40px 28px 32px;
}
.plan-gold .vip-plan-glow {
  background: radial-gradient(circle at 50% 0%, rgba(251,191,36,0.2) 0%, transparent 55%);
}
.plan-gold::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(251,191,36,0.06), transparent, rgba(251,191,36,0.04), transparent);
  animation: gold-rotate 8s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes gold-rotate {
  to { transform: rotate(360deg); }
}
.plan-gold:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 24px 60px rgba(251,191,36,0.35), 0 0 60px rgba(251,191,36,0.2);
}

.plan-year {
  background: linear-gradient(160deg, rgba(12,12,29,0.95) 0%, rgba(46,10,36,0.95) 30%, rgba(76,29,100,0.95) 60%, rgba(120,40,80,0.95) 100%);
  border: 2px solid rgba(251,191,36,0.5);
  box-shadow: 0 8px 40px rgba(251,191,36,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
}
.plan-year::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #22c55e, #fbbf24);
  background-size: 300% 300%;
  animation: year-border-glow 4s ease infinite;
  z-index: -1;
  filter: blur(8px);
  opacity: 0.4;
}
@keyframes year-border-glow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.plan-year .vip-plan-glow {
  background: radial-gradient(circle at 50% 0%, rgba(251,191,36,0.2) 0%, transparent 60%);
}
.plan-year:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 60px rgba(251,191,36,0.35), 0 0 40px rgba(251,191,36,0.15);
}

.plan-ribbon {
  position: absolute;
  top: 18px;
  right: -32px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a0a20;
  font-family: 'Lilita One', cursive;
  font-size: 0.7rem;
  padding: 4px 40px;
  transform: rotate(35deg);
  z-index: 3;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px rgba(251,191,36,0.5);
}

.plan-ribbon.year-ribbon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 2px 12px rgba(34,197,94,0.6);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.plan-badge {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.plan-badge img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(251,191,36,0.5));
  animation: badge-float 2.5s ease-in-out infinite;
}
.plan-gold .plan-badge img {
  width: 68px;
  height: 68px;
  filter: drop-shadow(0 0 24px rgba(251,191,36,0.7));
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.plan-name {
  font-family: 'Lilita One', cursive;
  font-size: 1.5rem;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.plan-basic .plan-name { color: #60a5fa; }
.plan-gold .plan-name {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #fcd34d);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: plan-shimmer 3s linear infinite;
}
.plan-year .plan-name {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #22c55e, #fbbf24);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: plan-shimmer 3s linear infinite;
}
@keyframes plan-shimmer {
  to { background-position: 200% center; }
}


.plan-price-wrap {
  position: relative;
  z-index: 1;
}

.plan-price {
  font-family: 'Lilita One', cursive;
  font-size: 2.6rem;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.plan-basic .plan-price { color: #60a5fa; text-shadow: 0 0 20px rgba(96,165,250,0.4); }
.plan-gold .plan-price {
  font-size: 3rem;
  color: #fbbf24;
  text-shadow: 0 0 30px rgba(251,191,36,0.5);
}
.plan-price span {
  font-size: 1.1rem;
  opacity: 0.6;
}

.plan-daily {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.plan-divider {
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.plan-features {
  font-weight: 200;
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 1;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  margin-bottom: 4px;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  transition: background 0.2s;
}
.plan-features li:hover {
  background: rgba(255,255,255,0.08);
}
.plan-basic .plan-features li {
  border-left: 2px solid rgba(96,165,250,0.3);
}
.plan-gold .plan-features li {
  border-left: 2px solid rgba(251,191,36,0.4);
}
.plan-features li b {
  color: #fff;
}

.plan-btn {
  font-family: 'Lilita One', cursive;
  font-size: 1.1rem;
  padding: 14px 32px;
  border: none;
  border-radius: 14px;
  cursor: url('/static/cursor/select.cur'), pointer !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 85%;
  max-width: 280px;
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
  position: relative;
  z-index: 1;
  overflow: hidden;
  letter-spacing: 0.5px;
}
.plan-btn *,
.plan-btn::after {
  cursor: url('/static/cursor/select.cur'), pointer !important;
}
.plan-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-120%);
}
.plan-btn:hover::after {
  transition: transform 0.6s ease;
  transform: translateX(120%);
}
.plan-btn img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.5));
}

.btn-basic {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(59,130,246,0.4);
}
.btn-basic:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(59,130,246,0.5);
  filter: brightness(1.1);
}

.btn-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1a0a20;
  box-shadow: 0 8px 30px rgba(251,191,36,0.45);
  animation: btn-gold-pulse 2.5s ease-in-out infinite;
  font-size: 1.2rem;
  padding: 16px 36px;
}
@keyframes btn-gold-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(251,191,36,0.4); }
  50% { box-shadow: 0 12px 40px rgba(251,191,36,0.7), 0 0 20px rgba(251,191,36,0.3); }
}
.btn-gold:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 40px rgba(251,191,36,0.6);
  filter: brightness(1.1);
}

.btn-year {
  background: linear-gradient(135deg, #fbbf24 0%, #22c55e 50%, #16a34a 100%);
  color: #fff;
  box-shadow: 0 8px 30px rgba(34,197,94,0.45);
  animation: btn-year-pulse 2.5s ease-in-out infinite;
  font-size: 1.2rem;
  padding: 16px 36px;
}
@keyframes btn-year-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(34,197,94,0.4); }
  50% { box-shadow: 0 12px 40px rgba(34,197,94,0.7), 0 0 20px rgba(34,197,94,0.3); }
}
.btn-year:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 40px rgba(34,197,94,0.6);
  filter: brightness(1.15);
}

.plan-footer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.plan-gold .popular-tag {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a0a20;
  font-family: 'Lilita One', cursive;
  font-size: 0.7rem;
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(251,191,36,0.4);
  position: relative;
  z-index: 1;
}

.refund-link {
  text-align: center;
  margin: 10px auto 40px auto;
}
.refund-link a {
  color: #a78bfa;
  text-decoration: underline;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.refund-link a:hover {
  color: #c4b5fd;
}

.vip-comparison {
  max-width: 1000px;
  margin: 0 auto 50px auto;
}
.vip-comparison h3 {
  font-family: 'Lilita One', cursive;
  font-size: 1.8rem;
  color: #c4b5fd;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(196,181,253,0.3);
}
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(30,3,64,0.6);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.2);
  backdrop-filter: blur(10px);
}
.comparison-table th {
  padding: 14px 16px;
  font-family: 'Lilita One', cursive;
  font-size: 1rem;
  background: rgba(124,58,237,0.2);
  border-bottom: 1px solid rgba(124,58,237,0.2);
}
.comparison-table th:first-child {
  text-align: left;
}
.comparison-table th.col-basic { color: #60a5fa; }
.comparison-table th.col-gold { color: #fbbf24; }
.comparison-table th.col-year { color: #22c55e; }
.comparison-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.comparison-table td:not(:first-child) {
  text-align: center;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table .check { color: #4ade80; font-size: 1.1rem; }
.comparison-table .cross { color: rgba(255,255,255,0.2); font-size: 1.1rem; }

.vip-faq {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: left;
}
.vip-faq h3 {
  font-family: 'Lilita One', cursive;
  font-size: 1.8rem;
  color: #c4b5fd;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(196,181,253,0.3);
}
.vip-faq details {
  background: rgba(30,3,64,0.6);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 10px;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}
.vip-faq details[open] {
  border-color: rgba(167,139,250,0.4);
  background: rgba(30,3,64,0.8);
}
.vip-faq summary {
  cursor: url('/static/cursor/select.cur'), pointer !important;
  font-family: 'Lilita One', cursive;
  font-size: 1.05rem;
  color: #e2e8f0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vip-faq summary::-webkit-details-marker { display: none; }
.vip-faq summary::after {
  content: '+';
  font-size: 1.4rem;
  color: #a78bfa;
  transition: transform 0.3s;
}
.vip-faq details[open] summary::after {
  transform: rotate(45deg);
}
.vip-faq p {
  color: rgba(255,255,255,0.6);
  margin: 10px 0 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  font-family: system-ui, sans-serif;
}

.vip-sticky-cta { display: none; }

footer {
  position: relative;
  z-index: 5;
  padding-bottom: 20px;
}

.vip-plan-appear {
  opacity: 0;
  transform: translateY(40px);
}
.vip-plan-appear.visible {
  animation: plan-appear 0.7s ease-out forwards;
}
@keyframes plan-appear {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .vip-container {
    margin: 180px auto 0 auto;
    padding: 0 20px;
  }
  .vip-plans {
    grid-template-columns: 1fr 1.15fr;
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .vip-plans {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .plan-gold {
    order: -1;
  }
  .comparison-table { font-size: 0.85rem; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
  .billing-pill { font-size: 1.3rem; padding: 14px 38px; }
}

@media (max-width: 768px) {
  .vip-container {
    margin: 160px auto 0 auto;
    padding: 0 15px;
  }
  .vip-title { font-size: 2.4rem; }
  .vip-crown { width: 70px; height: 70px; }
  .vip-desc { font-size: 1.05rem; }
  .plan-features li { font-size: 1.2rem; padding: 5px 6px; }
  .plan-btn { font-size: 1rem; padding: 12px 24px; width: 90%; }
  .btn-gold { font-size: 1.1rem; padding: 14px 28px; }
  .billing-pill { font-size: 1.15rem; padding: 12px 28px; }
  .pill-save { font-size: 0.58rem; padding: 2px 6px; }

  .vip-sticky-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1000;
    background: rgba(12,3,32,0.95);
    backdrop-filter: blur(16px);
    border-top: 2px solid rgba(124,58,237,0.3);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.5);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .sticky-btn {
    flex: 1;
    max-width: 180px;
    padding: 12px 16px;
    border: none;
    border-radius: 14px;
    font-family: 'Lilita One', cursive;
    font-size: 0.95rem;
    cursor: url('/static/cursor/select.cur'), pointer !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .sticky-btn * {
    cursor: url('/static/cursor/select.cur'), pointer !important;
  }
  .sticky-basic {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    box-shadow: 0 4px 16px rgba(59,130,246,0.4);
  }
  .sticky-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a0a20;
    box-shadow: 0 4px 20px rgba(251,191,36,0.5);
    animation: sticky-pulse 2.5s ease-in-out infinite;
    border: 2px solid rgba(251,191,36,0.6);
  }
  @keyframes sticky-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(251,191,36,0.45); }
    50% { box-shadow: 0 6px 28px rgba(251,191,36,0.75); }
  }
  .sticky-login {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff;
    max-width: 100%;
    box-shadow: 0 4px 16px rgba(124,58,237,0.4);
  }
  .sticky-btn:active { transform: scale(0.96); }
  .sticky-btn .sticky-icon { font-size: 1.2rem; }
  .sticky-btn .sticky-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
  .sticky-btn .sticky-text small { font-size: 0.7rem; opacity: 0.8; }

  footer { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .vip-container {
    margin: 140px auto 0 auto;
    padding: 0 10px;
  }
  .vip-title { font-size: 1.9rem; letter-spacing: 1px; }
  .vip-crown { width: 56px; height: 56px; }
  .vip-desc { font-size: 0.95rem; }
  .plan-btn { font-size: 0.95rem; padding: 11px 20px; }
  .btn-gold { font-size: 1.05rem; padding: 12px 24px; }
  .billing-pill { font-size: 1rem; padding: 11px 24px; }
  .pill-save { font-size: 0.55rem; padding: 2px 5px; margin-left: 4px; }
  .comparison-table th, .comparison-table td { padding: 8px 6px; font-size: 0.75rem; }
  .vip-faq details { padding: 12px 14px; }
  .vip-faq summary { font-size: 0.95rem; }
  .vip-faq p { font-size: 0.85rem; }
}

@media (max-width: 360px) {
  .vip-container {
    margin: 130px auto 0 auto;
    padding: 0 8px;
  }
  .vip-title { font-size: 1.6rem; }
  .vip-crown { width: 48px; height: 48px; }
  .vip-plan { padding: 20px 12px 18px; border-radius: 14px; }
  .plan-gold { padding: 24px 14px 20px; }
  .plan-price { font-size: 1.7rem; }
  .plan-gold .plan-price { font-size: 1.9rem; }
  .plan-btn { font-size: 0.85rem; padding: 10px 16px; width: 95%; }
}
