/* =============================================
   TRANSACTOLOGY.COM - Styles
   Aesthetic: Inflated-3D / Ocean-Deep
   ============================================= */

/* === Design Palette Reference ===
   #0B1929 - Abyssal Navy (bg primary)
   #122640 - Deep Slate (card surface)
   #E8F0F2 - Foam White (text primary)
   #8BA4B4 - Kelp Gray (text secondary)
   #00D4AA - Bioluminescent Teal (accent primary)
   #FF6B6B - Coral Warning (accent secondary)
   #F0C850 - Pressure Gold (accent tertiary)
   #1AE5FF - Abyss Cyan (highlight/glow)
   #2D5A3D - Deep Moss (botanical overlay)
   #0E1F35 - Card gradient bottom
   #0D2440 - Hero gradient inner
   #050D18 - Abyss near-black
   #4A9E9E - Muted teal (labels)
   ============================================= */

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Commissioner', sans-serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    line-height: 1.65;
    color: #E8F0F2;
    background-color: #0B1929;
    overflow-x: hidden;
}

/* === Typography === */
h1, h2, h3 {
    font-family: 'Commissioner', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-header {
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    text-transform: uppercase;
    color: #E8F0F2;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subhead {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4A9E9E;
    text-align: center;
    margin-bottom: 3rem;
}

/* === Navigation === */
#top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: rgba(11, 25, 41, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 3vw, 40px);
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 229, 255, 0.08);
}

.nav-logotype {
    font-family: 'Commissioner', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: #E8F0F2;
}

#nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #E8F0F2;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

#nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* === Nav Overlay === */
#nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 25, 41, 0.96);
    backdrop-filter: blur(16px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

#nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    padding: 20px;
}

@media (max-width: 600px) {
    .nav-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}

.nav-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 28px;
    border-radius: 50px;
    background: linear-gradient(180deg, #122640, #0E1F35);
    color: #E8F0F2;
    font-family: 'Commissioner', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.12), inset 0 -3px 6px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.15s ease;
}

.nav-pill:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 36px rgba(0, 212, 170, 0.2), inset 0 -3px 6px rgba(0, 0, 0, 0.25);
}

.nav-pill:active {
    transform: scale(0.97);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.1), inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

/* === Hero Section === */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 60%, #0D2440, #0B1929);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2rem, 7vw, 4.5rem);
    text-transform: uppercase;
    color: #E8F0F2;
    text-shadow:
        0 1px 0 #0E1F35,
        0 2px 0 #0E1F35,
        0 3px 0 #0D2440,
        0 4px 0 #0D2440,
        0 5px 0 #0B1929,
        0 6px 0 #0B1929,
        0 7px 0 #0B1929,
        0 8px 15px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(26, 229, 255, 0.15),
        0 0 80px rgba(26, 229, 255, 0.08);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: heroFloat 6s ease-in-out infinite;
}

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

.hero-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    letter-spacing: 0.08em;
    color: #8BA4B4;
}

/* === Bioluminescent Particles === */
.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #1AE5FF;
    opacity: 0;
    animation: particleRise linear infinite;
}

@keyframes particleRise {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) translateX(20px);
    }
}

