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

/* ═══════════════════════════════════════════════
   CreatorHub — Friendly Modern Template
   ═══════════════════════════════════════════════ */

:root {
  --primary: #6C5CE7;
  --primary-light: #A29BFE;
  --primary-dark: #5A4BD1;
  --accent: #00CEC9;
  --accent2: #FD79A8;
  --accent3: #FDCB6E;
  --success: #00B894;
  --warning: #F39C12;
  --danger: #E17055;

  --bg: #FAFBFF;
  --bg-alt: #F0F2FF;
  --surface: #FFFFFF;
  --surface-hover: #F8F9FF;
  --border: #E8ECF4;
  --border-light: #F0F2F8;

  --text: #2D3436;
  --text-secondary: #636E72;
  --text-muted: #B2BEC3;

  --shadow-sm: 0 2px 8px rgba(108,92,231,0.06);
  --shadow-md: 0 8px 30px rgba(108,92,231,0.1);
  --shadow-lg: 0 20px 60px rgba(108,92,231,0.15);
  --shadow-glow: 0 0 40px rgba(108,92,231,0.2);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }
.view-hidden { display: none !important; }

/* ── Topbar ───────────────────────────────────── */
.topbar {
  height: 72px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,251,255,0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.topbar.scrolled {
  box-shadow: var(--shadow-sm);
}
.brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(108,92,231,0.3);
}
.brand span { color: var(--text); }
.topbar nav {
  display: flex;
  gap: 8px;
}
.topbar nav a {
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.topbar nav a:hover,
.topbar nav a.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(108,92,231,0.3);
}
.theme-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.theme-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.05);
}

/* ── Hero Section ─────────────────────────────── */
.hero {
  min-height: 85vh;
  padding: 120px 6vw 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FAFBFF 0%, #F0F2FF 50%, #E8ECFF 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108,92,231,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,206,201,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}
.hero-copy {
  width: 55%;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(108,92,231,0.1), rgba(0,206,201,0.1));
  border: 1px solid rgba(108,92,231,0.15);
  border-radius: 100px;
  color: var(--primary);
  font: 600 11px 'JetBrains Mono', monospace;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text);
}
.hero h1 em,
h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  max-width: 480px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: none;
}
.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 8px 25px rgba(108,92,231,0.35);
}
.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(108,92,231,0.45);
}
.ghost {
  background: var(--surface);
  color: var(--text);
  border: 2px solid var(--border);
}
.ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.light {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ── Hero Art ─────────────────────────────────── */
.hero-art {
  width: 45%;
  height: 450px;
  position: relative;
  z-index: 2;
}
.orb { position: absolute; border-radius: 50%; }
.orb1 {
  width: 300px;
  height: 300px;
  right: 5%;
  top: 40px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  opacity: 0.9;
  box-shadow: var(--shadow-glow);
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 40px rgba(108,92,231,0.3); }
  50% { box-shadow: 0 0 60px rgba(108,92,231,0.5); }
}
.orb2 {
  width: 150px;
  height: 150px;
  right: 0;
  bottom: 40px;
  background: linear-gradient(135deg, var(--accent), #00B894);
  opacity: 0.85;
  box-shadow: 0 0 40px rgba(0,206,201,0.3);
  animation: pulse-glow 5s ease-in-out infinite reverse;
}
.cube {
  position: absolute;
  right: 28%;
  top: 140px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent3), #F39C12);
  border-radius: 20px;
  transform: rotate(25deg);
  box-shadow: 0 10px 30px rgba(253,203,110,0.3);
  animation: float 6s ease-in-out infinite;
}
.floating-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 13px;
  animation: float 7s ease-in-out infinite;
}
.card-a {
  left: 0;
  top: 100px;
  display: flex;
  gap: 12px;
  align-items: center;
  animation-delay: -2s;
}
.card-a span:first-child {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}
.card-a b { font-weight: 700; color: var(--text); }
.card-b {
  right: 10%;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation-delay: -4s;
}
.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.card-b span:last-child {
  font-weight: 600;
  color: var(--text);
}

/* ── Sections ─────────────────────────────────── */
.section {
  padding: 100px 6vw;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}
.section-head > p {
  max-width: 380px;
  margin-top: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}
h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -1.5px;
  line-height: 1.15;
}

/* ── Intro ────────────────────────────────────── */
.intro {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 6vw;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.intro > div { flex: 1; }
.intro > p {
  flex: 1;
  max-width: 400px;
  margin-top: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── Product & Tool Cards ─────────────────────── */
.product-grid,
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product,
.tool {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product::before,
.tool::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}
.product:hover::before,
.tool:hover::before {
  opacity: 1;
}
.product:hover,
.tool:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}
.product-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(108,92,231,0.1), rgba(108,92,231,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.product-image {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.product h3,
.tool h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text);
}
.product p,
.tool p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}
.price {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
}

