/* N10TV AI Studio - Global Styles */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
}

/* ============ HOME PAGE - Genspark Style ============ */
.home-bg {
  background: #0a0a0f;
  color: #fff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.home-bg::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
  animation: rotate-bg 60s linear infinite;
}

@keyframes rotate-bg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 50%, #f472b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #fde047 0%, #facc15 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(168, 139, 250, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.prompt-box {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.prompt-box:focus-within {
  border-color: rgba(168, 139, 250, 0.6);
  box-shadow: 0 0 0 4px rgba(168, 139, 250, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, #fde047 0%, #facc15 50%, #f59e0b 100%);
  color: #0a0a0f;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(250, 204, 21, 0.5);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.float {
  animation: float 6s ease-in-out infinite;
}

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

/* Hero showcase image frames */
.hero-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(168, 139, 250, 0.15) inset;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.hero-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(168, 139, 250, 0.4), rgba(244, 114, 182, 0.3), rgba(96, 165, 250, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.hero-img-frame:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow:
    0 30px 80px rgba(139, 92, 246, 0.4),
    0 0 0 1px rgba(168, 139, 250, 0.4) inset;
}

.hero-img-frame:hover::after {
  opacity: 1;
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/5;
}

.hero-img-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* ============ AMERICA 250 BANNER — LIGHT THEME ============ */
.america250-banner {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.97) 0%, rgba(255, 240, 220, 0.95) 50%, rgba(255, 245, 230, 0.97) 100%);
  padding: 2rem 2.5rem;
  border: 2px solid #be1a2c;
  box-shadow: 0 20px 60px rgba(190, 26, 44, 0.18), 0 0 0 4px rgba(255, 215, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.america250-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    url('https://image.pollinations.ai/prompt/american%20flag%20waving%20patriotic%20background%20golden%20stars?width=400&height=400&seed=1001&model=flux&nologo=true'),
    url('https://image.pollinations.ai/prompt/statue%20of%20liberty%20silhouette%20golden%20sunset?width=300&height=300&seed=1002&model=flux&nologo=true'),
    url('https://image.pollinations.ai/prompt/white%20house%20washington%20dc%20american%20flag%20golden?width=300&height=300&seed=1003&model=flux&nologo=true'),
    url('https://image.pollinations.ai/prompt/fireworks%20celebration%20red%20white%20blue%20stars?width=300&height=300&seed=1004&model=flux&nologo=true');
  background-position: top -20px left -30px, top -10px right -20px, bottom -30px left -20px, bottom -20px right -30px;
  background-size: 180px, 130px, 130px, 130px;
  background-repeat: no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

.america250-banner:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: 0 30px 80px rgba(190, 26, 44, 0.3), 0 0 0 4px rgba(255, 215, 0, 0.5);
  border-color: #8b0000;
}

.america250-stripes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 40px,
      rgba(190, 26, 44, 0.04) 40px,
      rgba(190, 26, 44, 0.04) 80px
    );
  pointer-events: none;
  z-index: 1;
}

.america250-stars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(190, 26, 44, 0.6) 0%, transparent 2px),
    radial-gradient(circle at 25% 60%, rgba(10, 31, 68, 0.5) 0%, transparent 2px),
    radial-gradient(circle at 40% 30%, rgba(190, 26, 44, 0.5) 0%, transparent 2px),
    radial-gradient(circle at 60% 70%, rgba(10, 31, 68, 0.6) 0%, transparent 2px),
    radial-gradient(circle at 80% 25%, rgba(190, 26, 44, 0.5) 0%, transparent 2px),
    radial-gradient(circle at 90% 80%, rgba(10, 31, 68, 0.5) 0%, transparent 2px),
    radial-gradient(circle at 15% 85%, rgba(190, 26, 44, 0.4) 0%, transparent 2px),
    radial-gradient(circle at 50% 50%, rgba(255, 165, 0, 0.4) 0%, transparent 2px),
    radial-gradient(circle at 70% 15%, rgba(10, 31, 68, 0.5) 0%, transparent 2px);
  animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.america250-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  cursor: pointer;
}

.america250-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 280px;
}

.america250-flag {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  background: linear-gradient(135deg, #be1a2c 0%, #ffffff 50%, #0a1f44 100%);
  border: 2px solid #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(190, 26, 44, 0.35);
  animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.america250-text {
  flex: 1;
}

.america250-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #be1a2c, #8b0000);
  border: 1px solid #ffd700;
  color: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  box-shadow: 0 2px 10px rgba(190, 26, 44, 0.3);
}

.america250-eyebrow i {
  font-size: 0.65rem;
  color: #ffd700;
}

.america250-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: #0a1f44;
  line-height: 1.1;
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.america250-250 {
  background: linear-gradient(135deg, #be1a2c 0%, #ff4d4d 50%, #be1a2c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2em;
}

.america250-250 sup {
  font-size: 0.5em;
  vertical-align: super;
}

.america250-subtitle {
  color: #4a5568;
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 500;
}

.america250-right {
  text-align: right;
  flex-shrink: 0;
}

.america250-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #be1a2c 0%, #8b0000 100%);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 0.6rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(190, 26, 44, 0.4);
  border: 1px solid #ffd700;
}

.america250-banner:hover .america250-cta {
  transform: translateX(4px);
  box-shadow: 0 6px 30px rgba(190, 26, 44, 0.6);
}

.america250-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #0a1f44;
  font-size: 0.85rem;
  font-weight: 700;
}

.america250-date::before {
  content: '🎆';
  font-size: 1rem;
}

/* COUNTDOWN — Light banner version */
.america250-countdown-wrap {
  position: relative;
  z-index: 2;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(190, 26, 44, 0.25);
  text-align: center;
}

.america250-countdown-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #be1a2c;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.america250-countdown-label i {
  color: #ff8c42;
  animation: flicker 1.5s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.15); }
}

.america250-countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-block {
  background: linear-gradient(135deg, #0a1f44 0%, #1a2f5c 100%);
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  min-width: 88px;
  box-shadow: 0 6px 22px rgba(10, 31, 68, 0.35), inset 0 1px 0 rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.countdown-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 215, 0, 0.1), transparent);
  pointer-events: none;
}

.countdown-number {
  font-family: 'Playfair Display', 'Inter', serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #ffd700 60%, #ffaa00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 0.35rem;
}

.countdown-sep {
  font-size: 1.8rem;
  font-weight: 900;
  color: #be1a2c;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* VIDEO */
.america250-video-wrap {
  position: relative;
  z-index: 2;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 215, 0, 0.25);
}

.america250-video-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #ffd700;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.america250-video-title i {
  font-size: 1.2rem;
  color: #ff4444;
}

.america250-video {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.15);
  background: #000;
}

.america250-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.america250-video-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.america250-vlink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.america250-vlink:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.7);
  color: #ffd700;
  transform: translateY(-1px);
}

.america250-vlink i {
  font-size: 0.85rem;
  color: #ff4444;
}

.america250-vlink-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #0a1f44;
  border-color: transparent;
  font-weight: 700;
}

.america250-vlink-primary i {
  color: #be1a2c;
}

