/* ==========================================================================
   VidSnap - Ultra Cyber Dark-Teal Glassmorphism Design System
   ========================================================================== */


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

:root {
  /* Color Palette - Cyber Dark Teal */
  --bg-dark: #050c14;
  --bg-radial: radial-gradient(circle at 50% 0%, #0d293a 0%, #071724 35%, #04090f 100%);
  --surface-glass: rgba(13, 28, 42, 0.75);
  --surface-glass-border: rgba(0, 242, 254, 0.2);
  --surface-glass-hover: rgba(20, 42, 62, 0.85);
  --surface-card: rgba(8, 20, 32, 0.9);

  /* Primary Cyber Accents */
  --accent-cyan: #00f2fe;
  --accent-blue: #4facfe;
  --accent-emerald: #00e676;
  --accent-gradient: linear-gradient(135deg, #00f2fe 0%, #00c6ff 50%, #4facfe 100%);
  --accent-glow: 0 0 30px rgba(0, 242, 254, 0.4);
  --accent-glow-strong: 0 0 50px rgba(0, 242, 254, 0.7);

  /* Text Colors */
  --text-primary: #f2f8fc;
  --text-secondary: #9cb9cc;
  --text-muted: #5e8098;
  --text-inverse: #030a12;

  /* UI Elements */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-dark);
  background-image: var(--bg-radial);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Background Lighting Orbs */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0, 242, 254, 0.16) 0%, rgba(79, 172, 254, 0.08) 45%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(0, 198, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-blue);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Navbar Header */
.navbar {
  padding: 1.1rem 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(5, 12, 20, 0.8);
  border-bottom: 1px solid rgba(0, 242, 254, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--accent-glow);
  color: var(--text-inverse);
  font-size: 1.25rem;
}

.logo span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.4));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  background: var(--surface-glass);
  border: 1px solid var(--surface-glass-border);
  color: var(--text-primary);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(12px);
}

.lang-btn:hover {
  background: var(--surface-glass-hover);
  border-color: var(--accent-cyan);
  box-shadow: var(--accent-glow);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #091a27;
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 160px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 110;
}

.lang-dropdown.show {
  display: flex;
}

.lang-option {
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.lang-option:hover,
.lang-option.active {
  background: rgba(0, 242, 254, 0.15);
  color: var(--accent-cyan);
}

/* PWA Install Button */
.install-btn {
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.35);
  color: var(--accent-cyan);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.install-btn:hover {
  background: var(--accent-gradient);
  color: var(--text-inverse);
  border-color: transparent;
  box-shadow: var(--accent-glow);
}

/* Hero Section */
.hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: var(--radius-pill);
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
}

.hero-badge i {
  color: var(--accent-emerald);
  font-size: 1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  letter-spacing: -1.5px;
  color: #ffffff;
}

.hero-title span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.4));
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 2rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Stats Pill Bar */
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(13, 30, 46, 0.6);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 242, 254, 0.15);
  backdrop-filter: blur(10px);
}

/* Step Indicators Header */
.steps-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--surface-glass);
  border: 1px solid var(--surface-glass-border);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  backdrop-filter: blur(12px);
}

.step-num {
  width: 26px;
  height: 26px;
  background: var(--accent-gradient);
  color: var(--text-inverse);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
}

.step-divider {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Main Downloader Input Box */
.downloader-box {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.search-pill-wrapper {
  background: rgba(7, 18, 30, 0.9);
  border: 2px solid rgba(0, 242, 254, 0.35);
  border-radius: var(--radius-pill);
  padding: 0.6rem 0.6rem 0.6rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), var(--accent-glow);
  transition: var(--transition-normal);
  backdrop-filter: blur(20px);
}

.search-pill-wrapper:focus-within {
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.7), var(--accent-glow-strong);
  transform: translateY(-2px);
}

.search-icon {
  color: var(--accent-cyan);
  font-size: 1.35rem;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 400;
}

.search-input::placeholder {
  color: var(--text-muted);
  font-size: 1rem;
}

.clear-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  transition: var(--transition-fast);
}

.clear-btn:hover {
  color: var(--accent-cyan);
}

.paste-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.paste-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(0, 242, 254, 0.4);
}

.download-btn {
  background: var(--accent-gradient);
  color: var(--text-inverse);
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--accent-glow);
  transition: var(--transition-bounce);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.download-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--accent-glow-strong);
}

.download-btn:active {
  transform: scale(0.98);
}

/* Sample URL Chips */
.samples-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.samples-label {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 600;
}

