/* =========================
   THEME / TOKENS
   ========================= */

:root {
  --bg-0: rgba(0, 0, 0, 0.95);
  --bg-1: rgba(2, 6, 23, 0.75);
  --bg-2: rgba(15, 23, 42, 0.7);

  --text: #e5e7eb;
  --text-strong: #f9fafb;
  --text-soft: #cbd5f5;
  --muted: #9ca3af;
  --muted-2: #6b7280;

  --neon: #22d3ee;
  --blue: #0ea5e9;
  --indigo: #6366f1;
  --purple: #a855f7;

  --shadow-strong: rgba(15, 23, 42, 0.9);
  --border-neon: rgba(56, 189, 248, 0.45);
  --border-soft: rgba(148, 163, 184, 0.4);

  --r-xl: 1.75rem;
  --r-lg: 1.5rem;
  --r-md: 1.25rem;
  --r-pill: 999px;
}

/* =========================
   BASE
   ========================= */

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: transparent;
  color: var(--text);
  min-height: 100vh;
}

/* Švelnus su minimaliu pakilimu */
body {
    animation: gentleRise 0.35s ease;
}

@keyframes gentleRise {
    from {
        opacity: 0.95;
        transform: translateY(3px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pagerina navigacijos mygtukų hover efektą */
.navbar-nav .nav-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pagerina kortelių hover efektą */
.glass-card, .product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* =========================
   FIXED VIDEO BACKGROUND - RYŠKESNIS
   ========================= */

.bg-video {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  opacity: 0;
  animation: bgFadeIn 0.8s ease forwards;
}

.bg-video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PAGYRINDINIS OVERLAY - SUMAŽINTAS TAMSUMAS */
.bg-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(2, 6, 23, 0.35), rgba(2, 6, 23, 0.55));
  z-index: 1;
}

@keyframes bgFadeIn { 
  to { opacity: 1; } 
}

/* VISAS TURINYS VIRŠ VIDEO */
.site-content {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* =========================
   VISOS SEKCIJOS - PERMATOMOS SU ŠVELNIU OVERLAY
   ========================= */

section, 
.hero-section,
.bg-gradient-dark,
.bg-gradient-deep,
.parallax-section,
#hero,
#about,
#features,
#gallery,
#rules,
#join,
#team,
#download {
  background: transparent !important;
}

/* ŠVELNUS OVERLAY ANT KIEKVIENOS SEKCIJOS */
section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(2, 6, 23, 0.25), rgba(2, 6, 23, 0.45));
  pointer-events: none;
  z-index: -1;
}

section {
  position: relative;
  z-index: 2;
}

/* =========================
   UTILITIES
   ========================= */

.text-neon { color: #38bdf8; }
.text-gaming { color: var(--text-strong); }

.bg-neon-pill {
  background: linear-gradient(135deg, var(--neon), var(--indigo));
  color: #0b1120;
}

.bg-neon-soft {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(129, 140, 248, 0.25));
}

.border-neon { border-color: var(--border-neon) !important; }
.bg-black-900 { background: rgba(15, 23, 42, 0.85); }

.tracking-wide {
  letter-spacing: 0.1em;
}

/* =========================
   NAVBAR - FIXED SU BLUR
   ========================= */

.neon-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid var(--border-neon);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.95), 0 0 26px rgba(56, 189, 248, 0.4);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .neon-nav { background: rgba(15, 23, 42, 0.95); }
}

/* Scroll offset - kad navbar neuždengtų sekcijų */
section[id] {
  scroll-margin-top: 90px;
}

.brand-badge {
  width: 18px;
  height: 18px;
  border-radius: var(--r-pill);
  background: radial-gradient(circle at 30% 30%, var(--purple), var(--neon) 45%, var(--blue) 80%);
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.8);
}

.navbar-nav .nav-link {
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-pill);
  transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--neon), var(--indigo));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--text-strong);
  background: radial-gradient(circle at top, rgba(34, 211, 238, 0.18), rgba(15, 23, 42, 0.9));
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.55);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after { transform: scaleX(1); }

.navbar .btn-neon { box-shadow: 0 0 26px rgba(56, 189, 248, 0.9); }
.navbar .btn-neon:hover { box-shadow: 0 0 32px rgba(59, 130, 246, 1); }

/* =========================
   HERO - BE BACKGROUNDO, RYŠKESNI OVERLAY'AI
   ========================= */

.hero-section {
  position: relative;
  overflow: hidden;
  background: transparent !important;
}

/* MĖLYNI / VIOLETINIAI GRADIENTAI - PERMATOMESNI */
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 0, rgba(56, 189, 248, 0.15), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(147, 51, 234, 0.15), transparent 55%);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