.america250-vlink-primary:hover {
  color: #0a1f44;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

@media (max-width: 640px) {
  .countdown-block {
    min-width: 64px;
    padding: 0.6rem 0.7rem;
  }
  .countdown-number {
    font-size: 1.7rem;
  }
  .countdown-sep {
    font-size: 1.2rem;
  }
  .countdown-label {
    font-size: 0.55rem;
  }
}

@media (max-width: 768px) {
  .america250-banner {
    padding: 1.5rem;
  }
  .america250-content {
    flex-direction: column;
    text-align: center;
  }
  .america250-left {
    flex-direction: column;
    text-align: center;
  }
  .america250-text {
    text-align: center;
  }
  .america250-title {
    font-size: 1.5rem;
  }
  .america250-right {
    text-align: center;
  }
  .america250-cta {
    align-items: center;
  }
}

/* ============ AMERICA 250 — AI BANANA GENERATOR ============ */
.america250-generator-wrap {
  position: relative;
  z-index: 2;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(190, 26, 44, 0.25);
  text-align: center;
}

.america250-gen-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #be1a2c 0%, #0a1f44 50%, #be1a2c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.america250-gen-title i {
  -webkit-text-fill-color: #ffaa00;
  color: #ffaa00;
  font-size: 1.3rem;
  animation: flicker 1.8s ease-in-out infinite;
}

.america250-gen-subtitle {
  color: #4a5568;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 1.3rem;
}

/* Theme grid */
.america250-theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.6rem;
  max-width: 880px;
  margin: 0 auto 1.4rem;
}

.america250-theme-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 0.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 245, 220, 0.5) 100%);
  border: 2px solid rgba(190, 26, 44, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  color: #0a1f44;
}

.america250-theme-btn:hover {
  border-color: #be1a2c;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 235, 200, 0.75) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(190, 26, 44, 0.2);
}

.america250-theme-btn.active {
  border-color: #be1a2c;
  background: linear-gradient(135deg, #be1a2c 0%, #8b0000 100%);
  color: #fff;
  box-shadow: 0 6px 22px rgba(190, 26, 44, 0.45), 0 0 0 3px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

.america250-theme-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.america250-theme-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Banana button row */
.america250-banana-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.america250-banana-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 50%, #ff8c00 100%);
  color: #0a1f44;
  border: 2px solid #be1a2c;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  box-shadow: 0 8px 28px rgba(255, 170, 0, 0.5), 0 0 0 4px rgba(190, 26, 44, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}

.america250-banana-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.america250-banana-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(255, 170, 0, 0.7), 0 0 0 4px rgba(190, 26, 44, 0.35);
}

.america250-banana-btn:hover::before {
  left: 100%;
}

.america250-banana-btn:disabled {
  cursor: not-allowed;
  transform: none;
}

.banana-emoji {
  font-size: 1.4rem;
  animation: wave 2.5s ease-in-out infinite;
  display: inline-block;
}

/* Result area */
.america250-result {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  min-height: 240px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.05) 0%, rgba(190, 26, 44, 0.05) 100%);
  border: 2px dashed rgba(190, 26, 44, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem;
}

.america250-result-empty,
.america250-result-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #4a5568;
  font-size: 0.9rem;
  font-weight: 600;
}

.america250-result-empty i {
  font-size: 2.2rem;
  color: rgba(190, 26, 44, 0.4);
}

.america250-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 4px solid rgba(190, 26, 44, 0.2);
  border-top-color: #be1a2c;
  border-right-color: #ffaa00;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.america250-result-image {
  width: 100%;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.america250-result-image img {
  width: 100%;
  max-width: 680px;
  height: auto;
  border-radius: 10px;
  border: 3px solid #ffd700;
  box-shadow: 0 12px 40px rgba(190, 26, 44, 0.3), 0 0 0 4px rgba(190, 26, 44, 0.12);
}

.america250-result-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.america250-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #be1a2c 0%, #8b0000 100%);
  color: #fff;
  border: 1px solid #ffd700;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.america250-action-btn:hover {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #0a1f44;
  border-color: #be1a2c;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 170, 0, 0.4);
}

@media (max-width: 640px) {
  .america250-gen-title { font-size: 1.2rem; }
  .america250-banana-btn { font-size: 0.85rem; padding: 0.8rem 1.4rem; }
  .america250-theme-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============ STUDIO PAGE - Genspark-style Dark + Gold Accent ============ */
:root {
  --studio-bg: #0a0a0a;
  --studio-bg2: #131313;
  --studio-bg3: #1a1a1a;
  --studio-border: rgba(255, 255, 255, 0.08);
  --studio-border-hover: rgba(201, 162, 39, 0.4);
  --studio-text: #e8e8e8;
  --studio-text-muted: #888;
  --studio-gold: #c9a227;
  --studio-gold-bright: #f0c040;
}

.studio-bg {
  background: #0a0a0a;
  color: var(--studio-text);
  min-height: 100vh;
  display: flex;
}

/* SIDEBAR */
.studio-sidebar {
  width: 240px;
  background: #0c0c0c;
  border-right: 1px solid var(--studio-border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
}

.studio-sidebar-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--studio-border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.studio-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0.5rem;
}

.sidebar-section-title {
  padding: 0.75rem 0.75rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.75rem;
  margin: 0.15rem 0;
  border-radius: 8px;
  color: #b8b8b8;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}

.sidebar-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.sidebar-item.active {
  background: rgba(201, 162, 39, 0.1);
  color: var(--studio-gold-bright);
  border-left: 3px solid var(--studio-gold);
  padding-left: calc(0.75rem - 3px);
}

.sidebar-item i {
  width: 18px;
  font-size: 0.95rem;
  text-align: center;
}

.sidebar-badge {
  margin-left: auto;
  background: linear-gradient(135deg, var(--studio-gold), var(--studio-gold-bright));
  color: #000;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.studio-sidebar-footer {
  padding: 0.75rem;
  border-top: 1px solid var(--studio-border);
}

.studio-sidebar-footer button {
  width: 100%;
  background: transparent;
  border: 1px solid var(--studio-border);
  color: #888;
  padding: 0.5rem;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.2s;
}

.studio-sidebar-footer button:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

/* MAIN CONTENT */
.studio-main {
  flex: 1;
  margin-left: 240px;
  min-height: 100vh;
}

.studio-topbar {
  height: 56px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--studio-border);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 30;
}

.studio-topbar-title {
  font-weight: 600;
  color: #fff;
}

.studio-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.credit-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.credit-badge:hover {
  border-color: var(--studio-gold);
}

.credit-badge i {
  color: var(--studio-gold-bright);
}

.credit-badge .credit-count {
  font-weight: 700;
  color: var(--studio-gold-bright);
}

.go-pro-btn {
  background: linear-gradient(135deg, var(--studio-gold), var(--studio-gold-bright));
  color: #000;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.83rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.go-pro-btn:hover {
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
  transform: translateY(-1px);
}

/* CONTENT AREA */
.studio-content {
  padding: 3rem 2rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.studio-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.studio-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.studio-hero p {
  color: #888;
  font-size: 0.95rem;
}

/* PROMPT BOX (Genspark style) */
.studio-prompt-box {
  background: var(--studio-bg2);
  border: 1px solid var(--studio-border);
  border-radius: 14px;
  padding: 0.5rem 0.5rem 0.5rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.studio-prompt-box:focus-within {
  border-color: var(--studio-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.studio-upload-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #aaa;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.studio-upload-icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.studio-prompt-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.95rem;
  padding: 0.6rem 0.5rem;
}

.studio-prompt-input::placeholder {
  color: #666;
}

.studio-create-btn {
  background: linear-gradient(135deg, var(--studio-gold), var(--studio-gold-bright));
  color: #000;
  font-weight: 700;
  padding: 0.55rem 1.4rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  transition: all 0.2s;
}

.studio-create-btn:hover {
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
}

/* SECTION */
.studio-section {
  margin-bottom: 3rem;
}

.studio-section-header {
  margin-bottom: 1rem;
}

.studio-section-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.studio-section-header p {
  color: #888;
  font-size: 0.85rem;
}

/* TOOL CARDS - Horizontal scroll */
.tool-scroller {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.tool-scroller::-webkit-scrollbar { height: 6px; }
.tool-scroller::-webkit-scrollbar-track { background: transparent; }
.tool-scroller::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

.tool-card {
  flex-shrink: 0;
  width: 200px;
  height: 280px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--studio-bg2);
  border: 1px solid var(--studio-border);
}

.tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.tool-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tool-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
}

.tool-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.tool-card-desc {
  font-size: 0.72rem;
  color: #ccc;
}

/* STYLE SELECTOR GRID */
.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.85rem;
}

.style-item {
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.2s;
  background: var(--studio-bg2);
}

.style-item:hover {
  border-color: rgba(201, 162, 39, 0.5);
  transform: translateY(-2px);
}

.style-item.active {
  border-color: var(--studio-gold);
}

.style-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.6rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  font-size: 0.78rem;
  color: #fff;
  font-weight: 600;
}

/* RESULT MODAL */
.result-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.result-overlay.active { display: flex; }

.result-panel {
  background: var(--studio-bg2);
  border: 1px solid var(--studio-border);
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
}

.result-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.result-panel-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: #aaa;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.result-panel-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

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

.result-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--studio-border);
  background: #000;
}

