:root {
  /* Romantic Light Theme v3 */
  --primary: #ff4081;
  --primary-dark: #c51162;
  --primary-light: #ff80ab;
  --secondary: #aa00ff;
  --accent: #ff80ab;

  /* Gradient */
  --gradient-primary: linear-gradient(135deg, #ff4081 0%, #ff80ab 100%);
  --gradient-light: linear-gradient(135deg, rgba(255, 64, 129, 0.1) 0%, rgba(170, 0, 255, 0.05) 100%);
  --gradient-glow: radial-gradient(circle at center, rgba(255, 64, 129, 0.15) 0%, transparent 70%);

  /* Light Theme Backgrounds */
  --bg-dark: #fff0f5;
  /* Lavender Blush */
  --bg-darker: #ffe4e1;
  /* Misty Rose */
  --bg-card: #ffffff;
  --bg-card-hover: #fff8fa;
  --bg-elevated: #ffffff;

  /* Text */
  --text-primary: #2d3436;
  --text-secondary: #636e72;
  --text-muted: #b2bec3;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(255, 64, 129, 0.08);
  --shadow-md: 0 8px 24px rgba(255, 64, 129, 0.12);
  --shadow-lg: 0 12px 48px rgba(255, 64, 129, 0.15);
  --shadow-glow: 0 0 30px rgba(255, 64, 129, 0.25);

  /* Borders */
  --border-light: rgba(255, 64, 129, 0.15);
  --border-primary: rgba(255, 64, 129, 0.5);

  /* Status */
  --success: #4caf50;
  --warning: #ff9800;
  --error: #f44336;

  /* Social */
  --telegram: #0088cc;
  --google: #4285f4;
  --vk: #4a76a8;
  --whatsapp: #25d366;

  /* Spacing */
  --section-padding: 100px;
  --container-max: 1200px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #ffeef5 0%, #fff0f5 50%, #ffe8f0 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Animated gradient blobs */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 105, 180, 0.35) 0%, transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(255, 182, 193, 0.4) 0%, transparent 30%),
    radial-gradient(circle at 50% 60%, rgba(255, 64, 129, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(255, 192, 203, 0.35) 0%, transparent 35%),
    radial-gradient(circle at 90% 70%, rgba(255, 105, 180, 0.25) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
  animation: moveGradient 20s ease-in-out infinite;
}

@keyframes moveGradient {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(2%, 1%) scale(1.02);
  }

  50% {
    transform: translate(-1%, 2%) scale(1);
  }

  75% {
    transform: translate(1%, -1%) scale(1.01);
  }
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ff4081 0%, #aa00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  top: 1px;
}

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

.nav-menu {
  display: flex;
  gap: 8px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.nav-link.active {
  color: var(--text-primary);
  background: var(--gradient-primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: flex;
  background: var(--bg-card);
  border-radius: var(--radius-full);
  padding: 4px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--primary);
  color: white;
}

.credits-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
}

.credits-icon {
  font-size: 16px;
}

.credits-count {
  color: var(--primary);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* Hero Buttons Layout */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  max-width: 320px;
}

.hero-buttons .btn {
  width: 100%;
  justify-content: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(233, 30, 99, 0.5);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-telegram {
  background: var(--telegram);
  color: white;
}

.btn-google {
  background: var(--google);
  color: white;
}

.btn-vk {
  background: var(--vk);
  color: white;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn-arrow {
  transition: transform 0.3s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

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

.hero-content {
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-light);
  border: 1px solid var(--border-primary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  text-align: center;
}

.gradient-text {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

/* Header */
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 10px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--logo-text);
  letter-spacing: -0.5px;
  white-space: nowrap;
  /* Prevent wrapping */
}

/* Telegram Button - Blue Telegram Style */
.nav-telegram-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0088cc 0%, #00aaff 100%);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  padding: 0;
  margin-right: 12px;
  box-shadow: 0 2px 8px rgba(0, 136, 204, 0.3);
  flex-shrink: 0;
}

.nav-telegram-btn:hover {
  background: linear-gradient(135deg, #0077b5 0%, #0099e6 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 136, 204, 0.4);
}

.nav-telegram-btn:active {
  transform: translateY(0);
}

.nav-telegram-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  gap: 5px;
  background: rgba(255, 255, 255, 0.5);
  padding: 4px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.play-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: 50%;
  font-size: 10px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* Hero Social Proof Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 64, 129, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--primary), #ff6b9d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}

/* Hero Visual (Gallery) */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 460px;
  transform: rotate(-5deg);
  /* Slight playful tilt */
  transition: transform 0.3s ease;
}

.hero-gallery:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-gallery-img {
  width: 100%;
  height: 160px;
  /* Fixed height for uniformity */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background: #fff;
  border: 4px solid white;
  transition: transform 0.3s ease;
}

.hero-gallery-img:nth-child(1) {
  transform: translateY(10px);
}

.hero-gallery-img:nth-child(2) {
  transform: translateY(-10px);
}

.hero-gallery-img:nth-child(3) {
  transform: translateY(5px);
}

.hero-gallery-img:nth-child(4) {
  transform: translateY(-5px);
}

/* Floating animation for the whole gallery */
@keyframes float-gallery {
  0% {
    transform: rotate(-5deg) translateY(0px);
  }

  50% {
    transform: rotate(-5deg) translateY(-10px);
  }

  100% {
    transform: rotate(-5deg) translateY(0px);
  }
}

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

/* New Hero Main Image Style */
.hero-main-image {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(255, 64, 129, 0.2), 0 8px 24px rgba(0, 0, 0, 0.1);
  animation: float-hero 5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.hero-main-image:hover {
  transform: scale(1.02);
}

@keyframes float-hero {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Remove old stack styles if necessary or override */
.photo-stack {
  display: none;
}

/* Section Titles */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* How it Works */
.how-it-works {
  padding: var(--section-padding) 0;
  background: var(--bg-darker);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  max-width: 280px;
  transition: all 0.3s;
  position: relative;
}

.step-card:hover {
  border-color: var(--border-primary);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 64, 129, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), #ff6b9d);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(255, 64, 129, 0.3);
}

.step-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.step-icon-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

/* Showcase */
.showcase {
  padding: var(--section-padding) 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.showcase-item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  transition: transform 0.3s;
  position: relative;
}

.showcase-item:hover {
  transform: scale(1.03);
}

.showcase-item img,
.showcase-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-item .play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.showcase-item:hover .play-overlay {
  opacity: 1;
}

/* Generator Section */
.generator {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

/* Progress Steps */
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  transition: all 0.3s;
}

.progress-step.active {
  opacity: 1;
}

.progress-step.completed {
  opacity: 1;
}

.progress-number {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s;
}

.progress-step.active .progress-number {
  background: var(--gradient-primary);
  border-color: var(--primary);
}

.progress-step.completed .progress-number {
  background: var(--success);
  border-color: var(--success);
}

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

.progress-line {
  width: 60px;
  height: 2px;
  background: var(--border-light);
}

/* Generator Steps */
.generator-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.generator-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Upload Modes */
.upload-mode-switcher {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.mode-btn {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  /* Bolder border */
  color: var(--text-secondary);
  padding: 12px 24px;
  /* Bigger touch area */
  border-radius: 16px;
  /* modern rounded */
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mode-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.mode-btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
  /* Glow effect */
}

/* Upload Section */
.upload-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.upload-card {
  background: var(--bg-card);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 280px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.upload-card:hover {
  border-color: var(--primary);
  background: rgba(233, 30, 99, 0.05);
}

.upload-card.has-image {
  border-style: solid;
  border-color: var(--success);
}

.upload-card.drag-over {
  border-color: var(--primary);
  background: rgba(233, 30, 99, 0.1);
  transform: scale(1.02);
}

.upload-preview {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}

.upload-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.upload-icon {
  font-size: 56px;
  opacity: 0.5;
}

.upload-title {
  font-weight: 600;
  color: var(--text-secondary);
}

.upload-action {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.upload-hint {
  font-size: 13px;
  color: var(--text-muted);
}

.upload-plus {
  font-size: 48px;
  color: var(--text-muted);
  font-weight: 300;
}

.btn-continue {
  display: block;
  margin: 0 auto;
}

.btn-continue.hidden {
  display: none;
}

/* Scenes */
.scenes-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.scene-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.scene-tab:hover,
.scene-tab.active {
  border-color: var(--primary);
  color: var(--text-primary);
  background: rgba(233, 30, 99, 0.1);
}

.scenes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.scene-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  transition: all 0.3s;
}

.scene-btn:hover {
  border-color: var(--border-primary);
  background: rgba(233, 30, 99, 0.05);
}

.scene-btn.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.custom-scene-box {
  margin-bottom: 32px;
}

.custom-scene-box input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 16px;
  transition: border-color 0.3s;
}

.custom-scene-box input:focus {
  outline: none;
  border-color: var(--primary);
}

.custom-scene-box input::placeholder {
  color: var(--text-muted);
}

.btn-generate {
  display: block;
  margin: 0 auto;
}

/* Result Section */
.result-container {
  text-align: center;
  margin-bottom: 32px;
}

.result-media {
  max-width: 500px;
  margin: 0 auto 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: none;
}

.result-media.show {
  display: block;
}

.result-media img,
.result-media video {
  width: 100%;
  display: block;
}

.generation-status {
  padding: 20px;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: center;
}

.generation-status.loading {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(156, 39, 176, 0.15) 100%);
  color: #f48fb1;
  border: 1px solid rgba(233, 30, 99, 0.3);
}

.generation-status.success {
  background: rgba(76, 175, 80, 0.1);
  color: var(--success);
}

.generation-status.error {
  background: rgba(244, 67, 54, 0.1);
  color: var(--error);
}

.result-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  display: none;
}

.result-actions.show {
  display: flex;
}

/* Pricing */
.pricing {
  padding: var(--section-padding) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  align-items: stretch;
}

@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-primary);
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.pricing-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.pricing-icon-img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.pricing-card.popular .pricing-icon {
  background: var(--gradient-primary);
}

.pricing-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 500;
}