.sample-chip {
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.25);
  color: var(--accent-cyan);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.sample-chip:hover {
  background: var(--accent-cyan);
  color: var(--text-inverse);
  box-shadow: var(--accent-glow);
}

/* Platform Filter Badges Grid - Single Unified Wrap Container */
.platforms-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(12, 28, 42, 0.8);
  border: 1px solid rgba(64, 175, 200, 0.25);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.platform-badge:hover,
.platform-badge.active {
  transform: translateY(-3px);
}

.platform-badge.yt:hover {
  border-color: #ff0000;
  color: #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.platform-badge.ig:hover {
  border-color: #e1306c;
  color: #e1306c;
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
}

.platform-badge.tt:hover {
  border-color: #00f2fe;
  color: #00f2fe;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.platform-badge.tw:hover {
  border-color: #1da1f2;
  color: #1da1f2;
  box-shadow: 0 0 20px rgba(29, 161, 242, 0.3);
}

.platform-badge.fb:hover {
  border-color: #1877f2;
  color: #1877f2;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.3);
}

.platform-badge.pin:hover {
  border-color: #e60023;
  color: #e60023;
  box-shadow: 0 0 20px rgba(230, 0, 35, 0.3);
}

.platform-badge.rd:hover {
  border-color: #ff4500;
  color: #ff4500;
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}

.platform-badge i {
  font-size: 1.15rem;
}

.platform-badge.yt i {
  color: #ff0000;
}

.platform-badge.ig i {
  color: #e1306c;
}

.platform-badge.tt i {
  color: #00f2fe;
}

.platform-badge.tw i {
  color: #1da1f2;
}

.platform-badge.fb i {
  color: #1877f2;
}

.platform-badge.pin i {
  color: #e60023;
}

.platform-badge.rd i {
  color: #ff4500;
}

/* Status & Loading State */
.status-container {
  max-width: 860px;
  margin: 2rem auto 0;
  display: none;
}

.loader-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
}

.spinner {
  width: 54px;
  height: 54px;
  border: 4px solid rgba(0, 242, 254, 0.15);
  border-top: 4px solid var(--accent-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.25rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader-text {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.loader-subtext {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Error Toast Alert */
.error-card {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  margin: 1.5rem auto 0;
  max-width: 860px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  display: none;
}

.error-card i {
  font-size: 1.5rem;
  color: #ef4444;
}

/* Smart Unsupported Platform & Guidance Card */
.smart-error-card {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.12) 0%, rgba(13, 27, 42, 0.95) 100%) !important;
  border: 1px solid rgba(239, 68, 68, 0.35) !important;
  border-radius: var(--radius-lg) !important;
  padding: 1.5rem !important;
  margin: 1.8rem auto 0 !important;
  max-width: 860px !important;
  display: block !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(239, 68, 68, 0.15) !important;
  animation: fadeIn 0.3s ease-out;
}

.error-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.error-card-header .error-icon {
  font-size: 1.75rem;
  color: #ef4444;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.error-title-wrap {
  flex: 1;
}

.error-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fca5a5;
  margin: 0 0 0.35rem 0;
}

.error-desc {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0;
}

.error-supported-section {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.error-supported-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00f2fe;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.error-supported-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.err-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.err-chip:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: rgba(0, 242, 254, 0.4);
  color: #00f2fe;
  transform: translateY(-1px);
}

.error-actions-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.err-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.err-action-btn.primary {
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  color: #071318;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.err-action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.45);
}

.err-action-btn.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.err-action-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* Download Results Card */
.results-container {
  max-width: 880px;
  margin: 2.5rem auto 0;
  display: none;
}

.result-card {
  background: var(--surface-card);
  border: 1px solid rgba(0, 242, 254, 0.35);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), var(--accent-glow);
  backdrop-filter: blur(24px);
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.media-preview-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

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

.duration-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
}

.media-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.media-header {
  margin-bottom: 1rem;
}

.media-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.media-platform-tag {
  background: rgba(0, 242, 254, 0.15);
  color: var(--accent-cyan);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-transform: capitalize;
}

.copy-link-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--surface-glass-border);
  color: var(--text-secondary);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.775rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.copy-link-btn:hover {
  background: rgba(0, 242, 254, 0.15);
  color: var(--accent-cyan);
}

/* Quality Download Grid */
.download-grid-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.85rem;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
  gap: 0.7rem;
}

.quality-option-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--surface-glass-border);
  color: var(--text-primary);
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  text-decoration: none;
  font-family: var(--font-body);
}

