/* ══════════════════════════════════════════════════════════════
   BERNS7 — Official Artist Website
   Stylesheet v1.0
   BFredericks Soulworks © 2026
══════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0c;
  color: #e8e0d0;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #a07d10;
  --bg: #0a0a0c;
  --bg2: #111116;
  --bg3: #18181f;
  --text: #e8e0d0;
  --text-muted: #9a9080;
  --border: rgba(201,162,39,0.18);
  --radius: 12px;
  --transition: 0.3s ease;
}

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── SECTION ─────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-sub {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a0c;
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,0.35); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: rgba(201,162,39,0.1); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled { background: rgba(10,10,12,0.97); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 68px;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900;
  color: #fff; letter-spacing: 0.05em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: #0a0a0c !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-burger {
  display: none;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.nav-mobile a {
  padding: 12px 0;
  font-size: 1rem; font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile.open { display: flex; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.04) 0%, transparent 50%),
              var(--bg);
}
#particleCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-tag {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900; line-height: 0.9;
  color: #fff; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title span { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted); max-width: 500px;
  margin: 0 auto 40px; line-height: 1.7;
}
.hero-stats {
  display: flex; justify-content: center; gap: 48px;
  margin-bottom: 48px;
}
.stat { text-align: center; }
.stat-n {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-l {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 4px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
}
.hero-scroll span {
  display: block; width: 1.5px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.1)} }

/* ─── STREAMING BAR ────────────────────────────────────────── */
.stream-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px 24px;
  position: relative; z-index: 1;
}
.stream-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted);
}
.stream-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-muted);
  padding: 6px 14px; border-radius: 50px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.stream-link:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,162,39,0.06); }

/* ─── ABOUT ────────────────────────────────────────────────── */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: center;
}
.about-img-wrap { display: flex; flex-direction: column; gap: 24px; }
.about-img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.about-img-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(201,162,39,0.08));
  z-index: 1; pointer-events: none;
}
.about-img-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: grayscale(15%); }
.about-quote {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 20px 24px; border-radius: var(--radius);
}
.about-quote i { color: var(--gold); margin-bottom: 8px; font-size: 1.2rem; }
.about-quote p { font-style: italic; color: var(--text); line-height: 1.6; }
.about-quote cite { display: block; margin-top: 10px; font-size: 0.85rem; color: var(--gold); font-style: normal; }
.about-text .section-title { margin-top: 8px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.about-text p strong { color: var(--text); }
.about-text p em { color: var(--gold); font-style: normal; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.about-tags span {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition);
}
.about-tags span:hover { border-color: var(--gold); color: var(--gold); }

/* ─── MUSIC ────────────────────────────────────────────────── */
.music { background: var(--bg2); }
.album-tabs {
  display: flex; gap: 8px; margin-bottom: 40px;
  border-bottom: 1px solid var(--border); padding-bottom: 0;
  flex-wrap: wrap;
}
.album-tab {
  padding: 12px 24px;
  font-size: 0.9rem; font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}
.album-tab span { font-size: 0.75rem; opacity: 0.7; margin-left: 6px; }
.album-tab:hover { color: var(--text); }
.album-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.album-panel { display: none; }
.album-panel.active { display: block; }
.album-header {
  display: flex; gap: 32px; align-items: flex-start;
  background: var(--bg3); border: 1px solid var(--border);
  padding: 32px; border-radius: var(--radius); margin-bottom: 8px;
}
.album-art {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.album-art i { font-size: 2rem; color: #fff; }
.album-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: #fff; margin-bottom: 6px;
}
.album-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.album-platform-links { display: flex; gap: 10px; flex-wrap: wrap; }
.apl-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition);
}
.apl-link:hover { color: var(--gold); border-color: var(--gold); }
.tracklist { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.track {
  display: grid; grid-template-columns: 40px 1fr auto 48px;
  align-items: center; gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}
.track:last-child { border-bottom: none; }
.track:hover { background: rgba(201,162,39,0.05); }
.tn { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.tt { font-weight: 500; color: var(--text); font-size: 0.95rem; }
.td { font-size: 0.8rem; color: var(--text-muted); }
.play-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.7rem;
  transition: var(--transition);
}
.play-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,162,39,0.1); }