.result-img-wrap img { width: 100%; display: block; }

.result-actions {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--studio-bg3);
}

.result-action-btn {
  flex: 1;
  padding: 0.5rem;
  border-radius: 7px;
  border: 1px solid var(--studio-border);
  background: transparent;
  color: #ccc;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.result-action-btn:hover {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--studio-gold);
  color: var(--studio-gold-bright);
}

.result-action-btn.primary {
  background: linear-gradient(135deg, var(--studio-gold), var(--studio-gold-bright));
  color: #000;
  font-weight: 700;
  border-color: transparent;
}

/* PRICING MODAL */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.pkg-card {
  background: var(--studio-bg3);
  border: 1px solid var(--studio-border);
  border-radius: 12px;
  padding: 1.25rem;
  position: relative;
  transition: all 0.2s;
}

.pkg-card:hover {
  border-color: var(--studio-gold);
  transform: translateY(-3px);
}

.pkg-card.popular {
  border-color: var(--studio-gold);
  background: linear-gradient(135deg, rgba(201,162,39,0.08), rgba(201,162,39,0.02));
}

.pkg-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: linear-gradient(135deg, var(--studio-gold), var(--studio-gold-bright));
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.pkg-name {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.25rem;
}

.pkg-price {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.2rem;
}

.pkg-credits {
  font-size: 0.85rem;
  color: var(--studio-gold-bright);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pkg-desc {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 1rem;
}

.pkg-buy-btn {
  width: 100%;
  padding: 0.55rem;
  border-radius: 8px;
  border: 1px solid var(--studio-gold);
  background: transparent;
  color: var(--studio-gold-bright);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.85rem;
}

.pkg-buy-btn:hover {
  background: var(--studio-gold);
  color: #000;
}

.pkg-card.popular .pkg-buy-btn {
  background: linear-gradient(135deg, var(--studio-gold), var(--studio-gold-bright));
  color: #000;
}

.pkg-card.popular .pkg-buy-btn:hover {
  box-shadow: 0 4px 16px rgba(201,162,39,0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .studio-sidebar { transform: translateX(-100%); transition: transform 0.3s; }
  .studio-sidebar.open { transform: translateX(0); }
  .studio-main { margin-left: 0; }
  .studio-hero h1 { font-size: 2rem; }
  .studio-content { padding: 2rem 1rem; }
}

.gold-card {
  background: var(--studio-bg2);
  border: 1px solid var(--studio-border);
  border-radius: 12px;
  transition: all 0.2s;
}

.gold-card:hover {
  border-color: rgba(201, 162, 39, 0.3);
}

.gold-input {
  background: var(--studio-bg3);
  border: 1px solid var(--studio-border);
  color: #fff;
  transition: all 0.2s;
}

.gold-input:focus {
  outline: none;
  border-color: var(--studio-gold);
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.15);
}

.gold-input::placeholder { color: #666; }

.upload-zone {
  background: rgba(201, 162, 39, 0.02);
  border: 2px dashed rgba(201, 162, 39, 0.3);
  transition: all 0.2s;
}

.upload-zone:hover, .upload-zone.dragover {
  background: rgba(201, 162, 39, 0.05);
  border-color: var(--studio-gold);
}

.model-pill {
  background: var(--studio-bg3);
  border: 1px solid var(--studio-border);
  color: #ccc;
  transition: all 0.2s;
  cursor: pointer;
}

.model-pill:hover {
  border-color: var(--studio-gold);
  color: #fff;
}

.model-pill.active {
  background: linear-gradient(135deg, var(--studio-gold), var(--studio-gold-bright));
  color: #000;
  font-weight: 700;
  border-color: transparent;
}

.scrollbar-gold::-webkit-scrollbar {
  width: 6px;
}
.scrollbar-gold::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}
.scrollbar-gold::-webkit-scrollbar-thumb {
  background: rgba(250, 204, 21, 0.4);
  border-radius: 3px;
}
.scrollbar-gold::-webkit-scrollbar-thumb:hover {
  background: rgba(250, 204, 21, 0.6);
}

.spinner-gold {
  border: 3px solid rgba(250, 204, 21, 0.2);
  border-top-color: #facc15;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Header sticky */
.nav-blur {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 15, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-blur-gold {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.8);
  border-bottom: 1px solid rgba(250, 204, 21, 0.2);
}

/* Service icon glow */
.icon-glow {
  filter: drop-shadow(0 0 20px currentColor);
}

/* Result image */
.result-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.result-card:hover {
  border-color: rgba(250, 204, 21, 0.6);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-title { font-size: 3rem !important; }
}

/* ============ HERO PREVIEW FRAME (right side) ============ */
.hero-preview-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 32px;
  background: linear-gradient(145deg, #1a1f3a 0%, #0a0f24 50%, #1a0a2e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  box-shadow: 0 30px 80px rgba(124, 58, 237, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.hero-preview-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(124, 58, 237, 0.25), transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(236, 72, 153, 0.2), transparent 50%),
              radial-gradient(circle at 50% 80%, rgba(220, 38, 38, 0.15), transparent 50%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes heroGlow {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.hero-live-badge {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.5);
}

.hero-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulseLive 1.4s ease-in-out infinite;
}

@keyframes pulseLive {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-preview-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.hero-slide,
.hero-result-img,
.hero-upload-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active,
.hero-result-img.show,
.hero-upload-preview.show {
  opacity: 1;
}

.hero-result-img.show,
.hero-upload-preview.show {
  z-index: 5;
}

.hero-loading {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 36, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #e8e8e8;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10;
}

.hero-loading.show {
  display: flex;
}

.hero-spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-top-color: #c9a227;
  border-right-color: #ec4899;
  animation: spin 0.9s linear infinite;
}

.hero-slide-dots {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 24px;
  border-radius: 4px;
  background: linear-gradient(90deg, #c9a227, #ec4899);
}

.hero-cta-row {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
  padding: 0 0.2rem;
}

.hero-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  font-family: inherit;
}

.hero-btn-upload {
  background: rgba(255, 255, 255, 0.06);
  color: #e8e8e8;
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-btn-upload:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(201, 162, 39, 0.5);
  color: #ffd700;
}

.hero-btn-try {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #c9a227 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.hero-btn-try:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(236, 72, 153, 0.5);
}

.hero-btn-try:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
  padding: 0 0.2rem;
  flex-wrap: wrap;
}

.hero-action-btn {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #e8e8e8;
  font-family: inherit;
}

.hero-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 162, 39, 0.5);
  color: #ffd700;
}

