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

:root {
  --ink: #06070a;
  --surface: #0e1016;
  --surface-2: #171a24;
  --paper: #f4f6fb;
  --neon-orange: #ff2d3d;
  --neon-purple: #8b5cf6;
  --neon-cyan: #22d3ee;
  --neon-glow: rgba(255, 45, 61, .45);

  --fs-12: .75rem;
  --fs-14: .875rem;
  --fs-16: 1rem;
  --fs-20: 1.25rem;
  --fs-26: 1.625rem;
  --fs-34: 2.125rem;
  --fs-44: 2.75rem;
  --fs-58: 3.625rem;
  --fs-76: 4.75rem;

  --sp-1: .5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-6: 3rem;
  --sp-8: 4rem;
  --sp-12: 6rem;
  --sp-16: 8rem;

  --display: 'Anton', 'Rajdhani', sans-serif;
  --body: 'Rajdhani', 'Inter', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-weight: 500;
  color: var(--paper);
  background:
    radial-gradient(1200px 800px at 15% -10%, rgba(139,92,246,.18), transparent 60%),
    radial-gradient(1000px 700px at 100% 0%, rgba(34,211,238,.14), transparent 55%),
    repeating-linear-gradient(115deg, transparent 0 120px, rgba(255,45,61,.05) 120px 122px, transparent 122px 240px),
    var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
ul, li { list-style: none; }
a { color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
  border-radius: 2px;
  box-shadow: 0 0 0 4px rgba(34,211,238,.3);
}

.skip-link {
  position: absolute; left: -999px; top: var(--sp-2);
  background: var(--neon-orange); color: var(--ink);
  padding: var(--sp-1) var(--sp-2); z-index: 100;
  font-family: var(--body); font-weight: 700; font-size: var(--fs-14);
}
.skip-link:focus { left: var(--sp-2); }


/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-3) var(--sp-6);
  background: rgba(6, 7, 10, .92);
  border-bottom: 1px solid rgba(255,45,61,.25);
}
.brand { display: block; }
.brand img { height: 88px; display: block; filter: drop-shadow(0 0 12px rgba(255,45,61,.5)); }

#home, #about, #work, #albums, #contact { scroll-margin-top: 150px; }

.nav { display: flex; gap: var(--sp-6); align-items: center; }
.nav a {
  font-family: var(--mono); font-weight: 700;
  font-size: var(--fs-12); letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--paper); opacity: .65;
  transition: opacity .2s, color .2s, transform .2s;
  padding: var(--sp-1) 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: linear-gradient(90deg, var(--neon-orange), var(--neon-purple));
  box-shadow: 0 0 10px var(--neon-glow);
  transform: scaleX(0); transition: transform .3s var(--ease-out-expo);
}
.nav a:hover, .nav a.active { opacity: 1; color: #fff; transform: translateY(-1px); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: var(--sp-1); }
.hamburger span { width: 22px; height: 2px; background: var(--paper); transition: transform .3s, opacity .3s; }

/* HERO — full-bleed background photo, centered, HUD text overlaid on top */
.hero {
  position: relative; width: 100%; height: 88vh; min-height: 560px; max-height: 880px;
  overflow: hidden;
}
.hero-frame {
  position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden;
  background: var(--surface);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: blur(16px) saturate(1.2) brightness(.85);
  transform: scale(1.06); opacity: 0; transition: opacity .9s ease;
}
.hero-slide.active { opacity: 1; }
.hero-frame.focusing img { animation: rackFocus 1s var(--ease-out-expo) forwards; }
.hero-frame.focused img { filter: saturate(1.1) contrast(1.05); transform: scale(1); }
@keyframes rackFocus { to { filter: blur(0) saturate(1.1) contrast(1.05) brightness(1); transform: scale(1); } }

.hero-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,7,10,.1) 0%, rgba(6,7,10,.25) 50%, rgba(6,7,10,.88) 100%);
}

