/* ==========================================
   1. RESET & CORE GLOBAL STYLES 
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(circle at top, rgba(0, 210, 255, 0.12), transparent 28%),
                radial-gradient(circle at 20% 20%, rgba(255, 0, 90, 0.08), transparent 25%),
                linear-gradient(180deg, #050914 0%, #081427 100%);
    color: #e2e8f0;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 80% 10%, rgba(0, 255, 255, 0.12), transparent 18%);
    pointer-events: none;
}

::selection {
    background: rgba(0, 240, 255, 0.25);
    color: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

/* Remove link underlines globally; color rules remain in place */
a {
    text-decoration: none;
}

/* ==========================================
   2. NAVIGATION BAR 
   ========================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 5%;
    background: rgba(6, 12, 24, 0.92);
    border-bottom: 1px solid rgba(0, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    font-size: 1.45rem;
    font-weight: 700;
    color: #00f0ff;
    letter-spacing: 0.02em;
}

.navbar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.navbar nav a {
    color: #f8fafc;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    transition: color 0.25s ease, transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.navbar nav a:hover,
.navbar nav a:focus-visible {
    color: #ffffff;
    transform: translateY(-1px);
    background: rgba(125, 211, 252, 0.16);
    border-color: rgba(125, 211, 252, 0.24);
}

/* ==========================================
   3. HERO SECTION 
   ========================================== */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 420px;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.12), transparent 40%),
                linear-gradient(180deg, rgba(2, 18, 43, 0.96) 0%, rgba(6, 12, 24, 0.95) 100%);
}

.hero-section.hero-home {
    background: radial-gradient(circle at top, rgba(0, 255, 255, 0.16), transparent 30%),
                linear-gradient(180deg, rgba(2, 18, 43, 0.96) 0%, rgba(6, 12, 24, 0.95) 100%);
}

.hero-section.hero-about {
    background: radial-gradient(circle at top left, rgba(125, 211, 252, 0.18), transparent 32%),
                linear-gradient(180deg, rgba(5, 18, 30, 0.96) 0%, rgba(9, 17, 30, 0.96) 100%);
}

.hero-section.hero-videos {
    background: radial-gradient(circle at top right, rgba(255, 145, 72, 0.16), transparent 34%),
                linear-gradient(180deg, rgba(18, 8, 25, 0.96) 0%, rgba(7, 13, 29, 0.96) 100%);
}

.hero-section.hero-village {
    background: radial-gradient(circle at top left, rgba(100, 255, 192, 0.16), transparent 30%),
                linear-gradient(180deg, rgba(5, 12, 24, 0.96) 0%, rgba(8, 14, 24, 0.98) 100%);
}

.village-page .hero-glow {
    background: radial-gradient(circle, rgba(100, 255, 192, 0.22), transparent 50%);
}

.village-intro {
    display: grid;
    gap: 26px;
    margin: 60px 0 40px;
    grid-template-columns: minmax(280px, 1.1fr) minmax(250px, 0.9fr);
    align-items: start;
}

.village-profile {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    margin-top: 20px;
}

.profile-card {
    width: min(640px, 100%);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(6, 182, 212, 0.04));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 32px;
    padding: 48px 40px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
}

.profile-avatar {
    font-size: 5.2rem;
    margin-bottom: 24px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.profile-card h2 {
    color: #7dd3fc;
    margin-bottom: 16px;
    font-size: clamp(2.2rem, 3.2vw, 3rem);
    letter-spacing: 0.02em;
}

.profile-card p {
    color: #cbd5e1;
    margin-bottom: 32px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.profile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    padding: 16px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.14), rgba(6, 182, 212, 0.1));
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(125, 211, 252, 0.2);
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.profile-link:hover,
.profile-link:focus-visible {
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.24), rgba(6, 182, 212, 0.18));
    border-color: rgba(125, 211, 252, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(125, 211, 252, 0.15);
}

.village-panel {
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.12), rgba(15, 23, 42, 0.08));
    border: 1px solid rgba(125, 211, 252, 0.15);
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.village-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(125, 211, 252, 0.25);
}

.village-panel h3 {
    color: #7dd3fc;
    margin-bottom: 18px;
    font-size: 1.35rem;
    letter-spacing: 0.05em;
}

.village-panel p,
.village-panel li {
    color: #d1d9e6;
    line-height: 1.85;
    font-size: 1rem;
}

.village-panel ul {
    margin-left: 18px;
    margin-top: 16px;
    margin-bottom: 18px;
}

.village-panel li {
    margin-bottom: 10px;
}

.village-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 0;
}

.village-feature-card {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5), rgba(10, 15, 30, 0.4));
    border: 1px solid rgba(125, 211, 252, 0.12);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.village-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(125, 211, 252, 0.24);
    box-shadow: 0 20px 60px rgba(125, 211, 252, 0.1);
}