.hero-action-share {
  background: linear-gradient(135deg, #c9a227 0%, #ffaa00 100%);
  color: #0a0a0a;
  border-color: transparent;
}

.hero-action-share:hover {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000;
  box-shadow: 0 4px 14px rgba(255, 170, 0, 0.4);
}

@media (max-width: 1024px) {
  .hero-preview-frame {
    max-width: 380px;
    margin: 2rem auto 0;
  }
}

@media (max-width: 640px) {
  .hero-preview-frame {
    max-width: 100%;
    border-radius: 24px;
    padding: 0.75rem;
  }
  .hero-preview-screen {
    border-radius: 18px;
  }
  .hero-btn {
    padding: 0.7rem 0.6rem;
    font-size: 0.78rem;
  }
}

/* ============ AI LOGO TICKER ============ */
.ai-ticker-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
  background: linear-gradient(90deg, transparent 0%, rgba(124, 58, 237, 0.05) 50%, transparent 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ai-ticker-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: ticker 60s linear infinite;
}

.ai-ticker-wrap:hover .ai-ticker-track {
  animation-play-state: paused;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ai-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
  cursor: default;
}

.ai-ticker-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand, #c9a227);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px var(--brand, #c9a227);
}

.ai-ticker-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.ai-ticker-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #e8e8e8;
  letter-spacing: 0.01em;
}

.ai-ticker-caption {
  position: relative;
  z-index: 2;
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.ai-ticker-caption i {
  color: #c9a227;
}

.ai-ticker-caption strong {
  color: #ffd700;
  font-weight: 800;
}

@media (max-width: 640px) {
  .ai-ticker-item { padding: 0.45rem 0.9rem; }
  .ai-ticker-name { font-size: 0.72rem; }
  .ai-ticker-caption { font-size: 0.75rem; }
}

/* ============ AMERICA 250 — UPLOAD ZONE ============ */
.america250-upload-zone {
  position: relative;
  max-width: 720px;
  margin: 0 auto 1.2rem;
  padding: 1.4rem;
  border-radius: 16px;
  border: 2px dashed #be1a2c;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 240, 200, 0.5) 100%);
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.america250-upload-zone:hover {
  border-color: #8b0000;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 230, 180, 0.65) 100%);
  box-shadow: 0 8px 24px rgba(190, 26, 44, 0.15);
}

.america250-upload-zone.drag-over {
  border-color: #ffaa00;
  border-style: solid;
  background: linear-gradient(135deg, rgba(255, 235, 200, 0.9) 0%, rgba(255, 215, 0, 0.3) 100%);
  transform: scale(1.01);
}

.america250-upload-zone.has-image {
  border-style: solid;
  border-color: #22c55e;
  cursor: default;
  padding: 0.6rem;
}

.america250-upload-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  width: 100%;
}

.america250-upload-empty > i {
  font-size: 2.4rem;
  color: #be1a2c;
  margin-bottom: 0.2rem;
}

.america250-upload-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.america250-upload-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0a1f44;
}

.america250-upload-text span {
  font-size: 0.82rem;
  color: #4a5568;
}

.america250-upload-text u {
  color: #be1a2c;
  text-decoration: underline;
  font-weight: 700;
}

.america250-upload-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  color: #6b7280;
  margin-top: 0.35rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 215, 0, 0.18);
  border-radius: 999px;
  border: 1px solid rgba(255, 170, 0, 0.4);
}

.america250-upload-hint i {
  color: #be1a2c;
}

.america250-upload-preview {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.america250-upload-preview img {
  max-width: 100%;
  max-height: 260px;
  border-radius: 10px;
  border: 2px solid #ffd700;
  box-shadow: 0 6px 20px rgba(190, 26, 44, 0.2);
  object-fit: contain;
}

.america250-upload-remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(190, 26, 44, 0.92);
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.america250-upload-remove:hover {
  background: #8b0000;
  transform: scale(1.1) rotate(90deg);
}

.america250-upload-tag {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.america250-mode-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: #0a1f44;
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}

.america250-mode-label i {
  color: #be1a2c;
}

@media (max-width: 640px) {
  .america250-upload-zone { padding: 1rem; min-height: 130px; }
  .america250-upload-empty > i { font-size: 1.8rem; }
  .america250-upload-text strong { font-size: 0.95rem; }
  .america250-upload-text span { font-size: 0.75rem; }
  .america250-upload-hint { font-size: 0.68rem; padding: 0.3rem 0.65rem; }
}

/* ============ BELLA AI ASSISTANT ============ */
.bella-assistant {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 240, 245, 0.7) 100%);
  border: 2px solid rgba(236, 72, 153, 0.35);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15), 0 0 0 4px rgba(255, 215, 0, 0.18);
}

.bella-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.bella-avatar {
  width: 110px;
  height: 140px;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
  border: 3px solid #ffd700;
  box-shadow: 0 8px 24px rgba(190, 26, 44, 0.3), 0 0 0 3px rgba(236, 72, 153, 0.3);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, #ffe6f0, #fff4cc);
  animation: bellaBreathe 4s ease-in-out infinite;
}

@keyframes bellaBreathe {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.02) translateY(-3px); }
}

.bella-avatar:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 12px 32px rgba(190, 26, 44, 0.4), 0 0 0 4px rgba(255, 215, 0, 0.5);
}

.bella-avatar.bella-bounce {
  animation: bellaBounce 0.6s ease;
}
@keyframes bellaBounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-12px) rotate(-5deg); }
  60% { transform: translateY(0) rotate(3deg); }
}

.bella-avatar.bella-wave-anim {
  animation: bellaWave 0.8s ease;
}
@keyframes bellaWave {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

.bella-status-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.4);
  animation: bellaPulse 1.6s ease-in-out infinite;
  z-index: 2;
}

@keyframes bellaPulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1); }
}

.bella-name-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.55rem;
  background: linear-gradient(135deg, #ec4899 0%, #be1a2c 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(236, 72, 153, 0.4);
}

.bella-name-badge i {
  color: #ffd700;
  font-size: 0.6rem;
}

.bella-bubble {
  position: relative;
  flex: 1;
  background: #fff;
  border: 2px solid rgba(190, 26, 44, 0.2);
  border-radius: 16px;
  padding: 0.95rem 1.1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  min-height: 86px;
}

.bella-bubble-tail {
  position: absolute;
  top: 26px;
  left: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 12px 8px 0;
  border-color: transparent #fff transparent transparent;
  filter: drop-shadow(-2px 0 0 rgba(190, 26, 44, 0.2));
}

.bella-bubble-content {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #1a1a2e;
  font-weight: 500;
  min-height: 1.5em;
  margin-bottom: 0.7rem;
}