.hud-corner {
  position: absolute; width: 34px; height: 34px;
  border: 2px solid var(--neon-orange);
  box-shadow: 0 0 12px var(--neon-glow);
  opacity: .9; z-index: 2;
  transition: inset .8s var(--ease-out-expo), width .8s var(--ease-out-expo), height .8s var(--ease-out-expo);
}
.hud-corner.tl { top: var(--sp-3); left: var(--sp-3); border-right: none; border-bottom: none; }
.hud-corner.tr { top: var(--sp-3); right: var(--sp-3); border-left: none; border-bottom: none; }
.hud-corner.bl { bottom: var(--sp-3); left: var(--sp-3); border-right: none; border-top: none; }
.hud-corner.br { bottom: var(--sp-3); right: var(--sp-3); border-left: none; border-top: none; }
.hero-frame.focusing .hud-corner { width: 52px; height: 52px; border-color: var(--neon-cyan); box-shadow: 0 0 18px rgba(34,211,238,.6); }
.hero-frame.focused .hud-corner { width: 34px; height: 34px; }

.frame-no {
  position: absolute; bottom: var(--sp-2); right: var(--sp-2); z-index: 2;
  font-family: var(--mono); font-weight: 700; font-size: var(--fs-12);
  color: var(--neon-cyan); background: rgba(6,7,10,.8);
  padding: 3px 10px; letter-spacing: 2px; border-radius: 4px;
  border: 1px solid rgba(34,211,238,.4); text-shadow: 0 0 8px rgba(34,211,238,.6);
}

.hero-pause {
  position: absolute; bottom: var(--sp-2); left: var(--sp-2); z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,45,61,.5); background: rgba(6,7,10,.75);
  color: var(--paper); cursor: pointer; transition: all .2s;
}
.hero-pause:hover, .hero-pause:focus-visible { border-color: var(--neon-orange); box-shadow: 0 0 14px var(--neon-glow); }

.hero-copy {
  position: absolute; left: 50%; bottom: var(--sp-12); transform: translateX(-50%); z-index: 3;
  width: min(900px, calc(100% - var(--sp-8))); text-align: center;
}
.hero-tag {
  display: inline-block; font-family: var(--mono); font-weight: 700; font-size: var(--fs-12);
  letter-spacing: 3px; color: var(--neon-orange); margin-bottom: var(--sp-2);
  text-shadow: 0 0 12px var(--neon-glow);
}

.hero-copy h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.5rem, 6vw, var(--fs-76));
  line-height: 1; letter-spacing: -.02em;
  margin-bottom: var(--sp-3);
  text-wrap: balance; overflow-wrap: break-word;
  color: #fff;
  text-shadow: 0 0 22px rgba(255,45,61,.45), 0 0 48px rgba(139,92,246,.2);
}

.hero-sub { font-size: var(--fs-20); color: rgba(244,246,251,.75); max-width: 46ch; margin: 0 auto var(--sp-4); }

/* stat ticker marquee */
.stat-ticker {
  overflow: hidden; border-top: 1px solid rgba(255,45,61,.25); border-bottom: 1px solid rgba(255,45,61,.25);
  padding: var(--sp-1) 0; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  max-width: 100%;
}
.stat-ticker__track {
  display: flex; gap: var(--sp-6); white-space: nowrap; width: max-content;
  font-family: var(--mono); font-weight: 700; font-size: var(--fs-14);
  color: var(--neon-cyan); letter-spacing: 2px;
  animation: ticker 14s linear infinite;
}
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .stat-ticker__track { animation: none; } }