.particle:nth-child(1) { left: 5%; bottom: -10px; animation-duration: 12s; animation-delay: 0s; }
.particle:nth-child(2) { left: 12%; bottom: -10px; animation-duration: 9s; animation-delay: 1.2s; }
.particle:nth-child(3) { left: 20%; bottom: -10px; animation-duration: 14s; animation-delay: 0.5s; }
.particle:nth-child(4) { left: 27%; bottom: -10px; animation-duration: 11s; animation-delay: 3s; }
.particle:nth-child(5) { left: 33%; bottom: -10px; animation-duration: 8s; animation-delay: 2s; }
.particle:nth-child(6) { left: 40%; bottom: -10px; animation-duration: 15s; animation-delay: 0.8s; }
.particle:nth-child(7) { left: 47%; bottom: -10px; animation-duration: 10s; animation-delay: 4s; }
.particle:nth-child(8) { left: 53%; bottom: -10px; animation-duration: 13s; animation-delay: 1.5s; }
.particle:nth-child(9) { left: 60%; bottom: -10px; animation-duration: 9s; animation-delay: 2.5s; }
.particle:nth-child(10) { left: 67%; bottom: -10px; animation-duration: 11s; animation-delay: 0.3s; }
.particle:nth-child(11) { left: 73%; bottom: -10px; animation-duration: 14s; animation-delay: 3.5s; }
.particle:nth-child(12) { left: 80%; bottom: -10px; animation-duration: 8s; animation-delay: 1s; }
.particle:nth-child(13) { left: 87%; bottom: -10px; animation-duration: 12s; animation-delay: 2.2s; }
.particle:nth-child(14) { left: 93%; bottom: -10px; animation-duration: 10s; animation-delay: 4.5s; }
.particle:nth-child(15) { left: 8%; bottom: -10px; animation-duration: 13s; animation-delay: 5s; }
.particle:nth-child(16) { left: 18%; bottom: -10px; animation-duration: 9s; animation-delay: 6s; }
.particle:nth-child(17) { left: 35%; bottom: -10px; animation-duration: 15s; animation-delay: 3.8s; }
.particle:nth-child(18) { left: 45%; bottom: -10px; animation-duration: 11s; animation-delay: 7s; }
.particle:nth-child(19) { left: 55%; bottom: -10px; animation-duration: 10s; animation-delay: 5.5s; }
.particle:nth-child(20) { left: 65%; bottom: -10px; animation-duration: 12s; animation-delay: 8s; }
.particle:nth-child(21) { left: 75%; bottom: -10px; animation-duration: 14s; animation-delay: 6.5s; }
.particle:nth-child(22) { left: 85%; bottom: -10px; animation-duration: 9s; animation-delay: 7.5s; }
.particle:nth-child(23) { left: 95%; bottom: -10px; animation-duration: 13s; animation-delay: 4.2s; }
.particle:nth-child(24) { left: 50%; bottom: -10px; animation-duration: 11s; animation-delay: 9s; }

/* === Thermocline Section === */
#thermocline {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: clamp(40px, 8vh, 100px) clamp(16px, 3vw, 40px);
    background: #0B1929;
    overflow: hidden;
}

.thermocline-text {
    text-align: center;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 800;
    color: #E8F0F2;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.thermocline-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Conveyor Belt */
.conveyor-belt {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.conveyor-belt::before,
.conveyor-belt::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.conveyor-belt::before {
    left: 0;
    background: linear-gradient(to right, #0B1929, transparent);
}

.conveyor-belt::after {
    right: 0;
    background: linear-gradient(to left, #0B1929, transparent);
}

.conveyor-track {
    display: flex;
    gap: 3rem;
    animation: conveyorScroll 20s linear infinite;
    width: max-content;
}

@keyframes conveyorScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.conveyor-item {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.conveyor-icon {
    width: 100%;
    height: 100%;
}

/* Botanical edges */
.botanical-edge {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
}

.botanical-edge-top {
    top: 0;
}

.botanical-edge-bottom {
    bottom: 0;
}

.botanical-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 2.5s ease;
}

.botanical-edge.animate .botanical-path {
    stroke-dashoffset: 0;
}

.botanical-bloom {
    opacity: 0;
    transition: opacity 0.8s ease 1.5s;
}

.botanical-edge.animate .botanical-bloom {
    opacity: 1;
}

/* === Reveal Animation === */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Specimen Grid Section === */
#specimens {
    padding: clamp(60px, 10vh, 120px) clamp(16px, 3vw, 40px);
    min-height: 400vh;
    background: #0B1929;
}

.specimen-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 380px));
    gap: clamp(16px, 3vw, 40px);
    justify-content: center;
    max-width: 1240px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .specimen-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .specimen-card.featured {
        grid-column: span 1;
    }
}

/* === Specimen Cards === */
.specimen-card {
    position: relative;
    border-radius: 16px;
    background: linear-gradient(180deg, #122640, #0E1F35);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.12), inset 0 -3px 6px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.specimen-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.specimen-card.featured {
    grid-column: span 2;
}

/* Z-depth diorama effect */
.specimen-card[data-depth="front"] {
    z-index: 3;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 212, 170, 0.12), inset 0 -3px 6px rgba(0, 0, 0, 0.25);
}