.bella-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bella-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ec4899;
  animation: bellaTyping 1.2s infinite;
}
.bella-typing span:nth-child(2) { animation-delay: 0.2s; background: #be1a2c; }
.bella-typing span:nth-child(3) { animation-delay: 0.4s; background: #ffaa00; }
@keyframes bellaTyping {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.bella-quick-actions {
  display: none;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.bella-quick {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(255, 215, 0, 0.08) 100%);
  border: 1.5px solid rgba(236, 72, 153, 0.25);
  border-radius: 999px;
  color: #be1a2c;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.bella-quick:hover {
  background: linear-gradient(135deg, #ec4899 0%, #be1a2c 100%);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.bella-quick i {
  font-size: 0.7rem;
}

.bella-quick-go {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  border-color: #be1a2c;
  color: #0a1f44;
  font-weight: 800;
}

.bella-quick-go:hover {
  background: linear-gradient(135deg, #be1a2c 0%, #8b0000 100%);
  color: #fff;
  border-color: #ffd700;
  box-shadow: 0 4px 14px rgba(190, 26, 44, 0.45);
}

@media (max-width: 640px) {
  .bella-assistant {
    flex-direction: column;
    align-items: center;
    padding: 0.85rem;
  }
  .bella-avatar-wrap {
    width: 90px;
  }
  .bella-avatar {
    width: 90px;
    height: 110px;
  }
  .bella-bubble {
    width: 100%;
  }
  .bella-bubble-tail {
    top: -10px;
    left: 30px;
    border-width: 0 8px 12px 8px;
    border-color: transparent transparent #fff transparent;
    filter: drop-shadow(0 -2px 0 rgba(190, 26, 44, 0.2));
  }
  .bella-quick { font-size: 0.68rem; padding: 0.35rem 0.65rem; }
}

/* ============ BELLA — Voice Toggle + Sound Wave ============ */
.bella-voice-toggle {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-size: 0.78rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.45);
  transition: all 0.2s ease;
  z-index: 4;
  padding: 0;
}

.bella-voice-toggle:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.6);
}

.bella-voice-toggle.muted {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  box-shadow: 0 4px 14px rgba(107, 114, 128, 0.4);
}

.bella-sound-wave {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 2px;
  height: 12px;
  pointer-events: none;
}

.bella-sound-wave.active {
  display: flex;
}

.bella-sound-wave span {
  display: block;
  width: 3px;
  height: 4px;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  border-radius: 2px;
  animation: bellaWaveAnim 0.9s ease-in-out infinite;
}

.bella-sound-wave span:nth-child(2) { animation-delay: 0.15s; }
.bella-sound-wave span:nth-child(3) { animation-delay: 0.3s; }
.bella-sound-wave span:nth-child(4) { animation-delay: 0.45s; }

@keyframes bellaWaveAnim {
  0%, 100% { height: 4px; }
  50% { height: 12px; }
}

.bella-avatar.bella-talking {
  animation: bellaTalking 0.45s ease-in-out infinite alternate;
  border-color: #22c55e;
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.45), 0 0 0 4px rgba(34, 197, 94, 0.3);
}

@keyframes bellaTalking {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.03) translateY(-2px); }
}

/* ============ HERO — Empty Placeholder (after removing sample images) ============ */
.hero-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(236, 72, 153, 0.12), rgba(190, 26, 44, 0.15));
  color: #fff;
  z-index: 1;
  gap: 14px;
}
.hero-placeholder-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, #FFD600, #f97316);
  color: #0a1f44;
  box-shadow: 0 8px 24px rgba(255, 214, 0, 0.4);
  animation: heroPlaceholderPulse 2.4s ease-in-out infinite;
}
@keyframes heroPlaceholderPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(255, 214, 0, 0.4); }
  50%      { transform: scale(1.08); box-shadow: 0 12px 32px rgba(249, 115, 22, 0.6); }
}
.hero-placeholder-title {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #FFD600);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-placeholder-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  max-width: 240px;
}
.hero-placeholder-sub strong { color: #FFD600; }

/* ============ HERO — AI Video Carousel ============ */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
  background: #000;
}
.hero-video.active {
  opacity: 1;
  z-index: 2;
}
.hero-video-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.92), rgba(236, 72, 153, 0.92));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero-video-tag i {
  color: #FFD600;
  font-size: 10px;
}

/* ============ HERO — Mixed Media (videos + photos) ============ */
.hero-slide-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
  background: #000;
}
.hero-slide-media.active {
  opacity: 1;
  z-index: 2;
}
.hero-photo {
  /* subtle Ken Burns zoom on active photo */
  transform: scale(1);
  transition: opacity 0.8s ease, transform 6s ease-out;
}
.hero-photo.active {
  transform: scale(1.06);
}
/* Photo tag variant */
.hero-video-tag.photo-tag {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.92), rgba(132, 204, 22, 0.92));
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.5);
}

