/* ==============================================
   TrFlow Hugo - Complete CSS Styles
   Replicating React/Tailwind design in pure CSS
   ============================================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* CSS Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0B0F1A;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==============================================
   UTILITY CLASSES (Tailwind-like)
   ============================================== */

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* Display */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Flex Direction */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }

/* Flex Alignment */
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }

/* Flex Grow */
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (min-width: 768px) {
  .md\\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .lg\\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Gap */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }

/* Spacing */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-6 { margin-right: 1.5rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }

/* Padding */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-40 { padding-top: 10rem; padding-bottom: 10rem; }
.pt-32 { padding-top: 8rem; }
.pt-40 { padding-top: 10rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-32 { padding-bottom: 8rem; }
.pb-6 { padding-bottom: 1.5rem; }

/* Width & Height */
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.min-h-screen { min-height: 100vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-full { max-width: 100%; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.top-32 { top: 8rem; }
.bottom-32 { bottom: 8rem; }
.left-1\\/3 { left: 33.333333%; }
.right-1\\/3 { right: 33.333333%; }
.top-1\\/2 { top: 50%; }
.left-1\\/2 { left: 50%; }
.top-full { top: 100%; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Transform */
.transform { transform: var(--tw-transform); }
.-translate-x-1\\/2 { transform: translateX(-50%); }
.-translate-y-1\\/2 { transform: translateY(-50%); }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* Border Radius */
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }

/* Border */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-white\\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-blue-500\\/20 { border-color: rgba(59, 130, 246, 0.2); }
.border-purple-500\\/20 { border-color: rgba(139, 92, 246, 0.2); }
.border-red-500\\/20 { border-color: rgba(239, 68, 68, 0.2); }

/* Background Colors */
.bg-\\[\\#0B0F1A\\] { background-color: #0B0F1A; }
.bg-\\[\\#131B2E\\] { background-color: #131B2E; }
.bg-\\[\\#1a1f2e\\] { background-color: #1a1f2e; }
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-white\\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-blue-500 { background-color: #3b82f6; }
.bg-blue-500\\/10 { background-color: rgba(59, 130, 246, 0.1); }
.bg-blue-600 { background-color: #2563eb; }
.bg-purple-500\\/10 { background-color: rgba(139, 92, 246, 0.1); }
.bg-red-500\\/10 { background-color: rgba(239, 68, 68, 0.1); }
.bg-green-500 { background-color: #22c55e; }
.bg-green-500\\/10 { background-color: rgba(34, 197, 94, 0.1); }
.bg-green-600 { background-color: #16a34a; }
.bg-blue-500\\/5 { background-color: rgba(59, 130, 246, 0.05); }
.bg-purple-500\\/5 { background-color: rgba(139, 92, 246, 0.05); }
.bg-red-500\\/5 { background-color: rgba(239, 68, 68, 0.05); }
.bg-blue-400 { background-color: #60a5fa; }

/* Text Colors */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-white\\/30 { color: rgba(255, 255, 255, 0.3); }
.text-white\\/40 { color: rgba(255, 255, 255, 0.4); }
.text-white\\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\\/90 { color: rgba(255, 255, 255, 0.9); }
.text-blue-400 { color: #60a5fa; }
.text-purple-400 { color: #c084fc; }
.text-green-400 { color: #4ade80; }
.text-red-400 { color: #f87171; }

/* Font Sizes */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

@media (min-width: 768px) {
  .md\\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

/* Font Weight */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }

/* Line Height */
.leading-\\[1\\.1\\] { line-height: 1.1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Letter Spacing */
.tracking-tight { letter-spacing: -0.025em; }

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }

/* Flex Wrap */
.flex-wrap { flex-wrap: wrap; }

/* Space Between */
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* ==============================================
   GRADIENT BACKGROUNDS
   ============================================== */

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-\\[\\#0B0F1A\\] {
  --tw-gradient-from: #0B0F1A;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(11, 15, 26, 0));
}

.to-\\[\\#131B2E\\] {
  --tw-gradient-to: #131B2E;
}

.from-blue-400 {
  --tw-gradient-from: #60a5fa;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
}

.to-purple-500 {
  --tw-gradient-to: #8b5cf6;
}

.from-blue-500 {
  --tw-gradient-from: #3b82f6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
}

.from-purple-500\\/10 {
  --tw-gradient-from: rgba(139, 92, 246, 0.1);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0));
}

.to-blue-500\\/10 {
  --tw-gradient-to: rgba(59, 130, 246, 0.1);
}

.from-blue-500\\/5 {
  --tw-gradient-from: rgba(59, 130, 246, 0.05);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
}

.to-purple-500\\/5 {
  --tw-gradient-to: rgba(139, 92, 246, 0.05);
}

/* Background Clip for Text Gradients */
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==============================================
   BLUR EFFECTS
   ============================================== */

.backdrop-blur-lg {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.backdrop-blur-xl {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.blur-\\[60px\\] {
  filter: blur(60px);
}

.blur-\\[80px\\] {
  filter: blur(80px);
}

/* ==============================================
   TRANSITIONS
   ============================================== */

.transition-all { transition: all 0.15s ease-in-out; }
.transition-colors { transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; }
.transition-opacity { transition: opacity 0.15s ease-in-out; }
.transition-transform { transition: transform 0.15s ease-in-out; }
.transition-shadow { transition: box-shadow 0.15s ease-in-out; }

.duration-300 { transition-duration: 300ms; }

/* Hover Effects */
.hover\\:text-white:hover { color: #ffffff; }
.hover\\:bg-white\\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\\:bg-white\\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\\:bg-white\\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
.hover\\:bg-white\\/90:hover { background-color: rgba(255, 255, 255, 0.9); }
.hover\\:bg-blue-600:hover { background-color: #2563eb; }
.hover\\:bg-green-600:hover { background-color: #16a34a; }
.hover\\:opacity-90:hover { opacity: 0.9; }
.hover\\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

/* ==============================================
   ANIMATIONS
   ============================================== */

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-in-up {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { 
    opacity: 1; 
  }
  50% { 
    opacity: 0.5; 
  }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out;
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out 0.1s both;
}

.animate-fade-in-up-delay {
  animation: fade-in-up 0.8s ease-out 0.2s both;
}

.animate-fade-in-up-delay-2 {
  animation: fade-in-up 0.8s ease-out 0.3s both;
}

.animate-fade-in-up-delay-3 {
  animation: fade-in-up 0.8s ease-out 0.4s both;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll-delay {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.animate-on-scroll-delay.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */

@media (min-width: 640px) {
  .sm\\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\\:col-6 { flex: 0 0 50%; max-width: 50%; }
  .md\\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .lg\\:col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .lg\\:col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .lg\\:col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .lg\\:col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .lg\\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\\:flex { display: flex; }
  .lg\\:hidden { display: none; }
  .lg\\:text-right { text-align: right; }
  .lg\\:order-1 { order: 1; }
  .lg\\:order-2 { order: 2; }
}

/* ==============================================
   COMPONENT STYLES
   ============================================== */

/* Ring */
.ring-2 { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.ring-blue-400 { --tw-ring-color: #60a5fa; }

/* Appearance */
.appearance-none { appearance: none; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Focus */
.focus\\:outline-none:focus { outline: 0; }

/* Range Input Styles */
input[type="range"] {
  -webkit-appearance: none;
  background: transparent;
}

input[type="range"]::-webkit-slider-track {
  background: rgba(255, 255, 255, 0.2);
  height: 8px;
  border-radius: 4px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #3B82F6;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]::-moz-range-track {
  background: rgba(255, 255, 255, 0.2);
  height: 8px;
  border-radius: 4px;
  border: none;
}

input[type="range"]::-moz-range-thumb {
  background: #3B82F6;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* ==============================================
   UTILITY EXTRAS
   ============================================== */

/* Order */
.order-1 { order: 1; }
.order-2 { order: 2; }

/* Max Height */
.max-h-90vh { max-height: 90vh; }

/* Overflow Y */
.overflow-y-auto { overflow-y: auto; }

/* Shadow */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-90 { opacity: 0.9; }

/* Visibility */
.invisible { visibility: hidden; }

/* SVG Stroke Width */
svg[stroke-width="2"] { stroke-width: 2; }

/* Transform Rotate */
.rotate-180 { transform: rotate(180deg); }

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

/* Mobile First Responsive Classes */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .text-5xl, .text-6xl, .text-7xl {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  
  .py-40 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  
  .py-32 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .pt-40 {
    padding-top: 6rem;
  }
  
  .gap-20 {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .text-4xl, .text-5xl, .text-6xl, .text-7xl {
    font-size: 2rem;
    line-height: 1.1;
  }
  
  .text-3xl {
    font-size: 1.5rem;
    line-height: 1.25;
  }
  
  .text-2xl {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  
  .py-40 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .py-32 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .py-20 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .pt-40 {
    padding-top: 4rem;
  }
  
  .pt-32 {
    padding-top: 3rem;
  }
  
  .gap-20 {
    gap: 2rem;
  }
  
  .gap-16 {
    gap: 2rem;
  }
  
  .gap-12 {
    gap: 1.5rem;
  }
  
  .grid-cols-1 {
    grid-template-columns: 1fr;
  }
  
  .flex-col {
    flex-direction: column;
  }
}

/* ==============================================
   ACCESSIBILITY
   ============================================== */

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==============================================
   DARK MODE
   ============================================== */

.dark {
  color-scheme: dark;
}

/* ==============================================
   SCROLLBAR STYLES
   ============================================== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
} 