/* LINIJŲ PATTERN - PERMATOMESNIS */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.35) 0,
    rgba(15, 23, 42, 0.35) 1px,
    transparent 1px,
    transparent 7px
  );
  mix-blend-mode: screen;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 3;
  padding-top: 80px;
}

.text-glow {
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.55), 0 0 36px rgba(129, 140, 248, 0.5);
}

.gradient-text {
  background: linear-gradient(120deg, var(--neon), var(--purple), var(--indigo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-muted-hero { color: var(--text); }

.hero-stats .stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-2);
}

.hero-stats .stat-value {
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-visual {
  max-width: 480px;
  margin-inline: auto;
}

.hero-image-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.hero-main-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.65));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 189, 248, 0.4);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .hero-image-overlay { background: rgba(15, 23, 42, 0.9); }
}

.hero-thumb {
  position: absolute;
  width: 130px;
  border-radius: var(--r-md);
}

.hero-thumb-top { top: -10px; right: -10px; }
.hero-thumb-bottom { bottom: -10px; left: -10px; }

.hero-thumb img {
  height: 110px;
  width: 100%;
  object-fit: cover;
}

/* =========================
   ORBITS
   ========================= */

.neon-orbit {
  position: absolute;
  border-radius: var(--r-pill);
  border: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
  animation: spinOrbit 18s linear infinite;
}

.neon-orbit-lg {
  width: 115%;
  height: 115%;
  top: -7%;
  left: -7%;
}

.neon-orbit-sm {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  animation-duration: 26s;
  animation-direction: reverse;
}

@keyframes spinOrbit { to { transform: rotate(360deg); } }

/* =========================
   GLASS / CARDS - PERMATOMESNI
   ========================= */

.glass-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 80px var(--shadow-strong);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .glass-card { background: rgba(15, 23, 42, 0.9); }
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 70px rgba(59, 130, 246, 0.55);
  border-color: rgba(56, 189, 248, 0.8);
}

.glass-card:hover::before { opacity: 1; }

.glass-card-sm {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  border: 1px solid rgba(75, 85, 99, 0.85);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
  padding: 0.5rem;
}

.glass-pill {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  border: 1px solid rgba(75, 85, 99, 0.9);
  padding: 0.35rem 0.9rem;
}

/* =========================
   BUTTONS
   ========================= */

.btn-neon {
  background: linear-gradient(120deg, var(--neon), var(--indigo));
  border: none;
  color: #0b1120;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.7);
  position: relative;
  overflow: hidden;
}

.btn-neon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.3), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.btn-neon:hover::before {
  opacity: 1;
  transform: translate3d(10%, 10%, 0);
}

.btn-neon:hover,
.btn-neon:focus {
  color: var(--bg-1);
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.95);
}

.btn-outline-neon {
  border-radius: var(--r-pill);
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(120deg, var(--neon), var(--indigo)) 1;
  background: transparent;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-outline-neon:hover {
  background: linear-gradient(120deg, rgba(34, 211, 238, 0.1), rgba(99, 102, 241, 0.15));
  color: var(--text);
}

.btn-ghost-neon {
  border-radius: var(--r-pill);
  border: 1px dashed rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.7);
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-ghost-neon:hover {
  border-style: solid;
  border-color: rgba(56, 189, 248, 0.8);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.7);
}

/* =========================
   SECTION BASE
   ========================= */

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  position: relative;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.section-title { font-weight: 700; }

/* =========================
   ABOUT
   ========================= */

.about-gallery { position: relative; }

.about-gallery .image-zoom-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
}

.about-gallery img { transition: transform 0.6s ease; }

.about-gallery .image-zoom-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-zoom-wrap:hover img { transform: scale(1.07); }
.image-zoom-wrap:hover::before { opacity: 1; }

.img-overlay-text {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  color: var(--text);
  font-size: 0.8rem;
}

.small-overlay {
  bottom: 1.35rem;
  font-size: 0.75rem;
  padding: 0.15rem 0.8rem;
  border-radius: var(--r-pill);
  background: rgba(15, 23, 42, 0.8);
}

.mini-feature .icon-wrap {
  width: 26px;
  height: 26px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.5), rgba(15, 23, 42, 1));
  color: var(--text);
  font-size: 0.9rem;
}

.about-thumb-stack {
  position: absolute;
  right: -2.2rem;
  top: 20%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.about-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px) { .about-thumb-stack { display: none; } }
.about-thumbs-holder { display: flex; flex-direction: column; }

/* =========================
   FEATURES
   ========================= */

.feature-card { transform-origin: center; }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.35), rgba(15, 23, 42, 1));
  color: var(--text);
  font-size: 1.2rem;
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.6);
}

@media (min-width: 992px) {
  .feature-card:hover { transform: translateY(-8px) scale(1.03) rotate3d(1, -1, 0, 0.8deg); }
}