/* ============ RESTORE CARD — Home page highlight ============ */
.restore-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.restore-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1810 0%, #4a2818 50%, #6b3a1a 100%);
  border: 2px solid rgba(255, 180, 80, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 180, 80, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.restore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 180, 80, 0.35);
  border-color: rgba(255, 215, 100, 0.7);
}
.restore-card-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 180, 80, 0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(190, 26, 44, 0.18), transparent 50%);
  pointer-events: none;
}
.restore-card-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  padding: 40px;
  align-items: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .restore-card-content { grid-template-columns: 1fr; padding: 28px; gap: 24px; }
}
.restore-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FFD600, #f97316);
  color: #2a1810;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(255, 214, 0, 0.4);
}
.restore-card-title {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.restore-card-gold {
  background: linear-gradient(90deg, #FFD600, #f97316, #FFD600);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGold 4s linear infinite;
}
@keyframes shimmerGold {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.restore-card-desc {
  font-size: 15px;
  color: rgba(255, 240, 200, 0.85);
  line-height: 1.55;
  margin-bottom: 16px;
}
.restore-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.restore-tag {
  font-size: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 215, 100, 0.12);
  border: 1px solid rgba(255, 215, 100, 0.25);
  color: #ffd97a;
  font-weight: 600;
}
.restore-card-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.restore-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  background: linear-gradient(90deg, #FFD600, #f97316);
  color: #2a1810;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}
.restore-card-arrow {
  font-size: 24px;
  color: #FFD600;
  transition: transform 0.3s ease;
}
.restore-card:hover .restore-card-arrow {
  transform: translateX(8px);
}

/* Right side — stacked vinyl previews */
.restore-card-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.restore-preview-stack {
  position: relative;
  width: 220px;
  height: 220px;
}
.restore-prev {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  border: 3px solid rgba(255, 215, 100, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}
.restore-prev-1 { top: 0;    left: 0;   transform: rotate(-8deg); z-index: 1; }
.restore-prev-2 { top: 30px; left: 30px; transform: rotate(2deg);  z-index: 2; }
.restore-prev-3 { top: 60px; left: 60px; transform: rotate(10deg); z-index: 3; }
.restore-card:hover .restore-prev-1 { transform: rotate(-14deg) translateX(-10px); }
.restore-card:hover .restore-prev-3 { transform: rotate(16deg) translateX(10px); }

/* ============ RESTORE PAGE — /restore route ============ */
.restore-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 214, 0, 0.18), rgba(249, 115, 22, 0.18));
  border: 1px solid rgba(255, 214, 0, 0.4);
  color: #FFD600;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.restore-gold-text {
  background: linear-gradient(90deg, #FFD600, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.restore-step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 16px;
}
.restore-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD600, #f97316);
  color: #2a1810;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}
.restore-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.restore-presets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .restore-presets { grid-template-columns: 1fr; }
}
.restore-preset {
  padding: 22px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.restore-preset:hover {
  background: rgba(255, 215, 100, 0.08);
  border-color: rgba(255, 215, 100, 0.4);
  transform: translateY(-2px);
}
.restore-preset.active {
  background: linear-gradient(135deg, rgba(255, 215, 100, 0.2), rgba(249, 115, 22, 0.2));
  border-color: #FFD600;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}
.restore-preset-icon { font-size: 32px; margin-bottom: 8px; }
.restore-preset-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.restore-preset-sub { font-size: 12px; color: rgba(255, 255, 255, 0.55); }

.restore-upload-zone {
  position: relative;
  min-height: 240px;
  border: 2px dashed rgba(255, 215, 100, 0.4);
  border-radius: 16px;
  background: rgba(255, 215, 100, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.25s ease;
}
.restore-upload-zone:hover {
  background: rgba(255, 215, 100, 0.08);
  border-color: #FFD600;
}
.restore-upload-empty {
  text-align: center;
  padding: 24px;
}
.restore-upload-icon {
  font-size: 48px;
  color: #FFD600;
  margin-bottom: 12px;
}
.restore-upload-text {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.restore-upload-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.restore-upload-preview {
  display: none;
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
}
.restore-upload-preview.show { display: block; }

.restore-generate-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.restore-generate-btn {
  flex: 1;
  min-width: 240px;
  padding: 18px 28px;
  border-radius: 14px;
  background: linear-gradient(90deg, #FFD600, #f97316, #be1a2c);
  background-size: 200% auto;
  border: none;
  color: #2a1810;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
  transition: all 0.3s ease;
}
.restore-generate-btn:hover:not(:disabled) {
  background-position: 100% 50%;
  transform: scale(1.02);
}
.restore-generate-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: grayscale(0.5);
}
.restore-cost {
  font-size: 14px;
  color: rgba(255, 215, 100, 0.85);
  font-weight: 600;
  white-space: nowrap;
}

.restore-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px;
  margin-top: 20px;
  border-radius: 14px;
  background: rgba(255, 215, 100, 0.06);
  border: 1px solid rgba(255, 215, 100, 0.25);
  color: #FFD600;
  font-weight: 600;
}

.restore-result {
  margin-top: 28px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.restore-result-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 20px;
}
.restore-result-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 640px) { .restore-result-compare { grid-template-columns: 1fr; } }
.restore-result-side { position: relative; }
.restore-result-side img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.restore-result-label {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}
.restore-result-label-new {
  background: linear-gradient(90deg, #22c55e, #84cc16);
  color: #052e16;
}
.restore-result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.restore-action-btn {
  flex: 1;
  min-width: 130px;
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.restore-action-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 215, 100, 0.4);
}
.restore-action-share {
  background: linear-gradient(90deg, #FFD600, #f97316);
  color: #2a1810;
  border-color: transparent;
}
.restore-action-share:hover { transform: scale(1.03); }

/* ============================================ */
/* === N10TV STUDIO — HOLLYWOOD LUXURY THEME === */
/* ============================================ */

.en-bg {
  background: #050505;
  color: #f5e9c8;
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  position: relative;
  overflow-x: hidden;
}

/* Cinematic letterbox bars */
.cinema-bar {
  position: fixed;
  left: 0; right: 0;
  height: 0;
  background: #000;
  z-index: 100;
  pointer-events: none;
  transition: height 1.2s ease;
}
.cinema-bar-top { top: 0; }
.cinema-bar-bottom { bottom: 0; }

/* Film grain overlay */
.film-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.04;
  background-image:
    radial-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
  animation: filmGrain 0.4s steps(5) infinite;
}
@keyframes filmGrain {
  0% { transform: translate(0,0); }
  20% { transform: translate(-1px,1px); }
  40% { transform: translate(1px,-1px); }
  60% { transform: translate(-1px,-1px); }
  80% { transform: translate(1px,1px); }
  100% { transform: translate(0,0); }
}

/* Spotlight follow cursor */
.spotlight {
  position: fixed;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* === NAV === */
.en-nav {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.en-logo { text-decoration: none; align-items: center; }
.en-logo-star {
  font-size: 22px;
  color: #FFD700;
  text-shadow: 0 0 18px rgba(255,215,0,0.7);
  animation: starTwinkle 2.4s ease-in-out infinite;
}
@keyframes starTwinkle {
  0%,100% { opacity: 1; transform: scale(1) rotate(0); }
  50% { opacity: 0.6; transform: scale(1.15) rotate(72deg); }
}
.en-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #FFD700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.en-logo-tv { font-style: italic; }
.en-logo-studio {
  font-size: 9px;
  letter-spacing: 0.4em;
  color: #D4AF37;
  border-top: 1px solid #D4AF37;
  border-bottom: 1px solid #D4AF37;
  padding: 2px 6px;
  margin-left: 4px;
  font-weight: 600;
}

.en-nav-link {
  color: #c9b67a;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  text-transform: uppercase;
  font-size: 12px;
}
.en-nav-link:hover { color: #FFD700; }

/* Lang switch — gold pill */
.en-lang-switch, .vi-lang-switch {
  display: inline-flex;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.vi-lang-switch {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.35);
}
.en-lang-opt, .vi-lang-opt {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #c9b67a;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.vi-lang-opt { color: #c9b6f4; }
.en-lang-opt.active {
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #000;
}
.vi-lang-opt.active {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #fff;
}
.en-lang-opt span, .vi-lang-opt span { font-size: 13px; }

.en-btn-ghost {
  color: #c9b67a;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 999px;
  transition: all 0.3s;
}
.en-btn-ghost:hover { color: #FFD700; border-color: #FFD700; }

.en-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(255,215,0,0.35);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.en-btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transition: left 0.6s;
}
.en-btn-primary:hover::before { left: 100%; }
.en-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,215,0,0.55);
}

/* === HERO === */
.en-hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(200,16,46,0.06) 0%, transparent 60%),
    #050505;
}
.en-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 40px, rgba(212,175,55,0.02) 40px, rgba(212,175,55,0.02) 41px);
  pointer-events: none;
}

.en-now-showing {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 10px 18px;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 4px;
  background: rgba(255,215,0,0.04);
  margin-bottom: 24px;
}
.en-star-rating {
  color: #FFD700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-shadow: 0 0 8px rgba(255,215,0,0.6);
}
.en-now-text {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: #D4AF37;
  font-weight: 700;
}

.en-headline {
  font-family: 'Playfair Display', serif;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  line-height: 1;
}
.en-headline-line1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: #f5e9c8;
  letter-spacing: -0.02em;
}
.en-headline-line2 {
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%, #C8102E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  text-shadow: 0 0 60px rgba(255,215,0,0.3);
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0%,100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}
.en-headline-line3 {
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: #D4AF37;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.en-subheadline {
  font-size: 17px;
  color: #c9b67a;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
}
.en-subheadline strong { color: #FFD700; font-weight: 700; }

.en-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.en-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  color: #000;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 32px rgba(255,215,0,0.4);
  transition: all 0.3s;
  text-transform: uppercase;
}
.en-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(255,215,0,0.6);
}
.en-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: transparent;
  color: #FFD700;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 999px;
  transition: all 0.3s;
  text-transform: uppercase;
}
.en-cta-secondary:hover {
  background: rgba(255,215,0,0.08);
  border-color: #FFD700;
}