.pricing-credits {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-features li {
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
}

.pricing-card .btn {
  width: 100%;
}

/* Referral Banner */
.referral-banner {
  background: var(--gradient-light);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.referral-icon {
  font-size: 56px;
}

.referral-content {
  flex: 1;
}

.referral-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.referral-content p {
  color: var(--text-secondary);
}

/* Payment Methods */
.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.payment-methods>span {
  color: var(--text-muted);
  font-size: 14px;
}

.payment-icons {
  display: flex;
  gap: 12px;
}

.payment-badge {
  background: var(--bg-elevated);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-secondary);
}

/* FAQ */
.faq {
  padding: var(--section-padding) 0;
  background: var(--bg-darker);
}

.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.faq-tab:hover,
.faq-tab.active {
  border-color: var(--primary);
  color: var(--text-primary);
  background: rgba(233, 30, 99, 0.1);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto 60px;
}

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

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
}

.faq-icon {
  font-size: 20px;
}

.faq-arrow {
  margin-left: auto;
  transition: transform 0.3s;
  color: var(--text-muted);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Support Box */
.support-box {
  background: var(--gradient-light);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.support-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.support-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.support-box p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.support-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--bg-darker);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-light);
}

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

.footer-brand p {
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 300px;
}

.footer-email {
  color: var(--primary);
  font-weight: 500;
  margin-top: 8px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-telegram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #0088cc, #00aaff);
  color: white !important;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s;
}

