/* AI Prompts Pro - Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-color: #060713;
  --card-bg: rgba(15, 16, 38, 0.6);
  --card-border: rgba(255, 255, 255, 0.08);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --primary: #8b5cf6;
  --primary-glow: rgba(139, 92, 246, 0.4);
  --secondary: #ec4899;
  --secondary-glow: rgba(236, 72, 153, 0.4);
  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.4);
  --glass-bg: rgba(10, 11, 30, 0.7);
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --nav-height: 80px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Abstract Background Blobs */
.bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
}

.blob-1 {
  top: -10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: var(--primary);
  animation: float 20s infinite alternate;
}

.blob-2 {
  top: 30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: var(--secondary);
  animation: float 25s infinite alternate-reverse;
}

.blob-3 {
  bottom: 10%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: var(--accent-cyan);
  animation: float 18s infinite alternate;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -60px) scale(1.1); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Typography & Layout Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple-pink {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: #c084fc;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a.active {
  color: var(--primary);
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--card-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.app-store-badges {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 8px 18px;
  text-decoration: none;
  gap: 12px;
  transition: var(--transition);
}

.app-store-btn:hover {
  background: #111;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.app-store-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.app-store-btn .btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-store-btn .subtext {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.app-store-btn .maintext {
  font-size: 16px;
  font-family: var(--font-title);
  font-weight: 700;
}

/* Hero Section */
.hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 19px;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--card-border);
  padding-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 40px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-visual img {
  width: 100%;
  max-width: 400px;
  border-radius: 32px;
  display: block;
}

.hero-glow-back {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

/* Features Grid */
.features {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 11, 30, 0.5) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px 32px;
  border-radius: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.05);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  border: 1px solid rgba(139, 92, 246, 0.2);
  font-size: 24px;
}

.feature-card:nth-child(2) .feature-icon {
  color: var(--secondary);
  background: rgba(236, 72, 153, 0.1);
  border-color: rgba(236, 72, 153, 0.2);
}

.feature-card:nth-child(3) .feature-icon {
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.2);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 16px;
  position: relative;
  z-index: 2;
}

/* Interactive Prompt Sandbox */
.prompt-sandbox {
  padding: 100px 0;
}

.sandbox-container {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 32px;
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.sandbox-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.sandbox-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  padding: 14px 20px;
  border-radius: 12px;
  color: var(--text-muted);
  font-family: var(--font-title);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.category-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}

.category-tab.active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
  border-color: var(--primary);
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

.category-tab-icon {
  font-size: 18px;
}

.sandbox-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prompt-search-bar {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 6px 12px;
  align-items: center;
  gap: 12px;
}

.prompt-search-bar input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  font-size: 16px;
  width: 100%;
  padding: 8px 0;
  font-family: var(--font-body);
}

.prompt-search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.prompt-search-bar svg {
  fill: var(--text-muted);
  width: 20px;
  height: 20px;
}

.prompt-card-display {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.prompt-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.prompt-category-badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #d8b4fe;
}

.prompt-copy-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.prompt-copy-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.prompt-text {
  font-size: 17px;
  color: var(--text-main);
  line-height: 1.6;
  white-space: pre-wrap;
  margin-bottom: 24px;
}

.prompt-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
  color: var(--text-muted);
  font-size: 13px;
}

.prompt-author-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.prompt-author-info img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.prompt-likes {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Pricing Table */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(10, 11, 30, 0.5) 0%, transparent 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 48px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pricing-card.premium {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
}

.pricing-card.premium::after {
  content: 'CONSIGLIATO';
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
}

.pricing-price span {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 15px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-main);
  font-size: 15px;
}

.pricing-features svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  flex-shrink: 0;
}

.pricing-card.premium .pricing-features svg {
  fill: var(--secondary);
}

.pricing-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-features li.disabled svg {
  fill: var(--text-muted);
  opacity: 0.5;
}

/* App Screenshots / Gallery */
.gallery {
  padding: 100px 0;
  text-align: center;
}

.gallery-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.gallery-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.gallery-item {
  min-width: 260px;
  max-width: 280px;
  scroll-snap-align: center;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(139, 92, 246, 0.4);
}

.gallery-item img {
  width: 100%;
  display: block;
}

/* Accordion FAQ */
.faq {
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 24px;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 15px;
}

.faq-item.active {
  border-color: rgba(139, 92, 246, 0.2);
  background: rgba(15, 16, 38, 0.8);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  fill: var(--primary);
}

.faq-item.active .faq-answer {
  max-height: 1000px; /* arbitrary large value */
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Call to Action Banner */
.cta-banner {
  padding: 100px 0;
}

.cta-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-card h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.cta-card p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px auto;
  font-size: 18px;
}

.cta-card .app-store-badges {
  justify-content: center;
  margin-top: 0;
}

/* Footer */
footer {
  background: rgba(5, 5, 15, 0.95);
  border-top: 1px solid var(--card-border);
  padding: 60px 0 30px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .logo {
  font-size: 20px;
}

.footer-brand p {
  max-width: 320px;
  font-size: 14px;
}

.footer-column h4 {
  color: var(--text-main);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul a {
  text-decoration: none;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-column ul a:hover {
  color: var(--text-main);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}

/* Responsiveness */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-content p {
    margin: 0 auto 32px auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .app-store-badges {
    justify-content: center;
  }

  .sandbox-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sandbox-categories {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .category-tab {
    white-space: nowrap;
    padding: 10px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  :root {
    --nav-height: 70px;
  }

  .nav-links {
    display: none; /* Simplified for mobile */
  }

  .section-header h2 {
    font-size: 30px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2px;
  gap: 2px;
  align-items: center;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  color: var(--text-main);
}

.lang-btn.active {
  background: var(--primary);
  color: #fff;
}

/* Locked Prompt Overlay */
.prompt-card-display.locked-state {
  position: relative;
  overflow: hidden;
}

.prompt-text.blurred {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
}

.prompt-lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 11, 30, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 20px;
  text-align: center;
  border-radius: 20px;
}

.lock-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px var(--primary-glow);
  color: #fff;
  font-size: 18px;
}

.lock-icon-wrapper svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.lock-message {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 14px;
  max-width: 260px;
}

.lock-cta {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 8px;
}