.en-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}
.en-avatars { display: flex; }
.en-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border: 2px solid #D4AF37;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-left: -10px;
}
.en-avatar:first-child { margin-left: 0; }
.en-proof-stars { color: #FFD700; font-size: 13px; letter-spacing: 0.1em; }
.en-proof-stars span { color: #f5e9c8; margin-left: 6px; font-weight: 600; }
.en-proof-count { color: #c9b67a; font-size: 12px; margin-top: 2px; }
.en-proof-count strong { color: #FFD700; }

/* === Preview frame === */
.en-preview-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.en-preview-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  background: #000;
  border-radius: 12px;
  border: 2px solid rgba(212,175,55,0.6);
  box-shadow:
    0 0 60px rgba(255,215,0,0.2),
    inset 0 0 40px rgba(0,0,0,0.8);
  overflow: hidden;
}

/* Film reel decorations */
.en-reel {
  position: absolute;
  font-size: 8px;
  color: #D4AF37;
  letter-spacing: 4px;
  z-index: 2;
}
.en-reel-tl { top: 8px; left: 12px; }
.en-reel-tr { top: 8px; right: 12px; }
.en-reel-bl { bottom: 8px; left: 12px; }
.en-reel-br { bottom: 8px; right: 12px; }

.en-now-playing {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: rgba(200,16,46,0.9);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 5px 12px;
  border-radius: 4px;
}
.en-now-playing i {
  font-size: 7px;
  color: #fff;
  animation: pulse 1.5s infinite;
  margin-right: 4px;
}

.en-video-screen {
  position: absolute;
  inset: 30px 20px 80px 20px;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.en-slide-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.en-slide-video.active { opacity: 1; }

.en-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
  text-align: center;
  z-index: 3;
}
.en-caption-genre {
  color: #FFD700;
  font-size: 9px;
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-bottom: 4px;
}
.en-caption-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-style: italic;
}
.en-caption-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #c9b67a;
  margin-top: 3px;
}

.en-slide-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}
.en-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(212,175,55,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.en-dot.active {
  background: #FFD700;
  width: 18px;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(255,215,0,0.8);
}

.en-award-badge {
  position: absolute;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
  animation: float 3s ease-in-out infinite;
}
.en-award-1 { top: 10%; left: -15px; transform: rotate(-8deg); }
.en-award-2 { bottom: 15%; right: -15px; transform: rotate(6deg); animation-delay: 1.5s; }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-8px) rotate(-8deg); }
}
.en-award-2 {
  animation-name: float2;
}
@keyframes float2 {
  0%,100% { transform: translateY(0) rotate(6deg); }
  50% { transform: translateY(-8px) rotate(6deg); }
}

/* === Section header === */
.en-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.en-section-tag {
  display: inline-block;
  color: #D4AF37;
  font-size: 11px;
  letter-spacing: 0.4em;
  font-weight: 700;
  margin-bottom: 16px;
}
.en-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #f5e9c8;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.en-section-sub {
  color: #c9b67a;
  font-size: 16px;
  font-style: italic;
}

/* === Services === */
.en-services {
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,0.04) 0%, transparent 70%),
    #080808;
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.en-service-card {
  background: linear-gradient(135deg, rgba(20,20,20,0.9), rgba(8,8,8,0.95));
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
}
.en-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.en-service-card:hover {
  transform: translateY(-6px);
  border-color: #FFD700;
  box-shadow: 0 16px 48px rgba(255,215,0,0.2);
}
.en-service-card:hover::before { opacity: 1; }

.en-service-featured {
  background: linear-gradient(135deg, rgba(40,30,10,0.95), rgba(15,10,5,0.95));
  border-color: #D4AF37;
}
.en-featured-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 999px;
}

.en-service-icon {
  font-size: 44px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(255,215,0,0.3));
}
.en-service-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: #FFD700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.en-service-tagline {
  font-style: italic;
  color: #c9b67a;
  font-size: 13px;
  margin-bottom: 14px;
}
.en-service-desc {
  color: #aaa;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.en-service-price {
  color: #c9b67a;
  font-size: 13px;
  margin-bottom: 14px;
}
.en-service-price strong {
  color: #FFD700;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
}
.en-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFD700;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.3s;
}
.en-service-cta:hover {
  border-bottom-color: #FFD700;
  gap: 12px;
}