.footer-telegram-link:hover {
  background: linear-gradient(135deg, #0077b5, #0099e6);
  transform: translateY(-2px);
  color: white !important;
}

.footer-telegram-link svg {
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.social-link:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-made {
  color: var(--primary);
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  animation: modalIn 0.3s ease;
}

.modal-lg {
  max-width: 600px;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.modal-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-content>p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.auth-buttons .btn {
  width: 100%;
}

#telegram-login-container {
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

/* Referral Modal */
.referral-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.ref-stat {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.ref-stat.highlight {
  background: var(--gradient-light);
  border-color: var(--border-primary);
}

.ref-stat-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.ref-stat-value {
  font-size: 32px;
  font-weight: 700;
  display: block;
  color: var(--text-primary);
}

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

.referral-link-box {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  text-align: left;
}

.referral-link-box label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.referral-link-input {
  display: flex;
  gap: 12px;
}

.referral-link-input input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-buttons>span {
  color: var(--text-muted);
  font-size: 14px;
}

/* Loading */
.loading {
  text-align: center;
  padding: 60px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-visual {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 12px auto 0;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 16px;
    flex-direction: column;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .credits-badge {
    display: none;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step-connector {
    transform: rotate(90deg);
  }

  .upload-section {
    flex-direction: column;
  }

  .upload-plus {
    transform: rotate(90deg);
  }

  .referral-banner {
    flex-direction: column;
    text-align: center;
  }

  .referral-stats {
    grid-template-columns: 1fr;
  }

  .result-actions {
    flex-direction: column;
  }

  .result-actions .btn {
    width: 100%;
  }

  .support-buttons {
    flex-direction: column;
  }
}

/* SVG Icons - Replace Emoji */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.icon-lg {
  width: 48px;
  height: 48px;
}

.icon-camera {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f48fb1' stroke-width='2'%3E%3Cpath d='M23 19a2 2 0 01-2 2H3a2 2 0 01-2-2V8a2 2 0 012-2h4l2-3h6l2 3h4a2 2 0 012 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-palette {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f48fb1' stroke-width='2'%3E%3Ccircle cx='13.5' cy='6.5' r='1.5'/%3E%3Ccircle cx='17.5' cy='10.5' r='1.5'/%3E%3Ccircle cx='8.5' cy='7.5' r='1.5'/%3E%3Ccircle cx='6.5' cy='12.5' r='1.5'/%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10c.9 0 1.8-.1 2.6-.3.6-.1 1-.7.9-1.3-.1-.5-.5-.9-1-1-.3-.1-.5-.3-.7-.6-.4-.5-.4-1.3 0-1.8.5-.5 1.3-.5 1.8 0 .3.3.7.5 1.1.5.8 0 1.5-.7 1.4-1.5 0-.3-.1-.5-.2-.7 0-.1-.1-.2-.1-.4C22 6.5 17.5 2 12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-heart {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e91e63'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-user {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b0b0c0' stroke-width='2'%3E%3Cpath d='M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-image {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b0b0c0' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-video {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f48fb1' stroke-width='2'%3E%3Cpolygon points='23 7 16 12 23 17 23 7'/%3E%3Crect x='1' y='5' width='15' height='14' rx='2' ry='2'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-sparkle {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f48fb1'%3E%3Cpath d='M12 2L9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-gift {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f48fb1' stroke-width='2'%3E%3Cpolyline points='20 12 20 22 4 22 4 12'/%3E%3Crect x='2' y='7' width='20' height='5'/%3E%3Cline x1='12' y1='22' x2='12' y2='7'/%3E%3Cpath d='M12 7H7.5a2.5 2.5 0 010-5C11 2 12 7 12 7z'/%3E%3Cpath d='M12 7h4.5a2.5 2.5 0 000-5C13 2 12 7 12 7z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-download {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-refresh {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='23 4 23 10 17 10'/%3E%3Cpolyline points='1 20 1 14 7 14'/%3E%3Cpath d='M3.51 9a9 9 0 0114.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0020.49 15'/%3E%3C/svg%3E") center/contain no-repeat;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-icon .icon {
  width: 32px;
  height: 32px;
}

/* Scene Selection */
.scenes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.scene-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  /* Softer shadow */
}

.scene-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(255, 64, 129, 0.2);
  /* Pink glow on hover */
}

.scene-card.selected {
  border-color: var(--primary);
  background: linear-gradient(to bottom, rgba(255, 64, 129, 0.05), rgba(255, 255, 255, 1));
  box-shadow: 0 0 0 2px rgba(255, 64, 129, 0.3);
}

.scene-image-wrapper {
  width: 100%;
  height: 160px;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.scene-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.scene-image-wrapper.placeholder {
  background: linear-gradient(135deg, #f0f2f5 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-content {
  color: #cbd5e1;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}

.scene-card:hover .scene-image-wrapper img {
  transform: scale(1.05);
}

.scene-title {
  padding: 15px;
  text-align: center;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.4;
}

/* Hide old buttons */
.scene-btn {
  display: none !important;
}
/* User Scenes */
.scenes-separator {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    margin: 20px 0 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scenes-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-left: 15px;
}

.user-scene-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.1), rgba(255, 107, 157, 0.1));
    border-radius: 12px;
}

.scene-card.user-scene {
    border: 1px solid rgba(255, 64, 129, 0.3);
}

.scene-card.user-scene:hover {
    border-color: #ff4081;
    background: rgba(255, 64, 129, 0.05);
}

/* Credits Badge Update */
.credits-badge {
    display: flex !important; /* Override inline style via class if needed, or JS will handle it */
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Base style hidden, showing by JS */

.credits-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.credits-divider {
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Ghost Button (Logout) */
.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Fix inline SVG alignment */
.icon svg {
    display: block;
    vertical-align: middle;
}
.credits-item .icon {
    display: flex;
    align-items: center;
    color: #ff4081; /* Accent color for icons */
}