/* =========================
   PARALLAX
   ========================= */

.parallax-section { 
  position: relative; 
  overflow: hidden; 
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.12;
  transform: translate3d(0, 0, 0);
  animation: parallaxFloat 26s linear infinite alternate;
}

.parallax-bg-1 {
  background-image:
    radial-gradient(circle at top, rgba(56, 189, 248, 0.25), transparent 55%),
    radial-gradient(circle at bottom, rgba(147, 51, 234, 0.25), transparent 55%);
}

.parallax-bg-2 {
  background-image:
    radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.3), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(129, 140, 248, 0.3), transparent 60%);
}

@keyframes parallaxFloat {
  0% { transform: translate3d(0, -10px, 0); }
  100% { transform: translate3d(0, 10px, 0); }
}

/* =========================
   GALLERY
   ========================= */

.gallery-grid { perspective: 1200px; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: rgba(15, 23, 42, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0.75rem;
  background: linear-gradient(180deg, transparent 0, rgba(15, 23, 42, 0.85) 100%);
  color: var(--text);
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-size: 0.75rem;
}

@media (min-width: 992px) {
  .gallery-item:hover img {
    transform: scale(1.12) rotate3d(1, -1, 0, 3deg);
    filter: blur(1px) brightness(1.05);
  }
}

.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }

/* =========================
   RULES
   ========================= */

.rule-card { position: relative; }

.rule-number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 12px rgba(96, 165, 250, 0.7);
}

.rule-card:hover { transform: translateY(-4px) scale(1.01); }

/* =========================
   JOIN STEPS
   ========================= */

.join-steps .step-card { min-height: 180px; }

.step-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(34, 211, 238, 0.45), rgba(15, 23, 42, 0.95));
  color: var(--text);
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.8);
  margin-bottom: 1rem;
}

.step-arrow .arrow-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), var(--purple));
  border-radius: var(--r-pill);
  position: relative;
}

.step-arrow .arrow-line::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--purple);
  border-top: 2px solid var(--neon);
  transform: translateY(-50%) rotate(45deg);
}

/* =========================
   TEAM
   ========================= */

.team-card { transition: transform 0.35s ease, box-shadow 0.35s ease; }

.team-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.7);
}

.team-avatar-wrap {
  width: 86px;
  height: 86px;
  border-radius: var(--r-pill);
  padding: 3px;
  background: conic-gradient(from 180deg, var(--neon), var(--indigo), var(--purple), var(--neon));
}

.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: var(--r-pill);
  border: 3px solid rgba(15, 23, 42, 0.9);
  object-fit: cover;
}

/* =========================
   DOWNLOAD / LINKS
   ========================= */

.discord-widget { display: flex; flex-direction: column; justify-content: space-between; }

.discord-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(129, 140, 248, 0.4), rgba(15, 23, 42, 1));
  color: var(--text);
  font-size: 1.4rem;
}

.connection-string { font-size: 0.78rem; }

/* =========================
   FOOTER
   ========================= */

.footer .social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(75, 85, 99, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer .social-icon:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.8);
  color: var(--text);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.7);
}

.scroll-top-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(56, 189, 248, 0.9);
  background: radial-gradient(circle at top, rgba(34, 211, 238, 0.25), rgba(15, 23, 42, 1));
  color: var(--text);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.scroll-top-btn i { font-size: 1.2rem; }

.scroll-top-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(56, 189, 248, 1);
}

/* =========================
   SCROLL INDICATOR
   ========================= */

.scroll-indicator { right: 2rem; bottom: 2.5rem; color: var(--muted); }

.scroll-line {
  width: 2px;
  height: 40px;
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.4), rgba(56, 189, 248, 0.9));
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9), transparent);
  animation: scrollDot 1.4s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* =========================
   MOTION
   ========================= */

.float-up { animation: floatUp 7s ease-in-out infinite; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =========================
   ACCESSIBILITY: REDUCED MOTION
   ========================= */

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

/* =========================
   RESPONSIVE TWEAKS
   ========================= */

@media (max-width: 991.98px) {
  .hero-main-img { height: 260px; }
  .hero-thumb { display: none !important; }
  .section-padding {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }
  section[id] {
    scroll-margin-top: 80px;
  }
}

@media (max-width: 767.98px) {
  .gallery-item img { height: 140px; }
  .footer .social-icon { width: 32px; height: 32px; }
}

@media (max-width: 575.98px) {
  .hero-section .container { padding-top: 70px; }
  .hero-main-img { height: 220px; }
  .section-title { font-size: 1.6rem; }
}

@media (max-width: 400px) {
  .hero-stats .stat-value { font-size: 1rem; }
  .hero-stats { gap: 0.75rem; }
}