/* ── Dark Section (YouTube Tools) ─────────────── */
.dark-section {
  background: linear-gradient(180deg, #2D1B69 0%, #1A103C 100%);
  border: none;
  position: relative;
}
.dark-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.dark-section .section-head { position: relative; z-index: 1; }
.dark-section .eyebrow {
  color: var(--accent);
  background: rgba(0,206,201,0.1);
  border-color: rgba(0,206,201,0.2);
}
.dark-section h2 { color: white; }
.dark-section .section-head > p { color: rgba(255,255,255,0.7); }
.tool {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.tool::before {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.tool:hover {
  border-color: rgba(0,206,201,0.4);
  background: rgba(255,255,255,0.12);
}
.tool-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0,206,201,0.2), rgba(0,206,201,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--accent);
  margin-bottom: 20px;
}
.tool h3 { color: white; }
.tool p { color: rgba(255,255,255,0.7); }
.tool .price { color: var(--accent); border-color: rgba(255,255,255,0.1); }

/* ── WebToAPK Section ─────────────────────────── */
.webtoapk {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #E8ECFF 100%);
  position: relative;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent), var(--success));
  color: white;
  border-radius: 100px;
  font: 600 11px 'JetBrains Mono', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0,206,201,0.3);
}
.builder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 50px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}
.builder-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(108,92,231,0.3);
}
.builder h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--text);
}
.builder p {
  max-width: 380px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}
.builder-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
label {
  display: block;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
input,
textarea,
select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font: 15px 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(108,92,231,0.1);
  background: white;
}
textarea { min-height: 100px; resize: vertical; }
.apk-result {
  min-height: 60px;
  padding: 18px;
  border: 2px dashed var(--success);
  border-radius: var(--radius-sm);
  background: rgba(0,184,148,0.05);
  color: var(--success);
  font-size: 14px;
  line-height: 1.6;
}

/* ── CTA Section ──────────────────────────────── */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 6vw;
  background: linear-gradient(135deg, var(--primary) 0%, #4834D4 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta > div { position: relative; z-index: 1; }
.cta .eyebrow {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
}
.cta h2 {
  color: white;
  margin-top: 16px;
}

/* ── Footer ───────────────────────────────────── */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 6vw;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-secondary);
}
footer span:last-child { color: var(--text-muted); }

/* ── Modal (Admin) ────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  padding: 5vh 20px;
  overflow: auto;
  background: rgba(45,52,54,0.6);
  backdrop-filter: blur(8px);
}
.modal.open { display: flex; align-items: flex-start; justify-content: center; }
.modal-box {
  width: 100%;
  max-width: 640px;
  margin: auto;
  padding: 40px;
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  animation: slide-up 0.3s ease-out;
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.close {
  position: absolute;
  right: 20px;
  top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg);
  color: var(--text-secondary);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.close:hover {
  background: var(--danger);
  color: white;
}
.muted {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}
.admin-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin: 28px 0 24px;
}
.tab {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
  background: transparent;
  transition: var(--transition);
}
.tab.active {
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.tab:hover:not(.active) { color: var(--text); }
.admin-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}
.admin-item:last-child { border-bottom: none; }
.admin-item small { color: var(--text-muted); }
.delete {
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(225,112,85,0.1);
  color: var(--danger);
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}
.delete:hover {
  background: var(--danger);
  color: white;
}
.add-form {
  display: grid;
  gap: 18px;
}
.add-form .primary {
  justify-content: center;
  margin-top: 8px;
}

/* ── Admin Page (login.html) ──────────────────── */
.admin-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #E8ECFF 100%);
}
.admin-page .modal-box {
  max-width: 480px;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.ghost.btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}
.ghost.btn:hover {
  border-color: var(--danger);
  color: var(--danger);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    display: block;
    min-height: auto;
    padding: 100px 6vw 60px;
  }
  .hero-copy { width: 100%; }
  .hero-art {
    width: 100%;
    height: 300px;
    margin-top: 40px;
  }
  .product-grid,
  .tool-grid {
    grid-template-columns: 1fr;
  }
  .builder {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }
  .intro,
  .section-head {
    flex-direction: column;
    gap: 20px;
  }
  .cta {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .topbar { padding: 0 5vw; }
  .topbar nav { display: none; }
  .brand { font-size: 18px; }
  .brand-mark { width: 32px; height: 32px; font-size: 14px; }
  .hero h1 { font-size: 36px; letter-spacing: -1.5px; }
  .section { padding: 60px 5vw; }
  h2 { font-size: 28px; }
  .modal-box { padding: 28px; }
  footer { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Dark Mode ────────────────────────────────── */
body.dark-mode {
  --bg: #0F0F1A;
  --bg-alt: #151525;
  --surface: #1A1A2E;
  --surface-hover: #222240;
  --border: #2A2A45;
  --border-light: #222238;
  --text: #EAEAFF;
  --text-secondary: #A0A0C0;
  --text-muted: #6060A0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
}
body.dark-mode .topbar {
  background: rgba(15,15,26,0.9);
}
body.dark-mode .theme-btn {
  background: var(--surface);
  border-color: var(--border);
  color: white;
}
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
body.dark-mode .admin-page {
  background: linear-gradient(135deg, #0F0F1A 0%, #1A1A30 100%);
}

/* ── Checkout Modal ────────────────────────── */
#checkout-modal .modal-box{max-width:500px;text-align:left}
#checkout-modal h2{font-family:'Poppins',sans-serif;font-weight:700;font-size:20px;margin-bottom:8px}
#checkout-modal .btn{display:block;text-align:center}
#checkout-modal a{color:#6c5ce7;font-weight:600}

/* ── Auth Pages ────────────────────────────── */
#auth-guest,#auth-user{display:flex;align-items:center;gap:8px}
.topbar-right{display:flex;align-items:center;gap:12px}
