/* ============================================
   Koiboshi - Custom CSS
   Tailwind CDN supplement
   ============================================ */

/* --- Custom Properties --- */
:root {
  --color-primary: #E91E8C;
  --color-primary-dark: #C2185B;
  --color-secondary: #7C4DFF;
  --color-bg: #FFF8FA;
  --color-surface: #FFFFFF;
  --color-text: #2D2D2D;
  --color-text-secondary: #6B6B6B;
  --color-border: #E8E0E4;
  --color-success: #4CAF50;
  --color-warning: #FF9800;
  --font-stack: -apple-system, BlinkMacSystemFont, "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-input: 8px;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-btn: 0 2px 4px rgba(0, 0, 0, 0.12);
}

/* --- Base --- */
html {
  font-family: var(--font-stack);
  background-color: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* --- Gradient backgrounds --- */
.bg-gradient-hero {
  background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 50%, #e8eaf6 100%);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.bg-gradient-card {
  background: linear-gradient(180deg, #fff 0%, #fef7ff 100%);
}

.bg-gradient-loading {
  background: linear-gradient(135deg, #1a0533 0%, #2d1b69 40%, #0d1b2a 100%);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  min-height: 48px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--color-surface);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-btn);
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 44px;
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-secondary:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

/* --- Cards --- */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.card a {
  text-decoration: none;
  color: inherit;
}

/* --- Form elements --- */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-input);
  font-size: 16px;
  font-family: var(--font-stack);
  background: var(--color-surface);
  color: var(--color-text);
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.15);
}

.form-input::placeholder {
  color: #aaa;
}

.form-input.is-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-error {
  font-size: 13px;
  color: #e53e3e;
  margin-top: 4px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* --- Blood type / choice buttons --- */
.choice-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface);
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
  min-width: 44px;
}

.choice-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.choice-btn.is-active,
.choice-btn[aria-pressed="true"] {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
}

.choice-btn:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

