/* Component Specific Styles - Vibrant Canva Theme & SafeLink Funnel */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.7rem 1.45rem;
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  line-height: 1.25;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-primary-text);
  border-color: var(--color-primary);
  box-shadow: 0 2px 4px rgba(16, 24, 40, 0.08);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.14);
}

/* Radiant Canva Gradient CTA */
.btn-canva-cta {
  background: var(--gradient-canva) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 18px rgba(0, 196, 204, 0.35) !important;
  font-weight: var(--font-weight-bold) !important;
}

.btn-canva-cta:hover {
  transform: translateY(-2px) scale(1.01) !important;
  box-shadow: 0 8px 24px rgba(125, 42, 232, 0.4) !important;
}

.btn-secondary {
  background-color: var(--color-surface);
  color: var(--color-text-primary);
  border-color: var(--color-border);
}

.btn-secondary:hover:not(:disabled) {
  background-color: var(--color-surface-subtle);
  border-color: var(--color-canva-purple);
  color: var(--color-canva-purple);
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: var(--font-size-xs);
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.95rem 1.75rem;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-md);
}

.btn-locked {
  background-color: var(--color-surface-subtle);
  color: var(--color-text-muted);
  border-color: var(--color-border);
  cursor: not-allowed;
  opacity: 0.9;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Status Indicators */
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.01em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  flex-shrink: 0;
}

.status-active .status-dot {
  background-color: var(--color-status-active);
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.18);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(21, 128, 61, 0.4); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(21, 128, 61, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(21, 128, 61, 0); }
}

.status-active {
  color: var(--color-status-active);
}

.status-warning .status-dot {
  background-color: var(--color-status-warning);
}
.status-warning {
  color: var(--color-status-warning);
}

/* The Single Active Link Card */
.active-link-container {
  max-width: 660px;
  margin: 0 auto;
}

.active-link-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.active-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-canva);
}

@media (max-width: 640px) {
  .active-link-card {
    padding: var(--space-6) var(--space-5);
    gap: var(--space-5);
  }
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.team-info-group {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.team-avatar-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 196, 204, 0.12), rgba(125, 42, 232, 0.12));
  border: 1px solid rgba(0, 196, 204, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-canva-purple);
  flex-shrink: 0;
}

.active-team-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  letter-spacing: -0.025em;
}

.active-team-type {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Step Indicator Pills */
.step-badge-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.step-indicator-pill {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-canva-purple);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(125, 42, 232, 0.08);
  border: 1px solid rgba(125, 42, 232, 0.2);
}

/* Cooldown Timer Section */
.cooldown-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
  background-color: var(--color-surface-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.cooldown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-sm);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
}

.cooldown-timer-badge {
  font-family: var(--font-mono);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-canva-purple);
  letter-spacing: -0.03em;
}

.cooldown-track {
  width: 100%;
  height: 8px;
  background-color: var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.cooldown-progress {
  height: 100%;
  width: 0%;
  background: var(--gradient-canva);
  border-radius: var(--radius-full);
  transition: width 0.95s linear;
}

.cooldown-hint {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
}

/* Dedicated Monetag Ad Placement Box */
.ad-slot-container {
  width: 100%;
  min-height: 100px;
  background-color: var(--color-surface-subtle);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  text-align: center;
  margin: var(--space-2) 0;
}

.ad-slot-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
  margin-bottom: 4px;
}

/* Card CTA Action Row */
.card-cta-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@media (min-width: 520px) {
  .card-cta-row {
    flex-direction: row;
    align-items: center;
  }
  .card-cta-row .btn-cta-full {
    flex: 1;
  }
}

/* Card Bottom Info */
.card-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-subtle);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background-color: var(--color-primary);
  color: var(--color-primary-text);
  padding: 0.85rem 1.45rem;
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  box-shadow: 0 12px 28px -5px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  width: 18px;
  height: 18px;
  color: #38bdf8;
  flex-shrink: 0;
}

/* ======================================================== */
/* Multi-Step Funnel Ad Grid & Maximum Monetization Layout   */
/* ======================================================== */

.funnel-layout-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-5);
  position: relative;
}

.funnel-center-col {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex-shrink: 0;
}

/* Desktop Side Ad Rails (160x600 Skyscrapers) */
.ad-rail-side {
  display: none;
  width: 160px;
  min-width: 160px;
  min-height: 600px;
  background-color: var(--color-surface-subtle);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: sticky;
  top: 80px;
  transition: border-color 0.2s ease;
}

.ad-rail-side:hover {
  border-color: var(--color-border-hover);
}

@media (min-width: 1100px) {
  .ad-rail-side {
    display: flex;
  }
}

/* Top & Bottom Banner Ad Containers */
.ad-banner-slot {
  width: 100%;
  background-color: var(--color-surface-subtle);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  transition: all 0.2s ease;
}

.ad-banner-slot.ad-banner-top {
  min-height: 90px;
}

.ad-banner-slot.ad-banner-bottom {
  min-height: 90px;
}

.ad-banner-slot:hover {
  border-color: var(--color-border-hover);
}

/* In-Card Ad Slots (Focused Attention) */
.ad-slot-incard {
  width: 100%;
  min-height: 120px;
  background-color: var(--color-surface-subtle);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: var(--space-2) 0;
  overflow: hidden;
  transition: all 0.2s ease;
}

.ad-slot-incard.ad-slot-highlight {
  background: linear-gradient(135deg, rgba(0, 196, 204, 0.03), rgba(125, 42, 232, 0.03));
  border-color: rgba(0, 196, 204, 0.3);
}

.ad-tag {
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-faint);
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ad-placeholder-hint {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  max-width: 420px;
  line-height: var(--line-height-normal);
}