/* ABOUT */
.about {
  display: grid; grid-template-columns: .8fr 1fr; gap: var(--sp-8); align-items: center;
  max-width: 1200px; margin: 0 auto; padding: var(--sp-12) var(--sp-6);
}
.about-image {
  position: relative; height: 480px; border-radius: 18px; overflow: hidden;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(139,92,246,.3), 0 24px 60px rgba(0,0,0,.5);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.ovr-badge {
  position: absolute; top: var(--sp-3); right: var(--sp-3);
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 700; font-size: .7rem; line-height: 1.1; text-align: center;
  background: radial-gradient(circle at 30% 30%, var(--neon-purple), #4c1d95);
  box-shadow: 0 0 24px rgba(139,92,246,.6), inset 0 0 0 2px rgba(255,255,255,.2);
  animation: floatBadge 3.4s ease-in-out infinite;
}
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (prefers-reduced-motion: reduce) { .ovr-badge { animation: none; } }

.eyebrow {
  display: block; font-family: var(--mono); font-weight: 700; font-size: var(--fs-12);
  letter-spacing: 3px; text-transform: uppercase; color: var(--neon-orange); margin-bottom: var(--sp-2);
}
.about-text h2 { font-family: var(--display); font-weight: 400; font-size: var(--fs-44); margin-bottom: var(--sp-3); text-transform: uppercase; }
.about-text p { font-size: var(--fs-16); color: rgba(244,246,251,.8); max-width: 46ch; margin-bottom: var(--sp-2); }

.badge-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-3); }
.badge {
  font-family: var(--mono); font-weight: 700; font-size: var(--fs-12);
  padding: var(--sp-1) var(--sp-2); border-radius: 999px;
  border: 1px solid rgba(255,45,61,.4); background: rgba(255,45,61,.08);
  transition: transform .2s, box-shadow .2s;
}
.badge:hover { transform: translateY(-2px); box-shadow: 0 6px 18px var(--neon-glow); }

/* SECTION HEAD */
.section-head { max-width: 1440px; margin: 0 auto; padding: 0 var(--sp-6) var(--sp-4); }
.section-head h2 { font-family: var(--display); font-weight: 400; font-size: var(--fs-34); text-transform: uppercase; }

/* WORK — highlight reel */
.work { padding: var(--sp-12) 0; }
.filmstrip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--sp-2);
  padding: 0 var(--sp-6) var(--sp-4); max-width: 1440px; margin: 0 auto;
}
.filmstrip figure {
  position: relative; background: var(--surface); border-radius: 10px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06);
  opacity: 0; transform: translateY(16px);
  animation: revealCard .6s var(--ease-out-expo) forwards;
}
.filmstrip figure:nth-child(1) { animation-delay: .05s; }
.filmstrip figure:nth-child(2) { animation-delay: .12s; }
.filmstrip figure:nth-child(3) { animation-delay: .19s; }
.filmstrip figure:nth-child(4) { animation-delay: .26s; }
.filmstrip figure:nth-child(5) { animation-delay: .33s; }
.filmstrip figure:nth-child(6) { animation-delay: .4s; }
@keyframes revealCard { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .filmstrip figure { animation: none; opacity: 1; transform: none; } }
.filmstrip img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .5s var(--ease-out-expo), filter .5s; }
.filmstrip figure:hover img { transform: scale(1.08); filter: saturate(1.2); }
.filmstrip figure::after {
  content: ""; position: absolute; inset: 0; border-radius: 10px;
  box-shadow: inset 0 0 0 0 var(--neon-orange); transition: box-shadow .3s;
  pointer-events: none;
}
.filmstrip figure:hover::after { box-shadow: inset 0 0 0 2px var(--neon-orange), 0 0 24px var(--neon-glow); }
.filmstrip figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: flex-end; padding: var(--sp-1);
}
.filmstrip figcaption .frame-no { position: static; background: rgba(6,7,10,.85); }

/* ALBUMS */
.albums, .albums-page { padding: var(--sp-12) 0; }
.album-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 420px));
  gap: var(--sp-4); max-width: 1440px; margin: 0 auto; padding: 0 var(--sp-6);
}
/* Home teaser always shows exactly 3 in a single row (never wraps to 2+1 like auto-fit would on mid-width screens) */
.albums .album-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.album-card {
  display: flex; flex-direction: column; text-align: left; background: var(--surface);
  border: 1px solid rgba(255,255,255,.06); border-radius: 14px; overflow: hidden;
  padding: 0; font: inherit; color: inherit; cursor: pointer;
  transition: transform .3s var(--ease-out-expo), box-shadow .3s, border-color .3s;
}
.album-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 30px rgba(255,45,61,.2);
  border-color: rgba(255,45,61,.4);
}
.album-card img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s var(--ease-out-expo); }
.album-card:hover img { transform: scale(1.06); }
.album-card h3 { font-family: var(--display); font-weight: 400; font-size: var(--fs-20); text-transform: uppercase; margin: var(--sp-2) var(--sp-2) 0; }
.album-card .date { font-family: var(--mono); font-weight: 700; font-size: var(--fs-12); color: var(--neon-cyan); letter-spacing: 1px; margin: 0 var(--sp-2); }
.album-card p { font-size: var(--fs-14); color: rgba(244,246,251,.6); margin: var(--sp-1) var(--sp-2) var(--sp-2); }

