#screen-subscription {
  background: #0b0f10 !important;
}

#screen-subscription .gd-premium {
  padding: 16px 16px 40px;
}

/* ── hero ───────────────────────────────────────────────────────────── */
.gd-premium-hero {
  text-align: center;
  padding: 28px 0 20px;
}
.gd-premium-hero .gd-hero-emoji {
  font-size: 48px;
  line-height: 1;
  filter: drop-shadow(0 0 20px rgba(0, 240, 118, 0.4));
  animation: floatEmoji 3s ease-in-out infinite;
  display: inline-block;
  margin-bottom: 8px;
}
.gd-premium-hero h1 {
  margin: 8px 0 6px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.gd-premium-hero p {
  margin: 0;
  color: #bacbb8;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

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

/* ── premium status pill (active/inactive) ──────────────────────────── */
.gd-premium-status {
  margin: 0 0 20px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gd-premium-status .gd-premium-status-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.05);
  color: #bacbb8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
}
.gd-premium-status .gd-premium-status-badge.is-active {
  background: rgba(0, 240, 118, 0.15);
  color: #00f076;
  border-color: rgba(0, 240, 118, 0.3);
  box-shadow: 0 0 12px rgba(0, 240, 118, 0.15);
}
.gd-premium-status .gd-premium-status-badge.is-trial {
  background: rgba(0, 240, 118, 0.1);
  color: #00f076;
  border-color: rgba(0, 240, 118, 0.2);
}
.gd-premium-status .gd-premium-status-copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #bacbb8;
}
.gd-premium-status .gd-premium-status-expiry {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #00f076;
}
.gd-premium-status .gd-premium-status-expiry.is-hidden { display: none; }

/* ── plan cards ─────────────────────────────────────────────────────── */
.gd-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 8px;
}
@media (max-width: 640px) {
  .gd-plans { grid-template-columns: 1fr; }
}

.gd-plan {
  position: relative;
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.gd-plan:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 118, 0.4);
  box-shadow: 0 8px 30px rgba(0, 240, 118, 0.1);
}

.gd-plan-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gd-plan-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05);
  color: #00f076;
  font-size: 22px;
  flex: 0 0 44px;
}
.gd-plan-head h3 { margin: 0; font-size: 18px; font-weight: 800; color: #FFF; }
.gd-plan-sub { color: #bacbb8; font-size: 12px; margin-top: 2px; }

.gd-plan-description {
  font-size: 13px;
  color: #bacbb8;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

.gd-plan-price { display: flex; align-items: baseline; gap: 6px; }
.gd-plan-price .gd-plan-price-amount {
  font-size: 32px; font-weight: 900;
  color: #00f076;
  letter-spacing: -0.02em;
}
.gd-plan-price .gd-plan-price-period {
  color: #bacbb8; font-size: 13px;
  font-weight: 500;
}

.gd-plan-cta {
  margin-top: auto;
  border-radius: 14px;
  padding: 14px;
  font-weight: 800;
  font-size: 15px;
  border: none;
  cursor: pointer;
  width: 100%;
  color: #000000;
  background: #00f076;
  box-shadow: 0 4px 14px rgba(0, 240, 118, 0.25);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s;
}
.gd-plan-cta:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 18px rgba(0, 240, 118, 0.35);
}
.gd-plan-cta:active { transform: scale(0.98); }
.gd-plan-cta[disabled] { opacity: .55; cursor: default; box-shadow: none; }
