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

:root {
  --c-bg: #212132;
  --c-header: #252536;
  --c-gold: #ddc43a;
  --c-red: #cd1935;
  --c-text: #e8e8f0;
  --c-text-muted: #9898b0;
  --c-border: #35354f;
  --c-card: #2a2a40;
  --c-card2: #1e1e2e;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: var(--c-bg); }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--c-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: #f0d84a; }

img { max-width: 100%; display: block; }

.xk9p2 { display: none; }
.wp-post-thumbnail { display: none !important; }

.z7r3q {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }

.b4m9f-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.b4m9f-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.header-logo a {
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 42px;
  width: auto;
  border-radius: 4px;
}

.header-nav { display: flex; align-items: center; gap: 6px; list-style: none; }
.header-nav a {
  color: var(--c-text);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.header-nav a:hover { background: rgba(221,196,58,0.12); color: var(--c-gold); }

.header-right { display: flex; align-items: center; gap: 10px; }

.online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  padding: 5px 10px;
  border-radius: 20px;
}
.online-dot {
  width: 7px; height: 7px;
  background: #3ddc6a;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(61,220,106,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(61,220,106,0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 9px 20px;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  text-decoration: none !important;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.35); filter: brightness(1.1); }
.btn:active { transform: translateY(0); }

.btn-login {
  background: var(--c-gold);
  color: #1a1a26;
}
.btn-signup {
  background: var(--c-red);
  color: #fff;
}
.btn-lg { padding: 14px 36px; font-size: 16px; border-radius: var(--radius-md); }
.btn-hero {
  background: var(--c-red);
  color: #fff;
  font-size: 18px;
  padding: 16px 44px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(205,25,53,0.45);
  animation: btn-pulse 2.5s infinite;
}
@keyframes btn-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(205,25,53,0.45); }
  50% { box-shadow: 0 4px 40px rgba(205,25,53,0.7); }
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
}
.burger-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 68px; left: 0; right: 0;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  padding: 16px 20px 20px;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin-bottom: 14px; }
.mobile-menu ul li a {
  display: block;
  color: var(--c-text);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu-buttons { display: flex; gap: 10px; }
.mobile-menu-buttons .btn { flex: 1; justify-content: center; }

/* ===================== HERO ===================== */
.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/vavada-banner.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(33,33,50,0.92) 40%, rgba(33,33,50,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-block;
  background: rgba(221,196,58,0.15);
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-content h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-content h1 span { color: var(--c-gold); }
.hero-content p {
  font-size: 17px;
  color: rgba(232,232,240,0.85);
  margin-bottom: 30px;
  line-height: 1.65;
}
.hero-bonus-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(205,25,53,0.18);
  border: 1px solid rgba(205,25,53,0.5);
  color: #ff6b7a;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 13px; color: var(--c-text-muted); }

/* ===================== BREADCRUMBS ===================== */
.breadcrumbs-wrap {
  background: var(--c-card2);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  font-size: 13px;
}
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li a { color: var(--c-text-muted); }
.breadcrumbs li a:hover { color: var(--c-gold); }
.breadcrumbs li:last-child span { color: var(--c-gold); }
.breadcrumbs .sep { color: var(--c-border); font-size: 10px; }

/* ===================== MAIN CONTENT AREA ===================== */
.main-content { flex: 1; padding: 40px 0 60px; }

.section-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
}

.section-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--c-gold);
  border-radius: 2px;
}