.quality-option-btn:hover {
  background: var(--accent-gradient);
  color: var(--text-inverse);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--accent-glow);
}

.quality-label {
  font-weight: 800;
  font-size: 0.95rem;
}

.quality-sub {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* In-App Live Download Progress Indicator Box */
.download-progress-box {
  background: rgba(8, 20, 32, 0.8);
  border: 1px solid rgba(0, 242, 254, 0.4);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  margin-top: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 242, 254, 0.08);
  backdrop-filter: blur(16px);
  animation: fadeInProgress 0.3s ease-out;
}

@keyframes fadeInProgress {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.progress-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.progress-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-primary);
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.progress-percent {
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
}

.progress-bar-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent-gradient);
  border-radius: var(--radius-pill);
  transition: width 0.15s ease-out;
  box-shadow: 0 0 12px var(--accent-cyan);
}

.progress-bar-fill.indeterminate {
  width: 100% !important;
  background: linear-gradient(90deg, rgba(0, 242, 254, 0.2), var(--accent-cyan), rgba(0, 242, 254, 0.2));
  background-size: 200% 100%;
  animation: progressShimmer 1.5s infinite linear;
}

@keyframes progressShimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.progress-stats-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Pre-styled Adsterra Banner Slot Container */
.ad-slot-container {
  max-width: 860px;
  margin: 3rem auto 1rem;
  background: rgba(8, 20, 32, 0.6);
  border: 1px dashed rgba(0, 242, 254, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.ad-placeholder {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ad-placeholder i {
  color: var(--accent-cyan);
}

/* Section Containers */
.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
}

.section-title span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--surface-glass);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: var(--transition-normal);
  backdrop-filter: blur(16px);
}

.feature-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--accent-glow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 242, 254, 0.12);
  border-radius: 16px;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Visual How To Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  position: relative;
}

.how-step-card {
  background: var(--surface-glass);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  text-align: center;
  position: relative;
  backdrop-filter: blur(16px);
}

.how-step-badge {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: rgba(0, 242, 254, 0.2);
}

.how-step-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-gradient);
  color: var(--text-inverse);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0.5rem auto 1.4rem;
  box-shadow: var(--accent-glow);
}