.album-state { font-family: var(--mono); font-size: var(--fs-14); color: rgba(244,246,251,.6); grid-column: 1/-1; padding: var(--sp-4) 0; }
.album-state__retry {
  font-family: var(--mono); font-weight: 700; font-size: var(--fs-12); letter-spacing: .5px;
  color: var(--neon-orange); background: none; border: 1px solid var(--neon-orange);
  padding: var(--sp-1) var(--sp-2); margin-top: var(--sp-2); cursor: pointer; border-radius: 6px;
  transition: all .2s;
}
.album-state__retry:hover { background: var(--neon-orange); color: var(--ink); box-shadow: 0 0 16px var(--neon-glow); }

/* SKELETON LOADING */
@keyframes skeletonPulse { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }
.skeleton-block, .skeleton-line, .skeleton-square, .hero-frame.loading, .about-image.loading {
  background: linear-gradient(100deg, rgba(255,255,255,.04) 30%, rgba(255,45,61,.12) 50%, rgba(255,255,255,.04) 70%);
  background-size: 200% 100%; animation: skeletonPulse 1.6s ease-in-out infinite; border-radius: 10px;
}
@media (prefers-reduced-motion: reduce) {
  .skeleton-block, .skeleton-line, .skeleton-square, .hero-frame.loading, .about-image.loading {
    animation: none; background: rgba(255,255,255,.06);
  }
}
.skeleton-square { aspect-ratio: 1/1; width: 100%; }
.skeleton-card { display: block; }
.skeleton-block { height: 240px; margin-bottom: var(--sp-2); }
.skeleton-line { height: 12px; border-radius: 4px; margin-bottom: var(--sp-1); }
.skeleton-line.short { width: 40%; }
.skeleton-line.long { width: 75%; }

.albums-more { max-width: 1440px; margin: 0 auto; padding: var(--sp-3) var(--sp-6) 0; }
.albums-more a { font-family: var(--mono); font-weight: 700; font-size: var(--fs-14); color: var(--neon-cyan); letter-spacing: .5px; }
.albums-more a:hover { text-shadow: 0 0 8px rgba(34,211,238,.6); }

/* BACK TO TOP */
.back-to-top {
  position: fixed; right: var(--sp-4); bottom: var(--sp-4); width: 46px; height: 46px;
  border-radius: 50%; border: none;
  background: linear-gradient(135deg, var(--neon-orange), var(--neon-purple));
  color: #fff; font-size: var(--fs-20); line-height: 1; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s, box-shadow .3s;
  box-shadow: 0 8px 24px rgba(0,0,0,.4); z-index: 50;
}
.back-to-top:hover { box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 24px var(--neon-glow); }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* GALLERY MODAL + LIGHTBOX */
.gallery-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: var(--sp-4); }
.gallery-modal[hidden] { display: none; }
.gallery-modal__backdrop { position: absolute; inset: 0; background: rgba(6,7,10,.85); backdrop-filter: blur(4px); }
.gallery-modal__panel {
  position: relative; width: min(1100px, 100%); max-height: min(85vh, 900px);
  display: flex; flex-direction: column; background: var(--surface-2);
  border-radius: 16px; box-shadow: 0 0 0 1px rgba(255,45,61,.3), 0 30px 90px rgba(0,0,0,.6);
  overflow: hidden;
}
.gallery-modal__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid rgba(255,255,255,.08);
}
.gallery-modal__head h2 { font-family: var(--display); font-weight: 400; font-size: var(--fs-20); text-transform: uppercase; }
.gallery-modal__close { background: none; border: none; font-size: var(--fs-26); line-height: 1; cursor: pointer; color: var(--paper); padding: var(--sp-1); }
.gallery-modal__body { padding: var(--sp-4); overflow-y: auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: var(--sp-1); }
.gallery-grid__item { border: none; padding: 0; cursor: pointer; background: var(--ink); border-radius: 6px; overflow: hidden; }
.gallery-grid__item img { width: 100%; height: 140px; object-fit: cover; display: block; transition: transform .3s, opacity .2s; }
.gallery-grid__item:hover img { transform: scale(1.08); opacity: .9; }