/* ===================== TOC ===================== */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--c-text);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.toc-item:hover {
  background: rgba(221,196,58,0.1);
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.toc-num {
  width: 24px; height: 24px;
  background: var(--c-gold);
  color: #1a1a26;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===================== JACKPOTS ===================== */
.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.jackpot-card {
  background: linear-gradient(135deg, #2e2a1a 0%, #1e1e2e 100%);
  border: 1px solid rgba(221,196,58,0.3);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(221,196,58,0.2);
}
.jackpot-icon { font-size: 32px; margin-bottom: 10px; }
.jackpot-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.jackpot-amount {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1.1;
}
.jackpot-currency { font-size: 14px; color: var(--c-text-muted); margin-top: 4px; }

/* ===================== MIRRORS TABLE ===================== */
.mirror-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--c-text-muted);
}
.mirror-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(61,220,106,0.12);
  border: 1px solid rgba(61,220,106,0.4);
  color: #3ddc6a;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.mirror-live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #3ddc6a;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 0 auto;
}
thead tr {
  background: rgba(221,196,58,0.1);
  border-bottom: 1px solid var(--c-border);
}
th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-gold);
}
td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,0.03); }
.status-ok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3ddc6a;
  font-weight: 700;
  font-size: 13px;
}
.status-ok::before { content: ''; width: 6px; height: 6px; background: #3ddc6a; border-radius: 50%; display: inline-block; }
.mirror-link { color: var(--c-gold); font-weight: 600; }
.mirror-link:hover { color: #f0d84a; }

/* ===================== CONTENT BLOCK ===================== */
.content-block h2 { font-size: 22px; font-weight: 800; color: #fff; margin: 28px 0 14px; }
.content-block h3 { font-size: 18px; font-weight: 700; color: var(--c-gold); margin: 22px 0 12px; }
.content-block h4 { font-size: 16px; font-weight: 700; color: var(--c-text); margin: 18px 0 10px; }
.content-block p { margin-bottom: 16px; color: var(--c-text); line-height: 1.7; }
.content-block ul, .content-block ol { padding-left: 22px; margin-bottom: 16px; }
.content-block ul li, .content-block ol li { margin-bottom: 8px; color: var(--c-text); line-height: 1.6; }
.content-block ul li::marker { color: var(--c-gold); }
.content-block ol li::marker { color: var(--c-gold); font-weight: 700; }
.content-block strong { color: #fff; font-weight: 700; }
.content-block em { font-style: italic; color: var(--c-text-muted); }
.content-block a { color: var(--c-gold); }
.content-block blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 14px 20px;
  background: rgba(221,196,58,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  color: var(--c-text);
  font-style: italic;
}
.content-block table { margin-bottom: 20px; }
.content-block table td, .content-block table th { border: 1px solid var(--c-border); }
.content-block hr { border: none; border-top: 1px solid var(--c-border); margin: 28px 0; }

/* ===================== FAQ ===================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--c-gold); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  text-align: left;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--c-gold); }
.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border: 2px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--c-gold);
  background: var(--c-gold);
  color: #1a1a26;
}
.faq-icon svg { width: 12px; height: 12px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 22px 18px;
  color: var(--c-text);
  font-size: 14px;
  line-height: 1.7;
}

/* ===================== REVIEWS ===================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.review-card {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: border-color var(--transition), transform var(--transition);
}
.review-card:hover { border-color: rgba(221,196,58,0.4); transform: translateY(-3px); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.review-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
  flex-shrink: 0;
}
.review-name { font-size: 15px; font-weight: 700; color: #fff; }
.review-stars { display: flex; gap: 2px; margin-top: 2px; }
.review-stars svg { width: 14px; height: 14px; fill: var(--c-gold); }
.review-text { font-size: 14px; color: var(--c-text); line-height: 1.65; }
.review-date { font-size: 12px; color: var(--c-text-muted); margin-top: 10px; }

.review-form-wrap { background: var(--c-card2); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 28px; }
.review-form-wrap h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--c-text-muted); }
.form-field input,
.form-field textarea {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--c-text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--c-gold); }
.form-field textarea { min-height: 100px; }
.form-success {
  display: none;
  background: rgba(61,220,106,0.12);
  border: 1px solid rgba(61,220,106,0.4);
  color: #3ddc6a;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}
.form-success.visible { display: block; }

/* ===================== AUTHOR ===================== */
.author-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.author-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-gold);
  flex-shrink: 0;
}
.author-info { flex: 1; }
.author-name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.author-role { font-size: 13px; color: var(--c-gold); font-weight: 600; margin-bottom: 12px; }
.author-bio { font-size: 14px; color: var(--c-text); line-height: 1.7; margin-bottom: 14px; }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 30px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.author-link:hover { background: rgba(221,196,58,0.12); border-color: var(--c-gold); color: var(--c-gold); }
.author-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 44px 0 20px;
}
.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-logo img { height: 38px; margin-bottom: 12px; }
.footer-desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.65; max-width: 200px; }
.footer-col-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--c-text-muted); margin-bottom: 14px; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 14px; color: var(--c-text); }
.footer-nav a:hover { color: var(--c-gold); }

.footer-divider { border: none; border-top: 1px solid var(--c-border); margin: 0 0 24px; }

.footer-logos { margin-bottom: 20px; }
.footer-logos-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-text-muted); margin-bottom: 10px; }
.footer-logos-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer-logo-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.footer-bottom a { color: var(--c-text-muted); }
.footer-bottom a:hover { color: var(--c-gold); }
.footer-legal { margin-top: 8px; color: #5a5a70; }

/* ===================== STICKY WIDGET ===================== */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(135deg, #1a0a10 0%, #2a0d15 100%);
  border-top: 2px solid var(--c-red);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(205,25,53,0.25);
}
.widget-text { font-size: 14px; font-weight: 700; color: #fff; }
.widget-text span { color: var(--c-gold); }
.widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 20px;
  padding: 0;
  line-height: 1;
  transition: color var(--transition);
  flex-shrink: 0;
}
.widget-close:hover { color: var(--c-text); }
.widget-cta { display: flex; align-items: center; gap: 10px; }

/* ===================== UNUSED STYLES (uniqueness) ===================== */
.wp-block-paragraph { display: block; }
.wp-block-heading { font-weight: inherit; }
.elementor-widget-container {}
.entry-content {}
.post-type-page {}
.page-template-default {}
.p1q7v { position: relative; }
.m3k9z { overflow: hidden; }
.r5j2w { display: inline; }
.n8b4x { visibility: visible; }
.c6f1y { pointer-events: auto; }
.l2p8t { user-select: none; }
.a7m5r {}
.d9s3e {}
.t4k1b {}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :first-child { grid-column: 1 / -1; }
}

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

  .hero-section { min-height: 420px; }
  .hero-content p { font-size: 15px; }

  .section-block { padding: 22px 16px; }
  .jackpot-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-links { justify-content: center; }

  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-desc { max-width: 100%; }

  .sticky-widget { flex-wrap: wrap; gap: 10px; }
  .widget-text { font-size: 13px; }
  .toc-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .header-inner { height: 60px; }
  .mobile-menu { top: 60px; }
  .online-badge { display: none; }
  .jackpot-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-hero { width: 100%; text-align: center; }
  .hero-bg { background-position: center top; background-size: auto 100%; }
  .toc-grid { grid-template-columns: 1fr; }
}