.village-feature-card h3 {
    margin-bottom: 14px;
    color: #7dd3fc;
    font-size: 1.2rem;
}

.village-feature-card p {
    color: #cbd5e1;
    line-height: 1.8;
}

.village-status {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.village-status span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(125, 211, 252, 0.08);
    color: #7dd3fc;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    border: 1px solid rgba(125, 211, 252, 0.14);
}

@media (max-width: 860px) {
    .village-intro {
        grid-template-columns: 1fr;
    }

    .profile-card {
        padding: 36px 28px;
    }

    .profile-avatar {
        font-size: 4.2rem;
    }
}

.hero-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 560px;
    height: 560px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 255, 255, 0.16), transparent 45%);
    pointer-events: none;
    filter: blur(40px);
}

.home-page .hero-glow {
    background: radial-gradient(circle, rgba(0, 255, 255, 0.18), transparent 45%);
}

.about-page .hero-glow {
    background: radial-gradient(circle, rgba(125, 211, 252, 0.24), transparent 42%);
}

.videos-page .hero-glow {
    background: radial-gradient(circle, rgba(255, 145, 72, 0.22), transparent 42%);
}

.about-page .feature-card,
.about-page .story-card {
    background: linear-gradient(180deg, rgba(32, 60, 81, 0.92), rgba(14, 30, 47, 0.95));
    border-color: rgba(72, 187, 120, 0.16);
}

.about-page .feature-card:hover,
.about-page .story-card:hover {
    border-color: rgba(72, 187, 120, 0.32);
}

.about-page .about-card {
    border-color: rgba(72, 187, 120, 0.18);
}

.videos-page .video-card {
    border-color: rgba(255, 110, 49, 0.15);
}

.videos-page .video-card:hover {
    border-color: rgba(255, 110, 49, 0.30);
}

.videos-page .video-placeholder {
    background: rgba(55, 15, 25, 0.95);
    color: #ffb347;
}

.story-section,
.trending-section {
    margin-bottom: 80px;
}