/* === Pricing tickets === */
.en-pricing {
  background:
    radial-gradient(ellipse at top, rgba(200,16,46,0.05) 0%, transparent 60%),
    #050505;
}
.en-ticket {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all 0.4s;
}
.en-ticket:hover {
  transform: translateY(-8px);
  border-color: #FFD700;
  box-shadow: 0 20px 60px rgba(255,215,0,0.25);
}
.en-ticket-popular {
  background: linear-gradient(180deg, #2a1f0a 0%, #0f0a02 100%);
  border-color: #FFD700;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(255,215,0,0.3);
}
.en-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.en-ticket-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #D4AF37;
  font-weight: 700;
  margin-bottom: 16px;
}
.en-ticket-price {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: #FFD700;
  line-height: 1;
  margin-bottom: 6px;
}
.en-ticket-price span {
  font-size: 28px;
  vertical-align: top;
}
.en-ticket-period {
  font-size: 12px;
  color: #c9b67a;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.en-ticket-features {
  text-align: left;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.en-ticket-features li {
  color: #c9b67a;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.en-ticket-features i {
  color: #FFD700;
  font-size: 11px;
}
.en-ticket-btn {
  display: block;
  width: 100%;
  padding: 13px;
  background: transparent;
  color: #FFD700;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid #D4AF37;
  border-radius: 999px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.en-ticket-btn:hover {
  background: #FFD700;
  color: #000;
}
.en-ticket-btn-gold {
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #000;
  border-color: #FFD700;
}
.en-ticket-btn-gold:hover {
  background: linear-gradient(135deg, #FFE55C, #FFD700);
  transform: scale(1.02);
}

/* === Footer === */
.en-footer {
  background: #000;
  border-top: 1px solid rgba(212,175,55,0.2);
  position: relative;
}
.en-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
}
.en-footer-rating {
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  margin-bottom: 32px;
}
.en-footer-rating .en-star-rating {
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
}
.en-footer-rating-text {
  color: #c9b67a;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.en-footer-rating-text strong {
  color: #FFD700;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}
.en-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .en-footer-grid { grid-template-columns: 1fr 1fr; }
}
.en-footer-tagline {
  color: #c9b67a;
  font-style: italic;
  font-size: 13px;
  max-width: 300px;
}
.en-footer-h4 {
  color: #FFD700;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.en-footer-grid a {
  display: block;
  color: #aaa;
  font-size: 13px;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.3s;
}
.en-footer-grid a:hover { color: #FFD700; }
.en-footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(212,175,55,0.15);
  color: #888;
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  .en-headline-line2 { font-size: 60px; }
  .en-cta-row { flex-direction: column; }
  .en-cta-primary, .en-cta-secondary { width: 100%; justify-content: center; }
  .en-ticket-popular { transform: scale(1); }
}

/* === N10TV Studio — The Voice page === */
.en-voice-hero {
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(200,16,46,0.06) 0%, transparent 60%),
    #050505;
  padding-bottom: 20px;
}
.en-voice-studio {
  background: #080808;
  border-top: 1px solid rgba(212,175,55,0.15);
}

.en-voice-panel {
  background: linear-gradient(180deg, rgba(20,20,20,0.95) 0%, rgba(8,8,8,0.95) 100%);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.en-voice-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.en-voice-panel-header {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.en-voice-step {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.en-voice-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.en-voice-panel-title i { color: #D4AF37; }
.en-voice-panel-sub {
  color: #c9b67a;
  font-size: 13px;
  font-style: italic;
}

/* Upload zone */
.en-voice-upload {
  border: 2px dashed rgba(212,175,55,0.4);
  border-radius: 12px;
  padding: 36px 20px;
  text-align: center;
  background: rgba(255,215,0,0.02);
  transition: all 0.3s;
  cursor: pointer;
}
.en-voice-upload:hover, .en-voice-upload.dragover {
  border-color: #FFD700;
  background: rgba(255,215,0,0.06);
}
.en-voice-upload-icon {
  font-size: 48px;
  color: #D4AF37;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(255,215,0,0.3));
}
.en-voice-upload-title {
  color: #f5e9c8;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.en-voice-upload-hint {
  color: #888;
  font-size: 12px;
  margin-bottom: 16px;
}
.en-voice-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.2s;
}
.en-voice-upload-btn:hover { transform: translateY(-2px); }

/* Preview */
.en-voice-preview {
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.en-voice-preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.en-voice-preview-icon {
  font-size: 22px;
  color: #FFD700;
}
.en-voice-preview-name {
  color: #f5e9c8;
  font-weight: 600;
  font-size: 13px;
  word-break: break-all;
}
.en-voice-preview-meta {
  color: #888;
  font-size: 11px;
  margin-top: 2px;
}
.en-voice-preview-remove {
  background: rgba(200,16,46,0.15);
  color: #ff6b6b;
  border: 1px solid rgba(200,16,46,0.3);
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s;
}
.en-voice-preview-remove:hover { background: rgba(200,16,46,0.3); }
.en-voice-preview-audio {
  width: 100%;
  height: 36px;
  border-radius: 8px;
}

/* Form */
.en-voice-form { margin-top: 16px; }
.en-voice-label {
  display: block;
  color: #D4AF37;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 14px 0 6px;
}
.en-voice-optional {
  color: #888;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  font-style: italic;
}
.en-voice-counter {
  float: right;
  color: #888;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 10px;
  font-style: italic;
}
.en-voice-input, .en-voice-textarea {
  width: 100%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(212,175,55,0.25);
  color: #f5e9c8;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border 0.3s;
  font-family: inherit;
}
.en-voice-input:focus, .en-voice-textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(255,215,0,0.15);
}
.en-voice-textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}

/* Tier selector */
.en-voice-tier-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}
.en-voice-tier { cursor: pointer; }
.en-voice-tier input { display: none; }
.en-voice-tier-card {
  border: 2px solid rgba(212,175,55,0.25);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  background: rgba(0,0,0,0.4);
  transition: all 0.3s;
}
.en-voice-tier input:checked + .en-voice-tier-card {
  border-color: #FFD700;
  background: rgba(255,215,0,0.08);
  box-shadow: 0 0 20px rgba(255,215,0,0.2);
}
.en-voice-tier-name {
  font-size: 12px;
  font-weight: 700;
  color: #f5e9c8;
  margin-bottom: 6px;
}
.en-voice-tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: #FFD700;
  line-height: 1;
}
.en-voice-tier-desc {
  font-size: 10px;
  color: #c9b67a;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.en-voice-tier-gold {
  background: linear-gradient(135deg, rgba(40,30,10,0.6), rgba(15,10,5,0.6));
  border-color: rgba(212,175,55,0.4);
}

/* Buttons */
.en-voice-clone-btn, .en-voice-generate-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #000;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 16px;
  box-shadow: 0 6px 24px rgba(255,215,0,0.35);
  transition: all 0.3s;
}
.en-voice-clone-btn:hover, .en-voice-generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,215,0,0.5);
}
.en-voice-clone-btn:disabled, .en-voice-generate-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.en-voice-tips {
  background: rgba(255,215,0,0.04);
  border-left: 3px solid #FFD700;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 12px;
  color: #c9b67a;
  margin-top: 14px;
}
.en-voice-tips strong { color: #FFD700; display: block; margin-bottom: 6px; }
.en-voice-tips ul { list-style: none; padding: 0; }
.en-voice-tips li {
  padding: 2px 0;
  padding-left: 16px;
  position: relative;
}
.en-voice-tips li::before {
  content: '★';
  color: #FFD700;
  position: absolute;
  left: 0;
}

/* Sample chips */
.en-voice-samples { margin: 14px 0 10px; }
.en-voice-samples-title {
  font-size: 11px;
  color: #c9b67a;
  margin-bottom: 8px;
}
.en-voice-sample-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.en-voice-chip {
  background: rgba(255,215,0,0.06);
  border: 1px solid rgba(212,175,55,0.3);
  color: #f5e9c8;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s;
}
.en-voice-chip:hover {
  background: rgba(255,215,0,0.15);
  border-color: #FFD700;
  color: #FFD700;
}

/* Cost display */
.en-voice-cost {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 14px;
  font-size: 12px;
  color: #c9b67a;
}
.en-voice-cost strong {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #FFD700;
  font-weight: 900;
}
.en-voice-cost-meta {
  color: #888;
  font-size: 11px;
  font-style: italic;
}

/* Result */
.en-voice-result {
  margin-top: 18px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(40,30,10,0.6), rgba(15,10,5,0.6));
  border: 1px solid #FFD700;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(255,215,0,0.2);
}
.en-voice-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.en-voice-result-tag {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 4px;
}
.en-voice-result-time {
  font-size: 11px;
  color: #c9b67a;
  font-style: italic;
}
.en-voice-result-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.en-voice-result-btn {
  flex: 1;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  color: #FFD700;
  font-size: 12px;
  font-weight: 700;
  padding: 9px;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.en-voice-result-btn:hover {
  background: #FFD700;
  color: #000;
}

/* Trust strip */
.en-voice-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding: 20px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 12px;
}
@media (max-width: 768px) {
  .en-voice-trust { grid-template-columns: 1fr 1fr; }
}
.en-voice-trust-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.en-voice-trust-item i {
  font-size: 22px;
  color: #FFD700;
  width: 32px;
  text-align: center;
}
.en-voice-trust-item strong {
  display: block;
  color: #f5e9c8;
  font-size: 13px;
  font-weight: 700;
}
.en-voice-trust-item span {
  display: block;
  color: #888;
  font-size: 11px;
}

/* Use cases */
.en-voice-cases {
  background: #050505;
  border-top: 1px solid rgba(212,175,55,0.1);
}
.en-voice-case {
  background: linear-gradient(135deg, rgba(20,20,20,0.9), rgba(8,8,8,0.95));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
}
.en-voice-case:hover {
  transform: translateY(-4px);
  border-color: #FFD700;
  box-shadow: 0 12px 32px rgba(255,215,0,0.15);
}
.en-voice-case-icon {
  font-size: 36px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 10px rgba(255,215,0,0.3));
}
.en-voice-case h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 8px;
}
.en-voice-case p {
  color: #aaa;
  font-size: 12.5px;
  line-height: 1.5;
}
