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

:root {
    --primary: #33ff66;
    --primary-dark: #22cc44;
    --accent: #ff6b35;
    --accent-pink: #ff006e;
    --gold: #ffd700;
    --bg-dark: #0a0a0f;
    --bg-card: rgba(5, 15, 5, 0.88);
    --bg-glass: rgba(5, 15, 5, 0.75);
    --text: #c0e0c0;
    --text-dim: #559955;
    --text-bright: #eeffee;
    --border: rgba(50, 200, 80, 0.25);

    --radius-sharp: 2px;
    --radius: 4px;
    --radius-pill: 20px;
    --radius-circle: 50%;

    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 40px;
    --space-3xl: 60px;

    --font-mono: 'Space Mono', monospace;
    --font-sans: 'VT323', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-pixel: 'Press Start 2P', monospace;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg-dark);
}

/* ===== SCREENSAVER CANVAS ===== */
#screensaver-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.screensaver-label {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    z-index: 5;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.5s;
}

.screensaver-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.screensaver-nav:hover {
    opacity: 0.8;
}

.ss-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.ss-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ===== MOBILE PLAY BUTTON ===== */
.mobile-play-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 50;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.mobile-play-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-color: var(--primary);
}

/* ===== CONTENT PANEL ===== */
.content-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(2, 8, 2, 0.94);
    backdrop-filter: blur(20px);
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* CRT Scanlines overlay */
.content-panel::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 200;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 3px
    );
}

/* CRT screen curve vignette */
.content-panel::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 199;
    background: radial-gradient(ellipse at center, transparent 60%, rgba(0, 0, 0, 0.5) 100%);
}

.content-panel.hidden {
    opacity: 0;
    pointer-events: none;
}

.close-panel {
    position: fixed;
    top: 20px;
    right: 24px;
    background: rgba(5, 20, 5, 0.8);
    border: 1px solid var(--border);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 2px;
    font-size: 24px;
    cursor: pointer;
    z-index: 210;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-family: var(--font-sans);
}

.close-panel:hover {
    background: rgba(255, 50, 50, 0.2);
    border-color: #ff4444;
    color: #ff4444;
    text-shadow: 0 0 8px rgba(255, 50, 50, 0.5);
}

/* ===== DIARY CONTENT ===== */
.diary-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 30px 40px;
}

.diary-write {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.6s ease;
}

.diary-write.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Ink writing effect */
.diary-write.writing {
    animation: inkAppear 1s ease forwards;
}

@keyframes inkAppear {
    0% {
        opacity: 0;
        filter: blur(4px);
        transform: translateY(10px) scale(0.98);
    }
    30% {
        opacity: 0.4;
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

/* ===== HEADER ===== */
.diary-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.diary-header h1 {
    font-family: var(--font-pixel);
    font-size: clamp(22px, 4vw, 38px);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(50, 255, 100, 0.5), 0 0 60px rgba(50, 255, 100, 0.2);
    position: relative;
    display: inline-block;
}

/* Neon pink hoop hairline — Editorial outside, retro inside (collateral spec) */
.diary-header h1::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--accent-pink);
    box-shadow: 0 0 10px rgba(255, 0, 110, 0.6);
    margin: 14px auto 0;
    border-radius: 1px;
}

.tagline {
    font-family: var(--font-sans);
    font-size: clamp(18px, 2.5vw, 26px);
    color: var(--text);
    font-weight: 400;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.subtitle {
    font-family: var(--font-sans);
    font-size: clamp(14px, 1.8vw, 18px);
    color: var(--text-dim);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== NAVIGATION TABS ===== */
.diary-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.nav-tab {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 10px 24px;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(50, 255, 100, 0.05);
    text-shadow: 0 0 8px rgba(50, 255, 100, 0.4);
}

.nav-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #001a00;
    font-weight: 400;
    text-shadow: none;
}

/* ===== SECTIONS ===== */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: sectionFadeIn 0.4s ease;
}

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

.content-section h2 {
    font-family: var(--font-pixel);
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(50, 255, 100, 0.4);
}

.content-section h3 {
    font-size: 18px;
    color: var(--text-bright);
    margin-bottom: 8px;
}

.content-section p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ===== CREDENTIALS ===== */
.credentials {
    margin-top: 30px;
}

.credential-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.credential-list li {
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 18px;
    color: var(--text);
    position: relative;
    padding-left: 32px;
}

.credential-list li::before {
    content: '\2713';
    position: absolute;
    left: 12px;
    color: var(--primary);
    font-weight: bold;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(50, 255, 100, 0.1), inset 0 0 30px rgba(50, 255, 100, 0.02);
}

.service-icon {
    font-size: 28px;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(50, 255, 100, 0.5);
    margin-bottom: 16px;
    line-height: 1;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-dim);
}

/* ===== BOOKING GRID ===== */
.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.booking-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.booking-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.booking-card.free:hover {
    border-color: #00cc88;
    box-shadow: 0 0 15px rgba(0, 204, 136, 0.15);
}

.booking-card.paid:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(50, 255, 100, 0.15);
}

.booking-card.tip:hover {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

.booking-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    background: rgba(0, 204, 136, 0.15);
    color: #00cc88;
    border: 1px solid rgba(0, 204, 136, 0.3);
}

.paid-badge {
    background: rgba(50, 255, 100, 0.12);
    color: var(--primary);
    border-color: rgba(50, 255, 100, 0.35);
}

.tip-badge {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    border-color: rgba(255, 215, 0, 0.3);
    font-size: 18px;
}