.story-grid,
.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.story-card,
.trending-card {
    background: linear-gradient(180deg, rgba(14, 24, 49, 0.92), rgba(4, 12, 23, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.story-card:hover,
.trending-card:hover {
    transform: translateY(-6px);
}

.story-card span,
.trending-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.story-card span {
    background: rgba(72, 187, 120, 0.14);
    color: #7ee1b0;
}

.trending-card span {
    background: rgba(255, 110, 49, 0.16);
    color: #ffc485;
}

.story-card h3,
.trending-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.story-card p,
.trending-card p {
    color: #cfd7e8;
    line-height: 1.8;
}

.about-page .hero-content h1 {
    color: #d0f5ff;
}

.videos-page .hero-content h1 {
    color: #ffd9a8;
}

.about-page .eyebrow {
    color: #86d9ff;
}

.videos-page .eyebrow {
    color: #ffb96b;
}

.hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: #7dd3fc;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    line-height: 1.02;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}

.hero-content p {
    max-width: 720px;
    margin: 0 auto 36px;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.cta-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cta-btn {
    background: linear-gradient(135deg, #ff0047, #ff6a00);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(255, 0, 71, 0.25);
}

.cta-btn:hover,
.cta-btn:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(255, 0, 71, 0.30);
}

.secondary-btn {
    border: 1px solid rgba(125, 211, 252, 0.45);
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.88);
}

.secondary-btn.alt {
    border-color: rgba(255, 255, 255, 0.12);
}

.secondary-btn:hover,
.secondary-btn:focus-visible {
    transform: translateY(-2px);
    background: rgba(15, 23, 42, 1);
}

/* ==========================================
   4. LAYOUT CONTAINERS & CONTENT 
   ========================================== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.about-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 40px 0;
}

.about-card-large {
    width: min(840px, 100%);
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 36px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(72, 187, 120, 0.16);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.about-card-copy {
    position: relative;
    padding-left: 30px;
}

.about-card-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #ff0047 0%, #cc0000 100%);
    border-radius: 999px;
}

.about-avatar {
    width: 130px;
    height: 130px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.24), rgba(0, 255, 255, 0.12));
    border: 1px solid rgba(125, 211, 252, 0.14);
}

.about-card-copy h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 16px;
    color: #e7ffff;
}

.about-card-copy p {
    color: #d8e6f4;
    line-height: 1.85;
    font-size: 1.05rem;
}

.about-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.link-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.about-page .link-pill.cta-btn {
    background: linear-gradient(135deg, #6ee7b7, #34d399);
    color: #020617;
    border: none;
    box-shadow: 0 16px 32px rgba(55, 209, 178, 0.18);
}

.about-page .link-pill.secondary-btn {
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(72, 187, 120, 0.18);
    color: #cbd5e1;
}

.about-page .link-pill.secondary-btn.alt {
    border-color: rgba(255, 255, 255, 0.12);
}

.about-page .link-pill:hover {
    transform: translateY(-2px);
}

h2 {
    font-size: clamp(2rem, 2.8vw, 2.4rem);
    color: #7dd3fc;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding-left: 0;
}

p {
    color: #cbd5e1;
}

/* ==========================================
   5. ABOUT & FEATURES 
   ========================================== */
.about-section {
    display: grid;
    gap: 32px;
    margin-bottom: 80px;
}

.about-card {
    background: rgba(6, 12, 24, 0.92);
    border: 1px solid rgba(125, 211, 252, 0.12);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.about-card h2 {
    margin-bottom: 14px;
}

.about-card p {
    font-size: 1.05rem;
    max-width: 700px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(14px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(125, 211, 252, 0.25);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card p {
    color: #d2ddea;
    line-height: 1.8;
}

/* ==========================================
   6. VIDEO GRID CARDS 
   ========================================== */
.video-section {
    margin-bottom: 80px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.video-card {
    background: linear-gradient(180deg, rgba(8, 18, 43, 0.95), rgba(6, 12, 24, 0.95));
    border: 1px solid rgba(125, 211, 252, 0.08);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 211, 252, 0.24);
}

.video-placeholder {
    width: 100%;
    height: 180px;
    display: grid;
    place-items: center;
    border-radius: 24px 24px 0 0;
    background: rgba(14, 24, 53, 0.9);
    color: #7dd3fc;
    font-size: 3rem;
    margin-bottom: 0;
}

.video-thumb {
    width: 100%;
    height: auto;
    max-height: 220px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 24px 24px 0 0;
    margin-bottom: 0;
    background: rgba(12,18,28,0.45);
}

.video-card-body {
    padding: 24px;
}
.video-card h3 {
    margin: 0 0 12px 0;
    color: #ffffff;
    font-size: 1.2rem;
}

.video-card p {
    color: #cbd5e1;
    line-height: 1.75;
}

.subscribe-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 10, 22, 0.88);
    display: grid;
    place-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.subscribe-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.subscribe-popup {
    position: relative;
    width: min(92vw, 420px);
    padding: 34px 28px 28px;
    border-radius: 28px;
    background: rgba(9, 17, 32, 0.98);
    border: 1px solid rgba(125, 211, 252, 0.14);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.subscribe-popup p {
    margin-bottom: 14px;
    color: #7dd3fc;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
}

.subscribe-popup h2 {
    margin: 0 0 24px 0;
    color: #f8fafc;
    font-size: clamp(1.8rem, 2.3vw, 2.4rem);
    line-height: 1.1;
}

.subscribe-popup-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.subscribe-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.subscribe-popup-close:hover,
.subscribe-popup-close:focus-visible {
    background: rgba(255, 255, 255, 0.16);
}

/* ==========================================
   7. COMMUNITY VILLAGE SECTION 
   ========================================== */
.community-section {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.06), rgba(255, 0, 71, 0.06));
    border: 1px solid rgba(125, 211, 252, 0.14);
    border-radius: 24px;
    padding: 48px 36px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.community-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.community-copy h2 {
    margin-bottom: 18px;
}

.community-copy p {
    margin-bottom: 28px;
    color: #d1d9e6;
    font-size: 1.1rem;
}

.community-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ==========================================
   8. FOOTER 
   ========================================== */
.site-footer {
    background: rgba(3, 7, 18, 0.95);
    padding: 30px 20px 40px;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer p {
    color: #7c91a6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #7dd3fc;
}

/* ==========================================
   9. RESPONSIVE 
   ========================================== */
@media (max-width: 860px) {
    .feature-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-section {
        padding-top: 80px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 14px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/* Custom ambient neon glow on card hover */
.video-card:hover {
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.25);
    transform: translateY(-6px) scale(1.01);
}
/* Brand-specific styling rules for social icons/buttons */
.btn-discord {
    background-color: #5865F2 !important;
    color: #ffffff !important;
}
.btn-discord:hover {
    background-color: #4752C4 !important;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.btn-meta {
    background-color: #0668E1 !important;
    color: #ffffff !important;
}
.btn-meta:hover {
    background-color: #0556bc !important;
    box-shadow: 0 0 15px rgba(6, 104, 225, 0.4);
}
/* Custom modern scrollbar track and thumb */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #060a14;
}
::-webkit-scrollbar-thumb {
    background: #161f33;
    border: 2px solid #060a14;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00d2ff;
}