/* --- Progress bar --- */
.progress-bar {
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* --- Step indicator --- */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-indicator__item {
  display: flex;
  align-items: center;
  gap: 0;
}

.step-indicator__circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--color-border);
  color: var(--color-text-secondary);
  background: var(--color-surface);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step-indicator__circle.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.step-indicator__circle.is-complete {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.step-indicator__line {
  width: 48px;
  height: 2px;
  background: var(--color-border);
  transition: background 0.3s ease;
}

.step-indicator__line.is-active {
  background: var(--color-primary);
}

.step-indicator__label {
  font-size: 11px;
  color: var(--color-text-secondary);
  margin-top: 4px;
  text-align: center;
}

.step-indicator__label.is-active {
  color: var(--color-primary);
  font-weight: 600;
}

/* --- Score circle --- */
.score-circle {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.score-circle svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.score-circle__bg {
  fill: none;
  stroke: var(--color-border);
  stroke-width: 10;
}

.score-circle__fill {
  fill: none;
  stroke: url(#scoreGradient);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 502;
  stroke-dashoffset: 502;
  transition: stroke-dashoffset 1.5s ease;
}

.score-circle__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.score-circle__number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.score-circle__unit {
  font-size: 20px;
  font-weight: 700;
}

.score-circle__label {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-top: 2px;
}

/* --- Category bar --- */
.category-bar {
  height: 10px;
  background: var(--color-border);
  border-radius: 5px;
  overflow: hidden;
}

.category-bar__fill {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  transition: width 1s ease;
}

/* --- Share section --- */
.share-section__prompt {
  font-size: 13px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 12px;
}

.share-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* --- Share buttons --- */
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  min-height: 48px;
  min-width: 48px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
  border: none;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-btn:active {
  transform: translateY(0);
}

.share-btn:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

.share-btn--line {
  background: #06C755;
}

.share-btn--line:hover {
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.4);
}

.share-btn--x {
  background: #000;
}

.share-btn--copy {
  background: #6B6B6B;
}

.share-btn--copy.is-copied {
  background: var(--color-success);
}

.share-btn--copy .check-icon {
  display: none;
}

.share-btn--copy.is-copied .copy-icon {
  display: none;
}

.share-btn--copy.is-copied .check-icon {
  display: inline;
}

/* --- Share card highlight --- */
.share-card {
  background: linear-gradient(180deg, #fef7ff 0%, #f3e5f5 100%);
  border: 1px solid #e1bee7;
}

.share-card:hover {
  transform: none;
}

.share-card__highlight {
  margin-bottom: 12px;
}

.share-card__score-summary {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.share-card__score {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Viral CTA --- */
.viral-cta {
  background: linear-gradient(135deg, #fff3e0 0%, #fce4ec 100%);
  border: 1px solid #ffe0b2;
}

.viral-cta:hover {
  transform: none;
}

.viral-cta__icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.viral-cta__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.5;
}

.viral-cta__btn {
  max-width: 280px;
  margin: 0 auto;
}

/* --- Ad slot --- */
.ad-slot {
  background: #f5f0f3;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-card);
  padding: 16px;
  text-align: center;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-slot__label {
  font-size: 12px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Loading animation --- */
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(233, 30, 140, 0.3); }
  50% { box-shadow: 0 0 40px rgba(124, 77, 255, 0.5); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.loading-star {
  animation: twinkle 2s ease-in-out infinite;
}

.loading-star:nth-child(2) { animation-delay: 0.3s; }
.loading-star:nth-child(3) { animation-delay: 0.6s; }
.loading-star:nth-child(4) { animation-delay: 0.9s; }
.loading-star:nth-child(5) { animation-delay: 1.2s; }

.loading-float {
  animation: float 3s ease-in-out infinite;
}

.loading-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* --- Fade in --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up:nth-child(4) { animation-delay: 0.3s; }

/* --- Hamburger menu --- */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  justify-content: center;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: none;
}

.hamburger-menu__line {
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-menu.is-open .hamburger-menu__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.is-open .hamburger-menu__line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.is-open .hamburger-menu__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile nav overlay --- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 80vw;
  height: 100%;
  background: var(--color-surface);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 24px;
  z-index: 51;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

/* --- Breadcrumb --- */
.breadcrumb {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb__separator {
  margin: 0 6px;
  color: var(--color-border);
}

/* --- Zodiac grid --- */
.zodiac-card {
  text-align: center;
  padding: 20px 12px;
}

.zodiac-card__icon {
  font-size: 36px;
  margin-bottom: 8px;
  display: block;
}

.zodiac-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

/* --- Ranking badge --- */
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.rank-badge--1 { background: linear-gradient(135deg, #FFD700, #FFA500); }
.rank-badge--2 { background: linear-gradient(135deg, #C0C0C0, #A0A0A0); }
.rank-badge--3 { background: linear-gradient(135deg, #CD7F32, #A0522D); }
.rank-badge--other { background: var(--color-text-secondary); }

/* --- Sticky CTA for mobile --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(255, 248, 250, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-border);
  z-index: 40;
}

/* --- Lucky item badges --- */
.lucky-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fef7ff;
  border: 1px solid #f3e5f5;
  border-radius: 20px;
  font-size: 14px;
  color: var(--color-secondary);
  font-weight: 500;
}

/* --- Scroll to top (used in desktop) --- */
@media (min-width: 1024px) {
  .container-main {
    max-width: 960px;
    margin: 0 auto;
  }
}

/* --- Koiboshi (Love Star) Type Cards --- */
.koiboshi-section {
  position: relative;
  overflow: hidden;
}

.koiboshi-bg {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b1040 40%, #2d1b69 70%, #0d1b2a 100%);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
}

.koiboshi-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 10%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 50%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 30%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 90%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 80%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 40%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 85%, rgba(255,255,255,0.5) 0%, transparent 100%);
  animation: starfield 8s linear infinite alternate;
  pointer-events: none;
}

@keyframes starfield {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.koiboshi-card {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  text-align: center;
  color: #fff;
}

.koiboshi-card__emoji {
  font-size: 48px;
  display: block;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 12px rgba(255,215,0,0.4));
}

.koiboshi-card__name {
  font-size: 22px;
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255,215,0,0.3);
  margin-bottom: 4px;
}

.koiboshi-card__group {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid rgba(255,215,0,0.4);
  border-radius: 20px;
  font-size: 12px;
  color: rgba(255,215,0,0.9);
  margin-bottom: 16px;
}

.koiboshi-card__traits {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}

.koiboshi-card__divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.5), transparent);
  margin: 16px auto;
}

.koiboshi-card__detail {
  text-align: left;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  border: 1px solid rgba(255,215,0,0.1);
}

.koiboshi-card__detail-label {
  font-size: 12px;
  color: rgba(255,215,0,0.8);
  font-weight: 600;
  margin-bottom: 4px;
}

.koiboshi-card__detail-text {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* Koiboshi compatibility */
.koiboshi-compat {
  position: relative;
  z-index: 1;
  padding: 24px;
  text-align: center;
  color: #fff;
}

.koiboshi-compat__title {
  font-size: 16px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 16px;
}

.koiboshi-compat__pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.koiboshi-compat__type {
  text-align: center;
}

.koiboshi-compat__type-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 4px;
}

.koiboshi-compat__type-name {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

.koiboshi-compat__connector {
  font-size: 20px;
  color: rgba(255,215,0,0.6);
}

.koiboshi-compat__comment {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  text-align: left;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
}

/* Scroll animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal--delay-1 { transition-delay: 0.15s; }
.scroll-reveal--delay-2 { transition-delay: 0.3s; }
.scroll-reveal--delay-3 { transition-delay: 0.45s; }

/* Share card (canvas-ready) */
.share-card-canvas {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  margin: 0 auto 16px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b1040 40%, #2d1b69 70%, #0d1b2a 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
}

.share-card-canvas__site {
  font-size: 11px;
  color: rgba(255,215,0,0.7);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.share-card-canvas__emoji {
  font-size: 56px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 16px rgba(255,215,0,0.4));
}

.share-card-canvas__type {
  font-size: 24px;
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255,215,0,0.3);
  margin-bottom: 6px;
}

.share-card-canvas__group {
  font-size: 13px;
  color: rgba(255,215,0,0.8);
  margin-bottom: 24px;
}

.share-card-canvas__score-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.share-card-canvas__score {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.share-card-canvas__label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.share-card-canvas__cta {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  width: 100%;
}

.share-card-canvas__url {
  font-size: 11px;
  color: rgba(255,215,0,0.6);
  margin-top: 4px;
}

/* Download button */
.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #1b1040, #2d1b69);
  color: #FFD700;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
}

.btn-download:hover {
  background: linear-gradient(135deg, #2d1b69, #3d2b79);
  border-color: rgba(255,215,0,0.6);
}

/* --- Print styles --- */
@media print {
  .ad-slot,
  .share-btn,
  .mobile-nav,
  .sticky-cta,
  header nav,
  footer {
    display: none !important;
  }
}