/* ─── VIDEOS ───────────────────────────────────────────────── */
.videos { background: var(--bg); }
.video-layout {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 32px; align-items: start;
}
.yt-wrapper {
  position: relative; padding-top: 56.25%;
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg2);
}
.yt-wrapper iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.video-info { padding: 16px 0; }
.video-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: #fff;
}
.video-sidebar {
  display: flex; flex-direction: column; gap: 10px;
  max-height: 520px; overflow-y: auto; padding-right: 4px;
}
.video-sidebar::-webkit-scrollbar { width: 3px; }
.video-sidebar::-webkit-scrollbar-thumb { background: var(--gold-dark); }
.vsb-item {
  display: flex; gap: 12px; align-items: center;
  padding: 10px; border-radius: 8px;
  border: 1px solid var(--border); cursor: pointer;
  transition: var(--transition);
}
.vsb-item:hover, .vsb-item.active { border-color: var(--gold); background: rgba(201,162,39,0.06); }
.vsb-item img { width: 80px; border-radius: 6px; flex-shrink: 0; aspect-ratio: 16/9; object-fit: cover; }
.vsb-item div p { font-size: 0.85rem; font-weight: 500; color: var(--text); line-height: 1.3; }
.vsb-item div span { font-size: 0.75rem; color: var(--text-muted); }
.yt-channel-link { text-align: center; margin-top: 40px; }

/* ─── COMMISSION ───────────────────────────────────────────── */
.commission {
  background: var(--bg2);
  position: relative; overflow: hidden;
}
.commission::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.06), transparent 70%);
  pointer-events: none;
}
.tier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 60px;
}
.tier-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative; transition: var(--transition);
}
.tier-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(201,162,39,0.1); }
.tier-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201,162,39,0.06), var(--bg3));
}
.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0a0a0c;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 50px;
  white-space: nowrap;
}
.tier-icon {
  width: 56px; height: 56px;
  background: rgba(201,162,39,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.tier-icon i { font-size: 1.4rem; color: var(--gold); }
.tier-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: #fff; margin-bottom: 12px;
}
.tier-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.tier-includes { margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.tier-includes li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted);
}
.tier-includes li i { color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }
.commission-form-wrap {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 48px;
  max-width: 860px; margin: 0 auto;
}
.commission-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: #fff; margin-bottom: 8px;
}
.commission-form-wrap > p { color: var(--text-muted); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit; font-size: 0.9rem;
  transition: var(--transition); outline: none;
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: rgba(201,162,39,0.04);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--bg2); }
.form-note {
  font-size: 0.75rem; color: var(--text-muted);
  text-align: center; margin-top: 16px; line-height: 1.6;
}
.form-success {
  text-align: center; padding: 48px 24px;
}
.form-success i { font-size: 3rem; color: var(--gold); margin-bottom: 16px; display: block; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: #fff; margin-bottom: 12px;
}
.form-success p { color: var(--text-muted); }

/* ─── PLATFORMS ─────────────────────────────────────────────── */
.platforms { background: var(--bg); }
.platform-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.platform-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 36px 20px;
  background: var(--bg2);
  border: 1px solid var(--border); border-radius: var(--radius);
  text-align: center; transition: var(--transition);
}
.platform-card:hover { border-color: var(--gold); transform: translateY(-4px); background: var(--bg3); }
.platform-card i { font-size: 2.2rem; color: var(--gold); }
.platform-card span { font-size: 1rem; font-weight: 600; color: #fff; }
.platform-card small { font-size: 0.8rem; color: var(--text-muted); }

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact { background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-block { display: flex; gap: 16px; align-items: flex-start; }
.contact-block > i {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,162,39,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.contact-block h4 { color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.contact-block p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.contact-block a { color: var(--gold); font-size: 0.85rem; display: inline-block; margin-top: 4px; }
.contact-block a:hover { text-decoration: underline; }
.contact-form-wrap {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: #07070a;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 1.8rem; display: inline-block; margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; max-width: 280px; margin-bottom: 8px; }
.footer-label { font-size: 0.75rem; color: var(--text-muted); opacity: 0.6; }
.footer-links, .footer-social { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-social h4 {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.footer-links a, .footer-social a {
  font-size: 0.9rem; color: var(--text-muted);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover, .footer-social a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); opacity: 0.7; }

/* ─── YOUTUBE MODAL ─────────────────────────────────────────── */
.yt-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.yt-modal.open { display: flex; }
.yt-modal-inner {
  width: 100%; max-width: 860px;
  position: relative;
}
.yt-modal-close {
  position: absolute; top: -44px; right: 0;
  color: var(--text-muted); font-size: 1.2rem;
  padding: 8px; transition: color var(--transition);
}
.yt-modal-close:hover { color: var(--gold); }
.yt-modal-player {
  position: relative; padding-top: 56.25%;
  background: #000; border-radius: var(--radius); overflow: hidden;
}
.yt-modal-player iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
#modalTitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: #fff;
  margin-top: 16px; text-align: center;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .platform-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-stats { gap: 24px; }
  .hero-btns { flex-direction: column; align-items: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 380px; margin: 0 auto; }

  .album-header { flex-direction: column; gap: 16px; }

  .video-layout { grid-template-columns: 1fr; }
  .video-sidebar { flex-direction: row; overflow-x: auto; overflow-y: visible; max-height: none; padding: 0 0 8px; }
  .vsb-item { min-width: 200px; }

  .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 60px; }

  .commission-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .platform-grid { grid-template-columns: repeat(2, 1fr); }

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

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 4.5rem; }
  .stream-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
}