/* Unauthorized Funnel Access Alert Card */
.unauthorized-card {
  background-color: var(--color-surface);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  box-shadow: var(--shadow-card);
  animation: fadeIn 0.3s ease-out;
}

.unauthorized-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unauthorized-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-primary);
  margin: 0;
}

.unauthorized-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  max-width: 440px;
  line-height: var(--line-height-normal);
}

.unauthorized-countdown-badge {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  padding: 4px 12px;
  background-color: var(--color-surface-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
}

/* Sticky Floating Bottom Ad Bar (Full Page Viewability) */
.ad-sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-1) var(--space-4) var(--space-2) var(--space-4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease;
}

.ad-sticky-bar-header {
  width: 100%;
  max-width: 728px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.ad-sticky-slot {
  width: 100%;
  max-width: 728px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-surface-subtle);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-1);
}

@media (min-width: 768px) {
  .ad-sticky-slot {
    min-height: 90px;
  }
}

.ad-sticky-close-btn {
  background: none;
  border: none;
  color: var(--color-text-faint);
  font-size: 11px;
  font-family: var(--font-mono);
  cursor: pointer;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease;
}

.ad-sticky-close-btn:hover {
  color: var(--color-text-primary);
}

/* ======================================================== */
/* Cardless Open Hero Access Layout (Free + VIP Fast-Track) */
/* ======================================================== */

.hero-access-open {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.open-team-strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.open-team-logo {
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.open-team-name {
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  font-size: var(--font-size-base);
}

.open-team-sep {
  color: var(--color-text-muted);
}

.open-team-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-status-active);
}

/* Action Buttons Row: Side-by-side on desktop, stacked on mobile */
.open-action-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .open-action-buttons {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .open-action-buttons .btn {
    flex: 1;
  }
}

.btn-xl {
  padding: 1rem 1.6rem;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.open-btn-free {
  box-shadow: 0 4px 20px rgba(0, 196, 204, 0.35);
}

.open-btn-vip {
  border: 1px solid rgba(125, 42, 232, 0.35);
  background-color: var(--color-surface);
  color: var(--color-text-primary);
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.05);
}

.open-btn-vip:hover {
  border-color: var(--color-canva-purple);
  color: var(--color-canva-purple);
  background-color: rgba(125, 42, 232, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(125, 42, 232, 0.15);
}

/* Typographic Notes below buttons */
.open-access-notes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
  text-align: center;
}

.open-note-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.open-note-item strong {
  color: var(--color-text-secondary);
}

.free-bullet {
  color: var(--color-status-active);
  font-size: 8px;
}

.vip-bullet {
  color: var(--color-canva-purple);
  font-size: 8px;
}

.open-notes-divider {
  color: var(--color-text-muted);
}

/* Retain for VIP Page & Badges */
.vip-card-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  color: var(--color-canva-purple);
  letter-spacing: 0.05em;
}

/* VIP Page Specific Styles */
.vip-page-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-12) 0 var(--space-8);
}

.vip-comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 860px;
  margin: var(--space-8) auto;
}

@media (min-width: 680px) {
  .vip-comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.plan-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
}

.plan-card.plan-featured {
  border-color: rgba(125, 42, 232, 0.4);
  background: linear-gradient(180deg, rgba(125, 42, 232, 0.04) 0%, var(--color-surface) 100%);
  box-shadow: 0 10px 30px rgba(125, 42, 232, 0.12);
}

.plan-price {
  font-family: var(--font-mono);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-primary);
}

.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.plan-features-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .waitlist-form {
    flex-direction: row;
  }
  .waitlist-form input {
    flex: 1;
  }
}

.waitlist-input {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background-color: var(--color-surface-subtle);
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.waitlist-input:focus {
  border-color: var(--color-canva-purple);
  box-shadow: 0 0 0 3px rgba(125, 42, 232, 0.15);
}

/* ======================================================== */
/* Copy Prevention & Anti-Scraping Protection               */
/* ======================================================== */

.protected-content {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.security-lock-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-muted);
  background-color: var(--color-surface-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  margin-top: 4px;
  text-align: center;
}

/* ======================================================== */
/* Cloudflare Turnstile Human Verification Box              */
/* ======================================================== */

.cloudflare-verify-box {
  background-color: var(--color-surface-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin: var(--space-3) 0 var(--space-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.cloudflare-verify-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #F6821F, #FBAD41);
  opacity: 0.7;
}

.cloudflare-verify-box.is-verified {
  border-color: rgba(16, 185, 129, 0.5);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, var(--color-surface-subtle) 100%);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.cloudflare-verify-box.is-verified::before {
  background: linear-gradient(90deg, #10b981, #00c4cc);
  opacity: 1;
}

.cloudflare-verify-box.attention-pulse {
  animation: cfAttentionShake 0.5s ease-in-out;
  border-color: #f59e0b;
}

@keyframes cfAttentionShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.cf-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.cf-brand-left {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.cf-logo-svg {
  flex-shrink: 0;
}

.cf-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.cf-name {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
}

.cf-desc {
  font-size: 11px;
  color: var(--color-text-muted);
}

.cf-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  color: #f59e0b;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: all 0.25s ease;
}

.cf-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
}

.cloudflare-verify-box.is-verified .cf-status-badge {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

/* Turnstile Widget Content Area */
.cf-widget-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  padding: 6px 0;
  width: 100%;
}

/* Turnstile iframe container styling */
.cf-turnstile {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cf-box-footer {
  font-size: 11px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  text-align: center;
  line-height: 1.4;
  padding-top: 4px;
  border-top: 1px dashed var(--color-border);
}
