/* ===== CSS VARIABLES ===== */
:root {
    --bg-primary: #0a1628;
    --bg-secondary: #0f1d32;
    --bg-tertiary: #122036;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent: #c9a84c;
    --accent-light: #d4b55a;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

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

input, textarea {
    font-family: inherit;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-label.center {
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 48px;
}

.section-title.center {
    text-align: center;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: var(--transition);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-primary);
    transition: var(--transition);
}

.nav-logo:hover {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-primary);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: 0 24px;
}

.hero-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 32px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.15);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    animation: photoReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: charReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero-cta {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.hero-cta:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 0.6s ease 1.5s forwards;
}

.scroll-indicator span {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 64px;
    align-items: start;
}

.about-text {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.about-paragraph {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-info {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.info-value {
    font-size: 14px;
    color: var(--text-primary);
}

.about-image {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
    border: 3px solid var(--accent);
    padding: 8px;
}

.about-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services-bg-image {
    position: absolute;
    inset: 0;
    background: url('../images/services-bg.jpg') center/cover no-repeat;
    opacity: 0.03;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 48px 36px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

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

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

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

.service-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== EXPERIENCE ===== */
.experience {
    padding: 120px 0;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline-line {
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1a2744;
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 24px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    background: var(--bg-primary);
    transform: translateX(-6px);
}

.timeline-card {
    background: var(--bg-secondary);
    padding: 32px;
    border-left: 3px solid var(--accent);
}

.timeline-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.timeline-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.timeline-role {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
}

.timeline-date {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.timeline-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-bg-image {
    position: absolute;
    inset: 0;
    background: url('../images/contact-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
    filter: blur(8px);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--accent);
}

.contact-skills {
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.skills-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.skills-value {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 14px 16px;
    border-radius: 4px;
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--accent);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background: var(--accent);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--accent-light);
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 80px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== CHAT PANEL ===== */
.chat-panel {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 440px;
    height: 640px;
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.chat-panel.open {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    height: 48px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.chat-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.chat-close {
    font-size: 24px;
    color: var(--text-muted);
    line-height: 1;
    padding: 4px;
    transition: color 0.3s ease;
}

.chat-close:hover {
    color: var(--text-primary);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.assistant-avatar {
    background: var(--accent);
    color: var(--bg-primary);
}

.user-avatar {
    background: var(--text-muted);
    color: var(--text-primary);
}

.chat-bubble {
    max-width: 80%;
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.5;
    position: relative;
}

.chat-message.assistant .chat-bubble {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.chat-message.user .chat-bubble {
    background: #1a2744;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

/* Fission area inside chat */
.chat-fission-area {
    padding: 8px 20px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.fission-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.fission-button:hover {
    background: rgba(201, 168, 76, 0.1);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.fission-button:active {
    transform: scale(0.98);
}

.fission-icon {
    font-size: 16px;
}

/* Chat input */
.chat-input-area {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-secondary);
    flex-shrink: 0;
}

.chat-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    padding: 8px;
    outline: none;
}

.chat-input::placeholder {
    color: var(--text-muted);
}

.chat-send {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.chat-send:hover {
    background: rgba(255, 255, 255, 0.05);
}

.chat-send svg {
    width: 20px;
    height: 20px;
}

/* Chat toggle button */
.chat-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(201, 168, 76, 0.4);
}

.chat-toggle.hidden {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

.chat-toggle svg {
    width: 24px;
    height: 24px;
}

/* ===== FISSION EFFECT ===== */
.fission-container {
    position: absolute;
    pointer-events: none;
    z-index: 100;
}

.fission-core {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(201, 168, 76, 0.5) 40%, transparent 70%);
    animation: fissionCoreExpand 300ms ease-out forwards;
    will-change: transform, opacity;
}

.fission-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(201, 168, 76, 0.6);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3), 0 0 40px rgba(201, 168, 76, 0.1);
    animation: fissionRingExpand 2400ms ease-out forwards;
    will-change: transform, opacity;
}

.fission-particle {
    position: absolute;
    border-radius: 2px;
    will-change: transform, opacity;
}

.fission-trail {
    position: absolute;
    border-radius: 2px;
    animation: fissionTrailFade 300ms ease-out forwards;
    will-change: transform, opacity;
}

.fission-glow {
    animation: fissionMessageGlow 600ms ease-out forwards;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes photoReveal {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.6);
        opacity: 0.5;
    }
}

/* Fission keyframes */
@keyframes fissionCoreExpand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.9;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes fissionRingExpand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes fissionParticleFly {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fissionTrailFade {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}

@keyframes fissionMessageGlow {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
    100% { filter: brightness(1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .nav-inner {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .chat-panel {
        width: 380px;
        height: 560px;
    }

    .footer {
        padding: 40px;
    }
}

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

    .nav-inner {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-photo {
        width: 140px;
        height: 140px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-info {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 24px;
    }

    .timeline-dot {
        left: -24px;
        transform: translateX(-6px);
    }

    .chat-panel {
        width: 100vw;
        height: 100vh;
        bottom: 0;
        right: 0;
        border-radius: 0;
        border: none;
    }

    .chat-toggle {
        bottom: 16px;
        right: 16px;
    }

    .footer {
        padding: 32px 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-title .char,
    .hero-label,
    .hero-photo,
    .hero-subtitle,
    .hero-cta,
    .scroll-indicator {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

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

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