/* * MediaSnap — style.css v1.0.0 * ───────────────────────────────────────────── * Developer  : Md. Mainul Islam * Owner      : MAINUL - X * Telegram   : https://t.me/mdmainulislaminfo * GitHub     : https://github.com/M41NUL * WhatsApp   : +8801308850528 * Channel    : https://t.me/mainul_x_official * Group      : https://t.me/mainul_x_official_gc * Email      : githubmainul@gmail.com | devmainulislam@gmail.com * YouTube    : https://youtube.com/@mdmainulislaminfo * License    : MIT License * Design     : iOS 26 Liquid Glass UI * ───────────────────────────────────────────── */:root {  --bg:           #F2F2F7;  --bg-2:         #FFFFFF;  --bg-3:         #F2F2F7;  --glass:        rgba(255, 255, 255, 0.72);  --glass-heavy:  rgba(255, 255, 255, 0.88);  --glass-light:  rgba(255, 255, 255, 0.45);  --border:       rgba(0, 0, 0, 0.08);  --border-light: rgba(255, 255, 255, 0.60);  --accent:       #007AFF;  --accent-hover: #0051D4;  --accent-light: rgba(0, 122, 255, 0.10);  --accent-glow:  rgba(0, 122, 255, 0.18);  --text-1:       #000000;  --text-2:       rgba(60, 60, 67, 0.60);  --text-3:       #8E8E93;  --danger:       #FF3B30;  --danger-light: rgba(255, 59, 48, 0.10);  --success:      #34C759;  --success-light:rgba(52, 199, 89, 0.10);  --separator:    rgba(60, 60, 67, 0.12);  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);  --shadow-md:    0 4px 24px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);  --shadow-lg:    0 8px 40px rgba(0,0,0,0.14), 0 4px 16px rgba(0,0,0,0.08);  --blur:         blur(40px) saturate(2.2);  --blur-heavy:   blur(60px) saturate(2.5);  --radius-sm:    10px;  --radius-md:    14px;  --radius-lg:    20px;  --radius-xl:    28px;  --radius-pill:  100px;  --font:         -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;  --topbar-h:     52px;  --transition:   all 0.2s cubic-bezier(0.4, 0, 0.2, 1);}[data-theme="dark"] {  --bg:           #000000;  --bg-2:         #1C1C1E;  --bg-3:         #2C2C2E;  --glass:        rgba(28, 28, 30, 0.80);  --glass-heavy:  rgba(28, 28, 30, 0.95);  --glass-light:  rgba(255, 255, 255, 0.06);  --border:       rgba(255, 255, 255, 0.10);  --border-light: rgba(255, 255, 255, 0.14);  --text-1:       #FFFFFF;  --text-2:       rgba(235, 235, 245, 0.60);  --text-3:       #636366;  --separator:    rgba(84, 84, 88, 0.38);  --shadow-sm:    0 2px 8px rgba(0,0,0,0.30);  --shadow-md:    0 4px 24px rgba(0,0,0,0.40);  --shadow-lg:    0 8px 40px rgba(0,0,0,0.55);  --accent-light: rgba(0, 122, 255, 0.18);  --accent-glow:  rgba(0, 122, 255, 0.22);}*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }body {  font-family: var(--font);  background: var(--bg);  color: var(--text-1);  min-height: 100vh;  overflow-x: hidden;  padding-top: var(--topbar-h);  transition: background 0.35s ease, color 0.35s ease;  position: relative;}body::before, body::after {  content: '';  position: fixed;  border-radius: 50%;  pointer-events: none;  z-index: 0;  filter: blur(90px);  opacity: 0.22;  transition: opacity 0.4s ease;}body::before {  width: 700px; height: 700px;  background: radial-gradient(circle, #007AFF 0%, #5856D6 100%);  top: -250px; right: -200px;}body::after {  width: 550px; height: 550px;  background: radial-gradient(circle, #5856D6 0%, #AF52DE 100%);  bottom: -180px; left: -180px;}[data-theme="dark"] body::before { opacity: 0.10; }[data-theme="dark"] body::after  { opacity: 0.08; }::selection { background: var(--accent); color: #fff; }img { display: block; max-width: 100%; }a { color: inherit; text-decoration: none; }button { font-family: var(--font); cursor: pointer; border: none; outline: none; }input  { font-family: var(--font); outline: none; border: none; }ul, ol { list-style: none; }/* GLASS CARD */.glass-card {  background: var(--glass);  backdrop-filter: var(--blur);  -webkit-backdrop-filter: var(--blur);  border: 1px solid var(--border);  border-radius: var(--radius-lg);  box-shadow: var(--shadow-md);  position: relative;}.glass-card::before {  content: '';  position: absolute;  inset: 0;  border-radius: inherit;  background: linear-gradient(135deg, var(--border-light) 0%, transparent 55%);  pointer-events: none;  z-index: 1;}/* TOP BAR */.topbar {  position: fixed; top: 0; left: 0; right: 0;  height: var(--topbar-h); z-index: 1000;  display: flex; align-items: center; justify-content: space-between;  padding: 0 16px;  background: var(--glass-heavy);  backdrop-filter: var(--blur-heavy);  -webkit-backdrop-filter: var(--blur-heavy);  border-bottom: 1px solid var(--separator);}.topbar-left, .topbar-right { display: flex; align-items: center; gap: 4px; }.topbar-center {  position: absolute; left: 50%; transform: translateX(-50%);  display: flex; align-items: center; gap: 8px;}.topbar-logo { display: flex; align-items: center; gap: 7px; }.topbar-logo-icon {  width: 28px; height: 28px; background: var(--accent);  border-radius: 8px;  display: flex; align-items: center; justify-content: center;  flex-shrink: 0; box-shadow: 0 2px 10px rgba(0,122,255,0.4);}.topbar-logo-text { font-size: 17px; font-weight: 700; color: var(--text-1); letter-spacing: -0.3px; }.topbar-btn {  width: 36px; height: 36px; border-radius: var(--radius-sm);  display: flex; align-items: center; justify-content: center;  background: transparent; color: var(--accent); transition: var(--transition);}.topbar-btn:hover { background: var(--accent-light); }.topbar-btn:active { transform: scale(0.90); }.menu-hamburger { display: flex; flex-direction: column; gap: 4px; width: 18px; }.menu-hamburger span { display: block; height: 2px; background: var(--accent); border-radius: 2px; transition: var(--transition); }.lang-btn { display: flex; align-items: center; justify-content: center; padding: 0; color: var(--accent); }/* PULL TO REFRESH */.ptr-indicator {  position: fixed; top: var(--topbar-h); left: 0; right: 0;  display: flex; align-items: center; justify-content: center; gap: 8px;  padding: 12px;  background: var(--glass-heavy);  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);  z-index: 999;  transform: translateY(-100%);  transition: transform 0.3s cubic-bezier(0.34, 1.1, 0.64, 1);  border-bottom: 1px solid var(--separator);}.ptr-indicator.visible { transform: translateY(0); }.ptr-spinner {  width: 18px; height: 18px;  border: 2px solid var(--accent-light);  border-top-color: var(--accent);  border-radius: 50%;}.ptr-spinner.spin { animation: spinAnim 0.6s linear infinite; }@keyframes spinAnim { to { transform: rotate(360deg); } }.ptr-text { font-size: 13px; font-weight: 500; color: var(--text-2); }/* SIDE MENU */.menu-overlay {  position: fixed; inset: 0;  background: rgba(0,0,0,0.35);  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);  z-index: 2000; opacity: 0; pointer-events: none;  transition: opacity 0.3s ease;}.menu-overlay.open { opacity: 1; pointer-events: all; }.side-menu {  position: fixed; top: 0; left: 0; bottom: 0;  width: 300px; max-width: 85vw; z-index: 2001;  background: var(--glass-heavy);  backdrop-filter: var(--blur-heavy); -webkit-backdrop-filter: var(--blur-heavy);  border-right: 1px solid var(--border);  transform: translateX(-100%);  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);  display: flex; flex-direction: column; overflow: hidden;}.side-menu.open { transform: translateX(0); }.side-menu-header {  padding: 60px 20px 16px;  display: flex; align-items: center; gap: 12px;  border-bottom: 1px solid var(--separator);}.side-menu-logo-icon {  width: 44px; height: 44px; background: var(--accent); border-radius: 12px;  display: flex; align-items: center; justify-content: center;  box-shadow: 0 4px 14px rgba(0,122,255,0.45);}.side-menu-logo-info h2 { font-size: 17px; font-weight: 700; color: var(--text-1); }.side-menu-logo-info span { font-size: 12px; color: var(--text-3); font-weight: 500; }.side-menu-body { flex: 1; overflow-y: auto; padding: 8px 0; }.menu-section-title {  font-size: 11px; font-weight: 600; color: var(--text-3);  letter-spacing: 0.5px; text-transform: uppercase;  padding: 16px 20px 6px;}.menu-item {  display: flex; align-items: center; gap: 14px;  padding: 13px 20px; cursor: pointer;  transition: background 0.15s ease;}.menu-item:hover, .menu-item:active { background: var(--accent-light); }.menu-item-icon {  width: 34px; height: 34px; border-radius: 9px;  display: flex; align-items: center; justify-content: center; flex-shrink: 0;}.menu-item-icon.blue   { background: var(--accent-light); color: var(--accent); }.menu-item-icon.green  { background: rgba(52,199,89,0.12); color: #34C759; }.menu-item-icon.orange { background: rgba(255,149,0,0.12); color: #FF9500; }.menu-item-icon.purple { background: rgba(88,86,214,0.12); color: #5856D6; }.menu-item-info { flex: 1; min-width: 0; }.menu-item-title { font-size: 15px; font-weight: 500; color: var(--text-1); }.menu-item-subtitle { font-size: 12px; color: var(--text-3); margin-top: 1px; }.menu-item-chevron { color: var(--text-3); flex-shrink: 0; }.menu-separator { height: 1px; background: var(--separator); margin: 4px 20px; }.side-menu-footer { padding: 16px 20px; border-top: 1px solid var(--separator); }.menu-dev-info { font-size: 12px; color: var(--text-3); text-align: center; line-height: 1.6; }.menu-dev-info a { color: var(--accent); font-weight: 500; }/* SETTINGS / INFO MODALS */.modal-overlay {  position: fixed; inset: 0;  background: rgba(0,0,0,0.38);  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);  z-index: 3000; opacity: 0; pointer-events: none;  transition: opacity 0.28s ease;  display: flex; align-items: flex-end; justify-content: center;}.modal-overlay.open { opacity: 1; pointer-events: all; }.settings-panel {  width: 100%; max-width: 480px;  background: var(--glass-heavy);  backdrop-filter: var(--blur-heavy); -webkit-backdrop-filter: var(--blur-heavy);  border-radius: var(--radius-xl) var(--radius-xl) 0 0;  border: 1px solid var(--border); border-bottom: none;  transform: translateY(100%);  transition: transform 0.42s cubic-bezier(0.34,1.1,0.64,1);  overflow: hidden;}.modal-overlay.open .settings-panel { transform: translateY(0); }.settings-drag-handle {  width: 36px; height: 4px; background: var(--text-3); border-radius: 4px;  margin: 12px auto 0; opacity: 0.4;}.settings-header {  display: flex; align-items: center; justify-content: space-between;  padding: 16px 20px 12px; border-bottom: 1px solid var(--separator);}.settings-title { font-size: 17px; font-weight: 700; color: var(--text-1); }.settings-close {  width: 28px; height: 28px; border-radius: 50%; background: var(--bg-3);  display: flex; align-items: center; justify-content: center;  color: var(--text-2); cursor: pointer; transition: var(--transition);}.settings-close:hover { opacity: 0.7; }.settings-body { padding: 12px 20px 36px; }.settings-row {  display: flex; align-items: center; justify-content: space-between;  padding: 14px 0; border-bottom: 1px solid var(--separator);}.settings-row:last-child { border-bottom: none; }.settings-row-info { flex: 1; min-width: 0; }.settings-row-title { font-size: 15px; font-weight: 500; color: var(--text-1); }.settings-row-subtitle { font-size: 12px; color: var(--text-3); margin-top: 2px; }.ios-toggle { position: relative; width: 51px; height: 31px; flex-shrink: 0; }.ios-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }.ios-toggle-track {  position: absolute; inset: 0; background: var(--separator);  border-radius: 100px; cursor: pointer; transition: background 0.28s ease;}.ios-toggle input:checked + .ios-toggle-track { background: var(--success); }.ios-toggle-track::after {  content: '';  position: absolute; top: 2px; left: 2px;  width: 27px; height: 27px; background: #fff; border-radius: 50%;  box-shadow: 0 2px 8px rgba(0,0,0,0.28);  transition: transform 0.28s cubic-bezier(0.34,1.2,0.64,1);}.ios-toggle input:checked + .ios-toggle-track::after { transform: translateX(20px); }.format-picker {  display: flex; gap: 4px;  background: var(--bg-3); border-radius: var(--radius-sm); padding: 3px;  border: 1px solid var(--separator);}.format-btn {  padding: 6px 14px; font-size: 13px; font-weight: 600;  border-radius: 8px; border: none; cursor: pointer;  background: transparent; color: var(--text-3);  transition: var(--transition);}.format-btn.active { background: var(--accent); color: #fff; box-shadow: 0 1px 6px rgba(0,122,255,0.3); }.info-panel {  width: 100%; max-width: 480px; max-height: 82vh;  background: var(--glass-heavy);  backdrop-filter: var(--blur-heavy); -webkit-backdrop-filter: var(--blur-heavy);  border-radius: var(--radius-xl) var(--radius-xl) 0 0;  border: 1px solid var(--border); border-bottom: none;  transform: translateY(100%);  transition: transform 0.42s cubic-bezier(0.34,1.1,0.64,1);  overflow: hidden; display: flex; flex-direction: column;}.modal-overlay.open .info-panel { transform: translateY(0); }.info-panel-header {  display: flex; align-items: center; justify-content: space-between;  padding: 16px 20px 12px; border-bottom: 1px solid var(--separator); flex-shrink: 0;}.info-panel-title { font-size: 17px; font-weight: 700; color: var(--text-1); }.info-panel-body { flex: 1; overflow-y: auto; padding: 20px 20px 32px; }.info-section-title {  font-size: 13px; font-weight: 600; color: var(--text-3);  letter-spacing: 0.4px; text-transform: uppercase;  margin-bottom: 10px; margin-top: 20px;}.info-section-title:first-child { margin-top: 0; }.info-card {  background: var(--bg-3); border-radius: var(--radius-md);  overflow: hidden; border: 1px solid var(--separator); margin-bottom: 16px;}.info-row {  display: flex; align-items: center;  padding: 13px 16px; gap: 12px;  border-bottom: 1px solid var(--separator);}.info-row:last-child { border-bottom: none; }.info-row-label { font-size: 14px; font-weight: 500; color: var(--text-2); min-width: 90px; flex-shrink: 0; }.info-row-value { font-size: 14px; color: var(--text-1); word-break: break-word; flex: 1; }.info-row-value a { color: var(--accent); }.info-row-value a:hover { text-decoration: underline; }.info-tag {  display: inline-block; background: var(--accent-light); color: var(--accent);  font-size: 12px; font-weight: 600; padding: 3px 10px;  border-radius: var(--radius-pill);}.help-item { padding: 14px 0; border-bottom: 1px solid var(--separator); }.help-item:last-child { border-bottom: none; }.help-question { font-size: 15px; font-weight: 600; color: var(--text-1); margin-bottom: 6px; }.help-answer { font-size: 14px; color: var(--text-2); line-height: 1.55; }/* LAYOUT */.container { max-width: 640px; margin: 0 auto; padding: 0 16px; position: relative; z-index: 1; }.section { padding: 48px 0; }/* HERO */.hero { padding: 64px 0 40px; text-align: center; }.hero-eyebrow {  display: inline-flex; align-items: center; gap: 6px;  background: var(--accent-light); color: var(--accent);  font-size: 12px; font-weight: 600;  padding: 5px 14px; border-radius: var(--radius-pill);  margin-bottom: 20px; letter-spacing: 0.3px;}.hero h1 {  font-size: clamp(30px, 6vw, 52px);  font-weight: 700; letter-spacing: -1.5px;  color: var(--text-1); line-height: 1.08; margin-bottom: 14px;}.hero-sub { font-size: 17px; color: var(--text-2); font-weight: 400; letter-spacing: 0.5px; }/* PROGRESS BAR */.progress-bar-wrap {  height: 3px; background: var(--accent-light);  border-radius: 3px; overflow: hidden;  margin-bottom: 16px; opacity: 0; transition: opacity 0.3s ease;}.progress-bar-wrap.active { opacity: 1; }.progress-bar {  height: 100%; width: 0%;  background: linear-gradient(90deg, var(--accent) 0%, #5856D6 50%, #AF52DE 100%);  border-radius: 3px; transition: width 0.4s ease; position: relative;}.progress-bar::after {  content: '';  position: absolute; right: 0; top: 0; bottom: 0; width: 40px;  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5));  animation: shimmer 1s ease-in-out infinite;}@keyframes shimmer { 0% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } }/* DOWNLOADER CARD */.downloader-card { padding: 24px; margin: 0 auto; }.input-wrapper { position: relative; margin-bottom: 12px; }.url-input {  width: 100%; background: var(--bg-2);  border: 1.5px solid var(--separator); border-radius: var(--radius-md);  padding: 16px 20px; font-size: 16px; color: var(--text-1);  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;  -webkit-appearance: none;}.url-input::placeholder { color: var(--text-3); }.url-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }.url-input.fade { opacity: 0; transition: opacity 0.25s ease; }.btn-row { display: flex; gap: 8px; margin-bottom: 16px; }.btn {  display: inline-flex; align-items: center; justify-content: center; gap: 7px;  font-family: var(--font); font-size: 15px; font-weight: 600;  border-radius: var(--radius-md); padding: 13px 16px;  cursor: pointer; border: none; outline: none;  transition: var(--transition); white-space: nowrap;  -webkit-tap-highlight-color: transparent;  position: relative; overflow: hidden;}.btn:active { transform: scale(0.95); filter: brightness(0.90); }.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; filter: none !important; }.btn-primary { background: var(--accent); color: #fff; flex: 1; box-shadow: 0 2px 14px rgba(0,122,255,0.30); }.btn-primary:hover:not(:disabled) { filter: brightness(1.08); }.btn-secondary { background: var(--accent-light); color: var(--accent); }.btn-secondary:hover:not(:disabled) { background: rgba(0,122,255,0.16); }.btn-icon { flex-shrink: 0; }.btn::after {  content: ''; position: absolute;  width: 0; height: 0; background: rgba(255,255,255,0.3);  border-radius: 50%; transform: translate(-50%,-50%); opacity: 0; pointer-events: none;}.btn.ripple::after { animation: rippleAnim 0.5s ease-out; }@keyframes rippleAnim {  0%   { width: 0; height: 0; opacity: 0.5; }  100% { width: 200px; height: 200px; opacity: 0; }}.platforms-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }.platform-pill { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; color: var(--text-3); }.platform-dot { width: 3px; height: 3px; background: var(--separator); border-radius: 50%; }/* SKELETON LOADER */.skeleton-card { padding: 20px; margin: 16px auto 0; }.skeleton-video { width: 100%; height: 200px; border-radius: 14px; background: var(--bg-3); }.skeleton-badge { border-radius: var(--radius-pill); background: var(--bg-3); }.skeleton-line { border-radius: 6px; background: var(--bg-3); }.skeleton-pill { width: 80px; height: 30px; border-radius: var(--radius-pill); background: var(--bg-3); }.skeleton-btn { flex: 1; height: 48px; border-radius: var(--radius-md); background: var(--bg-3); }@keyframes skeletonPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }.skeleton-pulse { animation: skeletonPulse 1.4s ease-in-out infinite; }/* RESULT CARD */.result-card {  display: none; padding: 20px; margin: 16px auto 0;  opacity: 0; transform: translateY(24px);}.result-card.show {  display: block;  animation: springIn 0.42s cubic-bezier(0.34,1.2,0.64,1) forwards;}@keyframes springIn {  from { opacity: 0; transform: translateY(24px); }  to   { opacity: 1; transform: translateY(0); }}/* VIDEO PREVIEW WRAP  */.result-video-wrap {  width: 100%;  aspect-ratio: 16/9;  border-radius: 14px;  overflow: hidden;  background: var(--bg-3);  margin-bottom: 16px;  position: relative;  display: flex;  flex-direction: column;  align-items: center;  justify-content: center;  cursor: pointer;}.result-video-wrap img,.result-video-wrap video {  width: 100%;  height: 100%;  object-fit: cover;  border-radius: 14px;  display: block;}.result-thumb-placeholder {  display: flex;  flex-direction: column;  align-items: center;  justify-content: center;  color: var(--text-3);  width: 100%;  height: 100%;}/* INFO BLOCK — title, uploader */.result-info-block {  display: flex;  flex-direction: column;  gap: 6px;  margin-bottom: 12px;}.platform-badge {  display: inline-flex; align-items: center; gap: 5px;  font-size: 11px; font-weight: 700;  padding: 4px 10px; border-radius: var(--radius-pill);  letter-spacing: 0.2px; align-self: flex-start;}.platform-badge.tiktok    { background: #FFF0F3; color: #EE1D52; }.platform-badge.instagram { background: #FFF0F0; color: #E1306C; }.platform-badge.facebook  { background: #EEF4FF; color: #1877F2; }[data-theme="dark"] .platform-badge.tiktok    { background: rgba(238,29,82,0.15); }[data-theme="dark"] .platform-badge.instagram { background: rgba(225,48,108,0.15); }[data-theme="dark"] .platform-badge.facebook  { background: rgba(24,119,242,0.15); }.result-title { font-size: 14px; font-weight: 600; color: var(--text-1); line-height: 1.5; }.result-uploader { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-2); font-weight: 500; }/* META PILLS */.result-meta { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }.meta-pill {  display: flex; align-items: center; gap: 5px;  background: var(--bg-3); border-radius: var(--radius-pill);  padding: 6px 12px; font-size: 12px; color: var(--text-2); font-weight: 500;  border: 1px solid var(--separator);}.format-meta-pill { border-color: var(--accent-glow); color: var(--accent); background: var(--accent-light); }/* ACTION BUTTONS */.result-actions { display: flex; flex-direction: column; gap: 8px; }.result-btn-row { display: flex; gap: 8px; }.btn-download-mp4, .btn-save-device { flex: 1; font-size: 15px; padding: 14px 16px; }.btn-another {  display: flex; align-items: center; justify-content: center; gap: 6px;  background: transparent; color: var(--accent);  font-size: 14px; font-weight: 600; padding: 10px;  border-radius: var(--radius-md); cursor: pointer;  transition: var(--transition); border: none;}.btn-another:hover { background: var(--accent-light); }.btn-another:active { transform: scale(0.96); }/* HOW IT WORKS */.section-title {  font-size: 26px; font-weight: 700; color: var(--text-1);  letter-spacing: -0.5px; margin-bottom: 24px; text-align: center;}.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }.info-block { padding: 20px; display: flex; flex-direction: column; gap: 12px; }.step-circle {  width: 32px; height: 32px; background: var(--accent); border-radius: 50%;  display: flex; align-items: center; justify-content: center;  font-size: 14px; font-weight: 700; color: #fff;  flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,122,255,0.35);}.block-icon {  width: 44px; height: 44px; background: var(--accent-light); border-radius: 12px;  display: flex; align-items: center; justify-content: center;  color: var(--accent); flex-shrink: 0;}.block-title { font-size: 15px; font-weight: 700; color: var(--text-1); letter-spacing: -0.2px; }.block-desc { font-size: 13px; color: var(--text-2); line-height: 1.5; }/* FOOTER */.footer {  background: var(--bg-2); border-top: 1px solid var(--separator);  padding: 32px 16px 48px; margin-top: 48px; position: relative; z-index: 1;}.footer-inner { max-width: 640px; margin: 0 auto; text-align: center; }.footer-logo { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }.footer-logo-icon {  width: 32px; height: 32px; background: var(--accent); border-radius: 9px;  display: flex; align-items: center; justify-content: center;  box-shadow: 0 2px 10px rgba(0,122,255,0.3);}.footer-logo-text { font-size: 16px; font-weight: 700; color: var(--text-1); }.footer-socials { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; }.social-btn {  width: 38px; height: 38px; border-radius: 11px;  background: var(--bg-3); display: flex; align-items: center; justify-content: center;  color: var(--text-2); transition: var(--transition); border: 1px solid var(--separator);}.social-btn:hover { background: var(--accent-light); color: var(--accent); border-color: var(--accent-glow); transform: translateY(-2px); }.footer-links { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }.footer-link {  display: inline-flex; align-items: center; gap: 5px;  font-size: 13px; font-weight: 500; color: var(--accent);  padding: 6px 14px; background: var(--accent-light);  border-radius: var(--radius-pill); transition: var(--transition);}.footer-link:hover { background: rgba(0,122,255,0.16); transform: translateY(-1px); }.footer-bottom {  display: flex; align-items: center; justify-content: center;  flex-direction: column; gap: 8px;  padding-top: 14px; border-top: 1px solid var(--separator);}.footer-brand-pill {  display: inline-flex; align-items: center; gap: 6px;  background: var(--bg-3); border: 1px solid var(--separator);  border-radius: var(--radius-pill); padding: 3px 10px 3px 8px;}.footer-brand-name {  font-size: 12px; font-weight: 700;  letter-spacing: 0.04em; color: var(--text-1);}.footer-brand-version {  font-size: 10px; font-weight: 600; color: #fff;  background: var(--accent); padding: 1px 6px;  border-radius: var(--radius-pill);}.footer-copy { font-size: 12px; color: var(--text-3); }.footer-rights {  font-size: 11px; color: var(--text-3);  opacity: 0.55; letter-spacing: 0.02em;  text-align: center; line-height: 1.5;}/* iOS SPINNER */.ios-spinner {  position: relative; width: 14px; height: 14px;  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;}.ios-spinner span {  position: absolute; width: 1.5px; height: 3.5px;  background: currentColor; border-radius: 2px; transform-origin: center 6px;}@keyframes ios-fade {  0%   { opacity: 1; }  100% { opacity: 0.12; }}/* TOAST */.toast-container {  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);  z-index: 9999; display: flex; flex-direction: column;  align-items: center; gap: 8px; pointer-events: none;}.toast {  background: var(--text-1); color: #fff;  padding: 12px 20px; border-radius: var(--radius-pill);  font-size: 14px; font-weight: 500; box-shadow: var(--shadow-lg);  animation: toastIn 0.3s cubic-bezier(0.34,1.2,0.64,1) forwards;  pointer-events: all;  display: flex; align-items: center; gap: 8px;  max-width: 90vw; white-space: normal; text-align: center;}.toast.error   { background: var(--danger); }.toast.success { background: var(--success); }@keyframes toastIn { from { opacity: 0; transform: translateY(12px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }@keyframes toastOut { from { opacity: 1; transform: translateY(0) scale(1); } to { opacity: 0; transform: translateY(6px) scale(0.95); } }.toast.removing { animation: toastOut 0.25s ease forwards; }/* SCROLL TO TOP */.scroll-top-btn {  position: fixed; bottom: 28px; right: 20px;  width: 44px; height: 44px; z-index: 500;  background: var(--accent); color: #fff;  border-radius: 50%; border: none;  display: flex; align-items: center; justify-content: center;  box-shadow: 0 4px 16px rgba(0,122,255,0.40);  cursor: pointer;  opacity: 0; transform: translateY(16px) scale(0.8);  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.2,0.64,1);  pointer-events: none;}.scroll-top-btn.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }.scroll-top-btn:hover { filter: brightness(1.1); transform: translateY(-2px) scale(1); }.scroll-top-btn:active { transform: scale(0.92); }/* API STATUS BADGE */.api-status-badge {  display: inline-flex; align-items: center; gap: 6px;  font-size: 11px; font-weight: 600; padding: 4px 12px;  border-radius: var(--radius-pill);  background: rgba(52,199,89,0.12); color: #34C759;  margin-bottom: 20px; transition: var(--transition);}.api-status-badge.offline { background: rgba(255,59,48,0.10); color: var(--danger); }.api-status-dot {  width: 6px; height: 6px; border-radius: 50%;  background: currentColor; animation: pulse-dot 2s ease-in-out infinite;}@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.75); } }/* RESPONSIVE */@media (max-width: 768px) {  .cards-grid { grid-template-columns: 1fr; gap: 10px; }  .info-block { flex-direction: row; align-items: flex-start; padding: 16px; }  .result-btn-row { flex-direction: column; }  .hero h1 { letter-spacing: -1px; }}@media (max-width: 480px) {  .hero { padding: 40px 0 28px; }  .downloader-card { padding: 16px; }  .result-video-wrap { aspect-ratio: 9/16; max-height: 320px; }  .btn-row { flex-wrap: wrap; }  .btn-row .btn:first-child, .btn-row .btn:nth-child(2) { flex: 1; }  .btn { font-size: 14px; padding: 12px 12px; }  .scroll-top-btn { bottom: 24px; right: 16px; }}::-webkit-scrollbar { width: 4px; }::-webkit-scrollbar-track { background: transparent; }::-webkit-scrollbar-thumb { background: var(--separator); border-radius: 4px; }.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }main { animation: pageIn 0.5s ease forwards; }/* ═══ VIDEO PLAYER STYLES ════════════════════════════════════════════════ */#resultVideoPlayer {  border-radius: 14px;  background: #000;  outline: none;  /* iOS Safari এ controls দেখাতে */  -webkit-media-controls: auto;}/* Portrait video (TikTok/Reels style) */.result-video-wrap {  background: #000;  border-radius: 14px;  overflow: hidden;  min-height: 200px;  display: flex;  align-items: center;  justify-content: center;}/* Video loading spinner overlay */.video-loading-overlay {  position: absolute;  inset: 0;  display: flex;  flex-direction: column;  align-items: center;  justify-content: center;  background: rgba(0,0,0,0.55);  border-radius: 14px;  gap: 10px;  z-index: 2;  pointer-events: none;}.video-loading-overlay span {  color: #fff;  font-size: 13px;  font-weight: 500;}