/* ============================================================
   ReelsByCode — Styles
   Dark theme with Red & White accent palette
   ============================================================ */

/* ---------- RESET & CUSTOM PROPERTIES ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette — Red & White on dark */
  --bg:          #0a0a0a;
  --bg-card:     rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --surface:     #111111;
  --border:      rgba(255, 255, 255, 0.08);
  --border-hover: rgba(220, 38, 38, 0.4);

  --red:         #dc2626;
  --red-light:   #ef4444;
  --red-bright:  #f87171;
  --white:       #ffffff;
  --red-glow:    rgba(220, 38, 38, 0.2);
  --red-glow-strong: rgba(220, 38, 38, 0.35);

  --text:        #f1f1f1;
  --text-muted:  #a0a0a0;
  --text-dim:    #666666;

  /* Typography */
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container:  1280px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration:  0.4s;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--text-dim);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 24px var(--red-glow);
}
.btn--primary:hover {
  background: var(--red-light);
  box-shadow: 0 0 40px var(--red-glow-strong);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 20px var(--red-glow);
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  margin-bottom: 2.5rem;
  text-align: center;
}
.section-header__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--red-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-header__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  transition: background var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__logo-img {
  height: 36px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--duration) var(--ease-out);
}
.nav__link:hover {
  color: var(--white);
}

.nav__link--subscribe {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
}
.nav__link--subscribe:hover {
  background: var(--red-light);
  color: var(--white);
  box-shadow: 0 0 20px var(--red-glow);
}

.nav__yt-icon {
  width: 16px;
  height: 16px;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav__burger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(220, 38, 38, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 1.5rem;
}

.hero__logo {
  width: clamp(200px, 40vw, 340px);
  height: auto;
  margin: 0 auto 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
  filter: drop-shadow(0 0 40px var(--red-glow));
}

.hero__tag {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--red-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.35s forwards;
}

.hero__title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.45s forwards;
}

.hero__title-accent {
  color: var(--red);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.55s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}
.hero__stat {
  text-align: center;
}
.hero__stat-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.15rem;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}
.hero__scroll span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--red), transparent);
  animation: scrollLine 2s var(--ease-out) infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FEATURED VIDEO
   ============================================================ */
.featured {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.featured__player {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.featured__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}
.featured__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.featured__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-dim);
  font-size: 0.875rem;
}

/* Featured play overlay — click to start */
.featured__play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background 0.3s var(--ease-out);
}
.featured__play-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}
.featured__play-overlay:hover .video-card__play-btn {
  transform: scale(1.1);
}

.featured__info {
  padding: 0.5rem 0;
}
.featured__info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.featured__info p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.featured__info-meta {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ============================================================
   VIDEO GALLERY
   ============================================================ */
.videos {
  padding: 0 0 var(--section-py);
  background: var(--bg);
}

.gallery {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.gallery__filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gallery__count {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.gallery__view-toggle {
  display: flex;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 3px;
}

.gallery__view-btn {
  background: none;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  display: flex;
  align-items: center;
}
.gallery__view-btn.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.gallery__view-btn:hover:not(.is-active) {
  color: var(--text-muted);
}

.videos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.videos__grid.view-list {
  grid-template-columns: 1fr;
}

.videos__more {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Video Card */
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--duration) var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.video-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 16px var(--red-glow);
}

/* List view card */
.view-list .video-card {
  display: grid;
  grid-template-columns: 280px 1fr;
}
.view-list .video-card:hover {
  transform: translateX(4px);
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1a1a1a;
}
.view-list .video-card__thumb {
  border-radius: 10px 0 0 10px;
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration) var(--ease-out);
}
.video-card:hover .video-card__thumb img {
  transform: scale(1.05);
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.video-card:hover .video-card__play {
  opacity: 1;
}
.video-card__play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px var(--red-glow-strong);
  transition: transform 0.2s var(--ease-out);
}
.video-card:hover .video-card__play-btn {
  transform: scale(1.1);
}
.video-card__play-btn svg {
  margin-left: 3px;
}

/* Hover preview — muted autoplay iframe over thumbnail */
.video-card__preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: previewFadeIn 0.4s var(--ease-out) 0.3s forwards;
}
@keyframes previewFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Inline player — plays with sound inside the card */
.video-card__inline-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 5;
}

/* Maximize button — opens YouTube in new tab */
.video-card__maximize {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 6;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.video-card__maximize:hover {
  background: var(--red);
  transform: scale(1.1);
}

/* Close player button */
.video-card__close-player {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 6;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.video-card__close-player:hover {
  background: var(--red);
}

.video-card__duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.85);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  color: #fff;
}

.video-card__body {
  padding: 1rem 1.125rem 1.125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-card__meta {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.video-card__page-link {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.2s var(--ease-out);
  flex-shrink: 0;
}
.video-card__page-link:hover {
  color: var(--red-light);
  background: rgba(220, 38, 38, 0.1);
}

/* Skeleton loading */
.video-card--skeleton .video-card__thumb {
  background: linear-gradient(90deg, #1a1a1a 25%, rgba(255,255,255,0.04) 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-line {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, #1a1a1a 25%, rgba(255,255,255,0.04) 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-line--title {
  width: 80%;
  margin-bottom: 0.75rem;
}
.skeleton-line--meta {
  width: 50%;
  height: 10px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   LIGHTBOX — Inline video player overlay
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__inner {
  position: relative;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  transform: scale(0.92);
  transition: transform 0.35s var(--ease-out);
}
.lightbox.is-open .lightbox__inner {
  transform: scale(1);
}

.lightbox__inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox__close:hover {
  background: var(--red);
}

.lightbox__title {
  position: absolute;
  bottom: -36px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-py) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about__text .section-header {
  text-align: left;
}

.about__desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about__desc:last-of-type {
  margin-bottom: 2rem;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Feature Card */
.feature-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.25rem;
  padding: 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease-out);
}
.feature-card:hover {
  border-color: var(--border-hover);
  background: rgba(220, 38, 38, 0.03);
}

.feature-card__icon {
  grid-row: 1 / -1;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(220, 38, 38, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
}

.feature-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  align-self: end;
  color: var(--white);
}

.feature-card__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 2.5rem 0;
  background: var(--bg);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__logo-img {
  height: 28px;
  width: auto;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}
.footer__links a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer__links a:hover {
  color: var(--red-light);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.25rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    border-left: 1px solid var(--border);
  }
  .nav__links.is-open {
    transform: translateX(0);
  }

  .nav__burger {
    display: flex;
  }

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

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

  .view-list .video-card {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    gap: 1.5rem;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .gallery__filter {
    justify-content: center;
  }

  .lightbox__inner {
    width: 95vw;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