.specimen-card[data-depth="mid"] {
    z-index: 2;
    transform: translateY(60px) scale(0.98);
}

.specimen-card.visible[data-depth="mid"] {
    transform: translateY(0) scale(0.98);
}

.specimen-card[data-depth="back"] {
    z-index: 1;
    transform: translateY(60px) scale(0.96);
    opacity: 0;
}

.specimen-card.visible[data-depth="back"] {
    transform: translateY(0) scale(0.96);
    opacity: 0.88;
}

/* Card hover: inflate */
.specimen-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 36px rgba(0, 212, 170, 0.2), inset 0 -3px 6px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.15s ease;
}

.specimen-card:active {
    transform: scale(0.97);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.1), inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

/* Specular highlight on cards */
.specimen-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    height: 40%;
    background: linear-gradient(135deg, rgba(26, 229, 255, 0.08), transparent);
    border-radius: 16px 0 0 0;
    pointer-events: none;
    z-index: 5;
}

.card-inner {
    padding: clamp(20px, 3vw, 32px);
    position: relative;
    z-index: 4;
}

.specimen-number {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4A9E9E;
    display: block;
    margin-bottom: 0.5rem;
}

.specimen-title {
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    text-transform: uppercase;
    color: #E8F0F2;
    margin-bottom: 0.75rem;
}

/* Progressive disclosure */
.specimen-reveal {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.specimen-card:hover .specimen-reveal,
.specimen-card.touch-active .specimen-reveal {
    grid-template-rows: 1fr;
}

.specimen-reveal > * {
    overflow: hidden;
}

.specimen-icon {
    width: 120px;
    height: 120px;
    margin: 0.5rem auto 1rem;
}

.specimen-icon svg {
    width: 100%;
    height: 100%;
}

.specimen-desc {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: #8BA4B4;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.specimen-taxonomy {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4A9E9E;
    display: block;
    padding-bottom: 0.5rem;
}

/* Isometric grid background on cards */
.isometric-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.isometric-grid-bg::before {
    content: '';
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(30deg, rgba(26, 229, 255, 0.04) 1px, transparent 1px),
        linear-gradient(-30deg, rgba(26, 229, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 52px;
}

/* === Taxonomy Section === */
#taxonomy {
    padding: clamp(60px, 10vh, 120px) clamp(16px, 3vw, 40px);
    min-height: 200vh;
    background: linear-gradient(180deg, #0B1929, #091520);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.taxonomy-tree {
    width: 100%;
    max-width: 1000px;
    margin-top: 3rem;
}

#taxonomy-svg {
    width: 100%;
    height: auto;
}

.tree-branch {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1.2s ease;
}

#taxonomy.animate-tree .tree-branch {
    stroke-dashoffset: 0;
}

.tree-branch.trunk {
    transition-delay: 0s;
}

.tree-branch.branch-1 { transition-delay: 0.3s; }
.tree-branch.branch-2 { transition-delay: 0.45s; }
.tree-branch.branch-3 { transition-delay: 0.6s; }
.tree-branch.branch-4 { transition-delay: 0.75s; }
.tree-branch.branch-5 { transition-delay: 0.9s; }
.tree-branch.branch-6 { transition-delay: 1.05s; }
.tree-branch.branch-7 { transition-delay: 1.2s; }
.tree-branch.branch-8 { transition-delay: 1.35s; }
.tree-branch.sub-1a, .tree-branch.sub-1b { transition-delay: 1.6s; }
.tree-branch.sub-8a, .tree-branch.sub-8b { transition-delay: 1.8s; }

.tree-node {
    opacity: 0;
    transition: opacity 0.5s ease;
}

#taxonomy.animate-tree .tree-node {
    opacity: 1;
    transition-delay: 1.5s;
}

#taxonomy.animate-tree .tree-node.sub-node {
    transition-delay: 2s;
}

.tree-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    fill: #8BA4B4;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#taxonomy.animate-tree .tree-label {
    opacity: 1;
    transition-delay: 1.7s;
}

