.section-title {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 10px !important;
  font-size: 42px !important;
}

.section-title h2 {
  color: #FFFFFF !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  text-align: center !important;
  width: 100% !important;
  position: relative;
}

/* Expanding accent line under titles */
.section-title h2::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  margin: 8px auto 0 auto;
  animation: expandLine 1s ease forwards 0.5s;
}

.section-subtitle {
  text-align: center !important;
  margin-bottom: 3rem !important;
}

.section-subtitle p {
  color: rgba(255,255,255,0.8) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  text-align: center !important;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2a2a2a;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #1a1a1a #000000;
}

/* =========================
   ANIMATIONS (MAX PACK)
========================= */

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

@keyframes expandLine {
  from { width: 0%; }
  to { width: 60px; }
}

/* Original Layer Snowfall Animation Keyframes */
@keyframes snowfall {
  0% {
    background-position: 0px 0px, 0px 0px, 0px 0px;
  }
  100% {
    background-position: 500px 1000px, 400px 400px, 300px 300px;
  }
}

/* NEW: Intense Fine Particle Animation Keyframes */
@keyframes blizzardDenser {
  0% {
    background-position: 0px 0px, 0px 0px, 0px 0px;
  }
  100% {
    background-position: -300px 800px, 200px 600px, 500px 1200px;
  }
}

/* Floating animation for subtle idle movement */
@keyframes continuousFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* Shimmer shine flash animation */
@keyframes buttonShimmer {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

/* Stable page load animation & New Fine Particle Base Layer */
html {
  scroll-behavior: smooth;
  position: relative;
}

/* EXTRA INTENSE LAYER: Floods the base layout with tons of small falling dots */
html::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.45) 1.2px, transparent 1.2px),
    radial-gradient(circle at 40% 65%, rgba(255, 255, 255, 0.35) 1.5px, transparent 1.5px),
    radial-gradient(circle at 70% 35%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    radial-gradient(circle at 90% 85%, rgba(255, 255, 255, 0.4) 1.8px, transparent 1.8px),
    radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.3) 1.2px, transparent 1.2px);
  background-size: 300px 300px, 250px 250px, 400px 400px, 350px 350px, 200px 200px;
  animation: blizzardDenser 16s linear infinite;
}

body {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
}

/* ORIGINAL CSS Snow Layer (