.invoice-badge {
    background: rgba(200, 150, 255, 0.15);
    color: #c896ff;
    border-color: rgba(200, 150, 255, 0.3);
}

.booking-card.invoice:hover {
    border-color: #c896ff;
    box-shadow: 0 0 15px rgba(200, 150, 255, 0.15);
}

.invoice-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    color: #c896ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.invoice-lookup {
    margin: 16px 0;
}

.invoice-lookup .form-group {
    text-align: left;
}

.invoice-lookup input {
    width: 100%;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.invoice-btn {
    background: #c896ff;
    color: #0a001a;
    border-color: #c896ff;
}

.invoice-btn:hover {
    background: transparent;
    color: #c896ff;
    box-shadow: 0 0 15px rgba(200, 150, 255, 0.3);
}

.error-msg {
    color: #ff4444;
    font-size: 14px;
    margin-top: 8px;
    font-family: var(--font-sans);
}

.error-msg.hidden {
    display: none;
}

.booking-duration {
    font-family: var(--font-mono);
    font-size: 20px;
    color: var(--text-bright);
    font-weight: 700;
    margin-bottom: 12px;
}

.booking-price {
    font-family: var(--font-mono);
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
}

.booking-price span {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 400;
}

.tip-subtitle {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.booking-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.booking-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text);
    position: relative;
    padding-left: 20px;
}

.booking-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.booking-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.free-btn {
    background: #00cc88;
    color: #001a00;
    border-color: #00cc88;
}

.free-btn:hover {
    background: transparent;
    color: #00cc88;
    box-shadow: 0 0 15px rgba(0, 204, 136, 0.3);
}

.paid-btn {
    background: var(--primary);
    color: #001a00;
    border-color: var(--primary);
}

.paid-btn:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 0 15px rgba(50, 255, 100, 0.3);
}

.tip-btn {
    background: var(--gold);
    color: #1a1a00;
    border-color: var(--gold);
}

.tip-btn:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Tip Amounts */
.tip-amounts {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 16px 0;
}

.tip-amount {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tip-amount:hover,
.tip-amount.active {
    background: var(--gold);
    color: #1a1a2e;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

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

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

.contact-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--text-bright);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.social-links a {
    color: var(--text-dim);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
}

.social-links a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(50, 255, 100, 0.1);
    transform: translateY(-2px);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    background: rgba(5, 20, 5, 0.8);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 12px 16px;
    color: var(--primary);
    font-family: var(--font-sans);
    font-size: 20px;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(50, 255, 100, 0.15);
}

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

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

/* ===== FOOTER ===== */
.diary-footer {
    text-align: center;
    padding-top: 40px;
    margin-top: 60px;
    border-top: 1px solid var(--border);
}

.diary-footer p {
    font-size: 13px;
    color: var(--text-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .diary-content {
        padding: 50px 20px 30px;
    }

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

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

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

    .credential-list {
        grid-template-columns: 1fr;
    }

    .nav-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tip-amounts {
        flex-wrap: wrap;
    }

    .booking-price {
        font-size: 24px;
    }
}

/* ===== ABOUT INTRO (headshot + text) ===== */
.about-intro {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.headshot-wrap {
    flex-shrink: 0;
}

.headshot-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-pixel);
    font-size: 18px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
}

.headshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.headshot-placeholder:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(50, 255, 100, 0.2);
}

.about-text {
    flex: 1;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: sectionFadeIn 0.3s ease;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(50, 255, 100, 0.3);
}

/* AWS Badges */
.aws-badges {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    opacity: 0.6;
    filter: grayscale(30%);
    transition: all 0.3s;
}

.aws-badges:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.aws-badges img {
    border-radius: 4px;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s;
}

.portfolio-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(50, 255, 100, 0.1);
}

.portfolio-preview {
    background: rgba(0, 10, 0, 0.6);
    border: 1px solid var(--border);
    border-radius: 2px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.portfolio-placeholder {
    font-family: var(--font-mono);
    color: var(--primary);
    font-size: 14px;
    opacity: 0.6;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.portfolio-tags span {
    background: rgba(50, 255, 100, 0.08);
    border: 1px solid rgba(50, 255, 100, 0.2);
    color: var(--text-dim);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-family: var(--font-mono);
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--bg-card);
    border: none;
    color: var(--text-bright);
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    padding-right: 40px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 24px;
    font-family: var(--font-mono);
    transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
    content: '-';
}

.faq-question:hover {
    background: rgba(50, 255, 100, 0.05);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 10, 0, 0.4);
}

.faq-item.open .faq-answer {
    max-height: 600px;
}

.faq-answer p, .faq-answer ul {
    padding: 0 20px;
    font-size: 16px;
}

.faq-answer p:first-child {
    padding-top: 16px;
}

.faq-answer p:last-child, .faq-answer ul:last-child {
    padding-bottom: 16px;
}

.faq-answer ul {
    list-style: none;
    margin: 8px 0;
}

.faq-answer ul li {
    padding: 4px 0 4px 20px;
    position: relative;
    color: var(--text);
}

.faq-answer ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ===== PRIVACY SECTION ===== */
.privacy-section h3 {
    margin-top: 24px;
    color: var(--primary);
    font-family: var(--font-sans);
    font-size: 22px;
}

.privacy-section p {
    font-size: 16px;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
    .about-intro {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

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

.content-panel::-webkit-scrollbar-track {
    background: transparent;
}

.content-panel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.content-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}