.how-step-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.how-step-card p {
  color: var(--text-secondary);
  font-size: 0.925rem;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-item {
  background: var(--surface-glass);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
  backdrop-filter: blur(14px);
}

.faq-item.active {
  border-color: var(--accent-cyan);
  background: rgba(12, 30, 46, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-question {
  padding: 1.35rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question i {
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.6rem 1.35rem;
  color: var(--text-secondary);
  font-size: 0.975rem;
  display: none;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer & Legal */
.footer {
  background: #03080e;
  border-top: 1px solid rgba(0, 242, 254, 0.15);
  padding: 4.5rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  margin-top: 1.1rem;
  max-width: 340px;
}

.footer-column h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.dmca-notice {
  font-size: 0.775rem;
  max-width: 620px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .result-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .navbar {
    padding: 0.7rem 0;
  }

  .navbar-inner {
    gap: 0.5rem;
  }

  .logo {
    font-size: 1.25rem;
    gap: 0.35rem;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  /* Optimize Header Buttons for Mobile */
  .nav-actions {
    gap: 0.4rem;
  }

  .install-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
  }

  .install-btn i {
    font-size: 0.8rem;
  }

  /* Collapse Language Button into a clean Circle Icon */
  .lang-btn {
    padding: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    justify-content: center;
  }

  .lang-btn #currentLangLabel,
  .lang-btn .fa-chevron-down {
    display: none;
  }

  .lang-btn .fa-globe {
    font-size: 1rem;
    margin: 0;
  }

  .hero {
    padding: 2rem 0 2rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    margin-bottom: 1.2rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    word-break: break-word;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  /* Form Mobile Grid - Bulletproof Layout */
  .search-pill-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.6rem;
    padding: 0.75rem;
    border-radius: 20px;
    align-items: center;
  }

  .search-icon {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0.2rem;
    font-size: 1.1rem;
  }

  .search-input {
    grid-column: 2;
    grid-row: 1;
    font-size: 1rem;
    width: 100%;
    padding: 0.2rem 0;
  }

  .clear-btn {
    grid-column: 3;
    grid-row: 1;
    padding: 0.4rem;
  }

  .paste-btn {
    grid-column: 1 / 2;
    grid-row: 2;
    justify-content: center;
    padding: 0.75rem;
    font-size: 0.9rem;
    border-radius: 14px;
    min-height: 44px;
  }

  .download-btn {
    grid-column: 2 / 4;
    grid-row: 2;
    justify-content: center;
    padding: 0.75rem;
    font-size: 0.95rem;
    border-radius: 14px;
    margin: 0;
    min-height: 44px;
  }

  /* Horizontal Scrollable Platforms Bar */
  .platforms-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin-top: 1.5rem;
  }

  .platforms-bar::-webkit-scrollbar {
    display: none;
  }

  .platform-badge {
    flex-shrink: 0;
    scroll-snap-align: start;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .stats-bar {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
  }

  .stat-item {
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.55rem;
  }

  .steps-indicator {
    display: none;
  }

  .result-card {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .media-title {
    font-size: 1.1rem;
  }

  .media-preview-box {
    width: 100%;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .how-step-card,
  .feature-card {
    padding: 1.5rem;
  }

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

/* ==========================================================================
   YouTube Custom Theme (yt-theme)
   ========================================================================== */
body.yt-theme::before {
  background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.12) 0%, rgba(255, 75, 75, 0.05) 45%, transparent 75%);
}

body.yt-theme .hero-title span {
  background: linear-gradient(135deg, #ff0000 0%, #ff4b4b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.4));
}

body.yt-theme .hero-badge {
  background: rgba(255, 0, 0, 0.08);
  border-color: rgba(255, 0, 0, 0.25);
  color: #ff4b4b;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
}

body.yt-theme .hero-badge i {
  color: #ff0000;
}

body.yt-theme .search-pill-wrapper {
  border-color: rgba(255, 0, 0, 0.35);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.15);
}

body.yt-theme .search-pill-wrapper:focus-within {
  border-color: #ff0000;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 0, 0, 0.3);
}

body.yt-theme .search-icon {
  color: #ff0000;
}

body.yt-theme .download-btn {
  background: linear-gradient(135deg, #ff0000 0%, #ff4b4b 100%);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
}

body.yt-theme .download-btn:hover {
  box-shadow: 0 0 45px rgba(255, 0, 0, 0.6);
}

body.yt-theme .step-num {
  background: linear-gradient(135deg, #ff0000 0%, #ff4b4b 100%);
}

body.yt-theme .stat-item i {
  color: #ff4b4b !important;
}

body.yt-theme .samples-label {
  color: #ff4b4b;
}

body.yt-theme .sample-chip {
  background: rgba(255, 0, 0, 0.08);
  border-color: rgba(255, 0, 0, 0.25);
  color: #ff4b4b;
}

body.yt-theme .sample-chip:hover {
  background: #ff0000;
  color: var(--text-inverse);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

body.yt-theme .how-step-icon {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
}

body.yt-theme .how-step-badge {}

/* ==========================================================================
   Facebook Custom Theme (fb-theme)
   ========================================================================== */
body.fb-theme::before {
  background: radial-gradient(ellipse at center, rgba(24, 119, 242, 0.12) 0%, rgba(56, 142, 255, 0.05) 45%, transparent 75%);
}

body.fb-theme .hero-title span {
  background: linear-gradient(135deg, #1877f2 0%, #388eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(24, 119, 242, 0.4));
}

body.fb-theme .hero-badge {
  background: rgba(24, 119, 242, 0.08);
  border-color: rgba(24, 119, 242, 0.25);
  color: #388eff;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.15);
}

body.fb-theme .hero-badge i {
  color: #1877f2;
}

body.fb-theme .search-pill-wrapper {
  border-color: rgba(24, 119, 242, 0.35);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(24, 119, 242, 0.15);
}

body.fb-theme .search-pill-wrapper:focus-within {
  border-color: #1877f2;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(24, 119, 242, 0.3);
}

body.fb-theme .search-icon {
  color: #1877f2;
}

body.fb-theme .download-btn {
  background: linear-gradient(135deg, #1877f2 0%, #388eff 100%);
  box-shadow: 0 0 25px rgba(24, 119, 242, 0.4);
}

body.fb-theme .download-btn:hover {
  box-shadow: 0 0 45px rgba(24, 119, 242, 0.6);
}

body.fb-theme .step-num {
  background: linear-gradient(135deg, #1877f2 0%, #388eff 100%);
}

body.fb-theme .stat-item i {
  color: #388eff !important;
}

body.fb-theme .samples-label {
  color: #388eff;
}

body.fb-theme .sample-chip {
  background: rgba(24, 119, 242, 0.08);
  border-color: rgba(24, 119, 242, 0.25);
  color: #388eff;
}

body.fb-theme .sample-chip:hover {
  background: #1877f2;
  color: var(--text-inverse);
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.4);
}

body.fb-theme .how-step-icon {
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
}

body.fb-theme .how-step-badge {
  background: #1877f2;
}

/* ==========================================================================
   LinkedIn Custom Theme (linkedin-theme)
   ========================================================================== */
body.linkedin-theme::before {
  background: radial-gradient(ellipse at center, rgba(10, 102, 194, 0.15) 0%, rgba(56, 189, 248, 0.05) 45%, transparent 75%);
}

body.linkedin-theme .hero-title span {
  background: linear-gradient(135deg, #0a66c2 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(10, 102, 194, 0.4));
}

body.linkedin-theme .hero-badge {
  background: rgba(10, 102, 194, 0.08);
  border-color: rgba(10, 102, 194, 0.3);
  color: #38bdf8;
  box-shadow: 0 0 20px rgba(10, 102, 194, 0.15);
}

body.linkedin-theme .hero-badge i {
  color: #0a66c2;
}

body.linkedin-theme .search-pill-wrapper {
  border-color: rgba(10, 102, 194, 0.35);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(10, 102, 194, 0.15);
}

body.linkedin-theme .search-pill-wrapper:focus-within {
  border-color: #0a66c2;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(10, 102, 194, 0.3);
}

body.linkedin-theme .search-icon {
  color: #0a66c2;
}

body.linkedin-theme .download-btn {
  background: linear-gradient(135deg, #0a66c2 0%, #0077b5 100%);
  box-shadow: 0 0 25px rgba(10, 102, 194, 0.4);
}

body.linkedin-theme .download-btn:hover {
  box-shadow: 0 0 45px rgba(10, 102, 194, 0.6);
}

/* ==========================================================================
   Threads Custom Theme (threads-theme)
   ========================================================================== */
body.threads-theme::before {
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.05) 45%, transparent 75%);
}

body.threads-theme .hero-title span {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.4));
}

body.threads-theme .hero-badge {
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.3);
  color: #c084fc;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

body.threads-theme .hero-badge i {
  color: #a855f7;
}

body.threads-theme .search-pill-wrapper {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(168, 85, 247, 0.15);
}

body.threads-theme .search-pill-wrapper:focus-within {
  border-color: #a855f7;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(168, 85, 247, 0.3);
}

body.threads-theme .search-icon {
  color: #a855f7;
}

body.threads-theme .download-btn {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
}

body.threads-theme .download-btn:hover {
  box-shadow: 0 0 45px rgba(168, 85, 247, 0.6);
}

/* ==========================================================================
   Universal MP3 Converter Custom Theme (mp3-theme)
   ========================================================================== */

body.mp3-theme::before {
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.15) 0%, rgba(251, 191, 36, 0.05) 45%, transparent 75%);
}

body.mp3-theme .hero-title span {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.4));
}

body.mp3-theme .hero-badge {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

body.mp3-theme .hero-badge i {
  color: #f59e0b;
}

body.mp3-theme .search-pill-wrapper {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.15);
}

body.mp3-theme .search-pill-wrapper:focus-within {
  border-color: #f59e0b;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(245, 158, 11, 0.3);
}

body.mp3-theme .search-icon {
  color: #f59e0b;
}

body.mp3-theme .download-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
}

body.mp3-theme .download-btn:hover {
  box-shadow: 0 0 45px rgba(245, 158, 11, 0.6);
}

/* Announcement Bar & Clickable CTA Button */
.announcement-bar {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15), rgba(79, 172, 254, 0.2));
  border-bottom: 1px solid rgba(0, 242, 254, 0.3);
  color: #fff;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10000;
  backdrop-filter: blur(12px);
}

.announcement-bar.warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.2));
  border-bottom-color: rgba(245, 158, 11, 0.3);
}

.announcement-bar.success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.2));
  border-bottom-color: rgba(16, 185, 129, 0.3);
}

.announcement-bar.promo {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.25));
  border-bottom: 1px solid rgba(245, 158, 11, 0.4);
}

.announcement-bar.promo .announcement-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.announcement-bar.promo .announcement-btn:hover {
  color: #fff;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.6);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

.announcement-btn {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #07131e;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.82rem;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.announcement-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  color: #07131e;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.5);
}

.announcement-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
  margin-left: 0.5rem;
}

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