.lightbox { position: fixed; inset: 0; z-index: 110; background: rgba(3,4,6,.96); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(92vw, 1600px); max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: none; border: none; color: var(--paper);
  font-size: var(--fs-34); cursor: pointer; padding: var(--sp-2); line-height: 1; transition: color .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { color: var(--neon-orange); }
.lightbox__close { top: var(--sp-2); right: var(--sp-3); }
.lightbox__nav--prev { left: var(--sp-2); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: var(--sp-2); top: 50%; transform: translateY(-50%); }

/* CONTACT */
.contact {
  background: radial-gradient(ellipse at center, var(--surface) 0%, var(--ink) 100%);
  color: var(--paper); text-align: center; padding: var(--sp-16) var(--sp-4);
}
.contact-frame { position: relative; max-width: 640px; margin: 0 auto; padding: var(--sp-8) var(--sp-4); }
.contact-frame .hud-corner { width: 22px; height: 22px; opacity: .7; }
.contact-frame-no {
  position: static; display: inline-block; margin-bottom: var(--sp-3);
  color: var(--neon-cyan); background: none; padding: 0; letter-spacing: 3px;
}
.contact h2 { font-family: var(--display); font-weight: 400; font-size: var(--fs-34); margin-bottom: var(--sp-2); text-transform: uppercase; }
.contact-copy { max-width: 46ch; margin: 0 auto var(--sp-3); color: rgba(244,246,251,.8); }
.contact-email { margin-bottom: var(--sp-4); }
.contact-email a {
  font-family: var(--mono); font-weight: 700; font-size: var(--fs-20);
  color: var(--neon-orange); letter-spacing: .5px; transition: color .2s;
  white-space: nowrap;
}
.contact-email a:hover { color: var(--neon-cyan); text-shadow: 0 0 12px rgba(34,211,238,.6); }
.social { display: flex; justify-content: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.social a { color: var(--paper); transition: color .2s, transform .2s; }
.social a:hover { color: var(--neon-orange); transform: translateY(-2px); }
.fine-print { font-family: var(--mono); font-size: var(--fs-12); color: rgba(244,246,251,.5); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { height: 68vh; min-height: 460px; }
  .hero-copy { bottom: var(--sp-8); width: min(700px, calc(100% - var(--sp-6))); }
  .hero-copy h1 { font-size: var(--fs-44); }
  .about { grid-template-columns: 1fr; padding: var(--sp-8) var(--sp-4); }
  .about-image { height: 360px; }
  .about-text h2, .contact h2 { font-size: var(--fs-44); }
  .album-grid { padding: 0 var(--sp-4); }
  .albums .album-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head { padding: 0 var(--sp-4) var(--sp-3); }
  .filmstrip { grid-template-columns: repeat(3, 1fr); padding: 0 var(--sp-4) var(--sp-4); }
}

@media (max-width: 640px) {
  .site-header { padding: var(--sp-2) var(--sp-4); }
  .hamburger { display: flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--surface); max-height: 0; overflow: hidden; transition: max-height .3s ease;
    border-bottom: 1px solid rgba(255,45,61,.25);
  }
  .nav.open { max-height: 260px; }
  .nav a { padding: var(--sp-2) var(--sp-4); width: 100%; }
  .hero { height: 58vh; min-height: 380px; }
  .hero-copy { bottom: var(--sp-6); width: calc(100% - var(--sp-4)); }
  .hero-copy h1 { font-size: var(--fs-34); }
  .about-image { height: 280px; }
  .about-text h2, .contact h2 { font-size: var(--fs-34); }
  .albums .album-grid { grid-template-columns: 1fr; }
  .filmstrip { grid-template-columns: repeat(3, 1fr); }
}