.trunk-label {
    font-size: 14px;
    fill: #00D4AA;
    font-weight: 600;
}

#taxonomy.animate-tree .trunk-label {
    transition-delay: 0.5s;
}

/* === Abyss Section === */
#abyss {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #091520, #050D18);
    padding: clamp(40px, 8vh, 100px) clamp(16px, 3vw, 40px);
}

.abyss-content {
    max-width: 480px;
    width: 100%;
}

.abyss-card {
    animation: abyssPulse 4s ease-in-out infinite;
    opacity: 1 !important;
    transform: none !important;
}

@keyframes abyssPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(0, 212, 170, 0.12), inset 0 -3px 6px rgba(0, 0, 0, 0.25), 0 0 40px rgba(26, 229, 255, 0.05); }
    50% { box-shadow: 0 12px 36px rgba(0, 212, 170, 0.2), inset 0 -3px 6px rgba(0, 0, 0, 0.25), 0 0 60px rgba(26, 229, 255, 0.1); }
}

.abyss-reveal-always {
    grid-template-rows: 1fr !important;
}

.abyss-card .specimen-reveal {
    grid-template-rows: 1fr;
}

/* === Receipt Footer === */
#receipt-footer {
    background: #050D18;
    padding: clamp(40px, 8vh, 80px) clamp(16px, 3vw, 40px);
    display: flex;
    justify-content: center;
}

.receipt {
    max-width: 380px;
    width: 100%;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: #8BA4B4;
    text-align: center;
    line-height: 1.8;
}

.receipt-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.receipt-store {
    font-weight: 500;
    color: #E8F0F2;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin: 0.5rem 0 0.25rem;
}

.receipt-tagline {
    font-size: 0.65rem;
    color: #4A9E9E;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.receipt-dashes {
    display: block;
    color: #4A9E9E;
    opacity: 0.5;
    letter-spacing: 0.15em;
    font-size: 0.65rem;
}

.receipt-body {
    margin-bottom: 1.5rem;
}

.receipt-line {
    display: flex;
    justify-content: space-between;
    padding: 0.15rem 0;
}

.receipt-item {
    text-align: left;
}

.receipt-value {
    text-align: right;
    color: #E8F0F2;
}

.receipt-total {
    margin-top: 0.5rem;
}

.receipt-total .receipt-item,
.receipt-total .receipt-value {
    color: #00D4AA;
    font-weight: 500;
}

.receipt-footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    color: #8BA4B4;
    font-size: 0.7rem;
}

.receipt-footer-info .receipt-dashes {
    margin: 0.5rem 0;
}

/* === Accent Color Utilities === */
.accent-coral {
    color: #FF6B6B;
}

.accent-gold {
    color: #F0C850;
}

.accent-moss {
    color: #2D5A3D;
}

/* Specimen card hover glow variants */
.specimen-card[data-category="emotional"]:hover {
    box-shadow: 0 12px 36px rgba(255, 107, 107, 0.2), inset 0 -3px 6px rgba(0, 0, 0, 0.25);
}

.specimen-card[data-category="temporal"]:hover,
.specimen-card[data-category="barter"]:hover {
    box-shadow: 0 12px 36px rgba(240, 200, 80, 0.2), inset 0 -3px 6px rgba(0, 0, 0, 0.25);
}

/* Botanical growth lines use Deep Moss #2D5A3D */
.taxonomy-tree .tree-branch {
    stroke: #2D5A3D;
}

/* Coral Warning accent for secondary interactive elements */
.receipt-total .receipt-value {
    text-shadow: 0 0 12px rgba(255, 107, 107, 0.3);
}

/* Pressure Gold highlight for specimen numbers */
.specimen-number::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #F0C850;
    margin-left: 6px;
    vertical-align: middle;
}

/* === Dissection Strip between grid rows === */
.dissection-strip {
    grid-column: 1 / -1;
    height: 80px;
    overflow: hidden;
    position: relative;
}

/* === Scrollbar styling === */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0B1929;
}

::-webkit-scrollbar-thumb {
    background: #122640;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1AE5FF;
}
