/* styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #0a0f1c 0%, #0f1422 100%);
    color: #e0e0e0;
    min-height: 100vh;
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* ========== HEADER ========== */
.header {
    background: linear-gradient(145deg, #1a1f2f, #121725);
    border-radius: 24px;
    padding: 30px 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.header-content h2 {
    font-size: 1.3rem;
    color: #8892b0;
    margin-top: 8px;
    font-weight: 400;
}

.header-badge {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.badge {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge.india {
    background: linear-gradient(135deg, #ff9933, #138808);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.badge.live {
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid #ff4444;
    color: #ff8888;
}

.header-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #8892b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== NAV TABS ========== */
.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    background: rgba(18, 23, 37, 0.8);
    padding: 15px;
    border-radius: 60px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.nav-tab {
    padding: 12px 25px;
    border-radius: 40px;
    background: transparent;
    border: none;
    color: #8892b0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-tab:hover {
    background: rgba(255, 215, 0, 0.1);
    color: white;
}

.nav-tab.active {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0a0f1c;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* ========== SECTIONS ========== */
.section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.section.active {
    display: block;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    border-left: 6px solid #ffd700;
    padding-left: 20px;
    letter-spacing: -0.5px;
}

.section-subhead {
    font-size: 1.5rem;
    margin: 40px 0 20px 0;
    color: #e0e0e0;
    font-weight: 600;
}

/* ========== INDIA OVERVIEW ========== */
.overview-card.india-overview {
    background: linear-gradient(145deg, #1f2937, #111827);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #ff9933;
    position: relative;
    overflow: hidden;
}

.overview-card.india-overview::before {
    content: "🇮🇳";
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 8rem;
    opacity: 0.05;
    z-index: 0;
}

.flag-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.country-flag {
    font-size: 3rem;
}

.country-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.country-tagline {
    background: rgba(255, 153, 51, 0.2);
    padding: 6px 15px;
    border-radius: 40px;
    font-size: 0.9rem;
    color: #ffb347;
    margin-left: auto;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-bubble {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.2s ease;
}

.stat-bubble:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.bubble-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
}

.bubble-label {
    font-size: 0.9rem;
    color: #8892b0;
    margin-top: 5px;
}

/* ========== READINESS METER ========== */
.readiness-meter {
    background: #1e2538;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
}

.readiness-meter h3 {
    font-size: 1.1rem;
    color: #8892b0;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.meter-container {
    height: 40px;
    background: #2a3147;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 8px;
}

.meter-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ff9933);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    color: #0a0f1c;
    font-weight: 700;
    font-size: 0.9rem;
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    color: #8892b0;
    font-size: 0.9rem;
}

/* ========== STATS GRID ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #1e2538;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.stat-card i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.stat-title {
    color: #8892b0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.stat-trend {
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}

.stat-trend.up {
    background: rgba(0, 255, 0, 0.1);
    color: #6fda6f;
}

/* ========== PROGRAMS GRID ========== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.program-card {
    background: #1e2538;
    border-radius: 16px;
    padding: 20px;
    border-left: 4px solid;
    transition: transform 0.2s ease;
}

.program-card:hover {
    transform: translateX(5px);
}

.program-card:nth-child(1) { border-left-color: #4CAF50; }
.program-card:nth-child(2) { border-left-color: #4CAF50; }
.program-card:nth-child(3) { border-left-color: #4CAF50; }
.program-card:nth-child(4) { border-left-color: #FFC107; }
.program-card:nth-child(5) { border-left-color: #f44336; }
.program-card:nth-child(6) { border-left-color: #f44336; }

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.program-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.program-status {
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-status.success {
    background: rgba(76, 175, 80, 0.15);
    color: #81c784;
    border: 1px solid #4CAF50;
}

.program-status.warning {
    background: rgba(255, 193, 7, 0.15);
    color: #ffb347;
    border: 1px solid #FFC107;
}

.program-status.danger {
    background: rgba(244, 67, 54, 0.15);
    color: #ff8a80;
    border: 1px solid #f44336;
}

.program-detail {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.detail-label {
    color: #8892b0;
}

.detail-value {
    color: white;
    font-weight: 500;
}

.progress-bar {
    height: 8px;
    background: #2a3147;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ff9933);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    font-size: 0.7rem;
    color: #0a0f1c;
    font-weight: 700;
}

/* ========== MINI COMPARISON ========== */
.mini-comparison {
    background: #1e2538;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
}

.mini-comp-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #2a3147;
}

.mini-comp-item:last-child {
    border-bottom: none;
}

.comp-country {
    width: 80px;
    font-weight: 600;
}

.comp-bar-container {
    flex: 1;
    height: 12px;
    background: #2a3147;
    border-radius: 6px;
    overflow: hidden;
}

.comp-bar {
    height: 100%;
    background: linear-gradient(90deg, #4a90e2, #7b68ee);
    border-radius: 6px;
}

.mini-comp-item.highlight .comp-bar {
    background: linear-gradient(90deg, #ffd700, #ff9933);
}

.comp-value {
    width: 50px;
    text-align: right;
    font-weight: 600;
    color: #ffd700;
}

/* ========== PARTNERSHIPS ========== */
.partnerships-showcase {
    background: linear-gradient(145deg, #1a1f2f, #111827);
    border-radius: 24px;
    padding: 30px;
    margin-top: 30px;
}

.partner-circles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
}

.partner-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.partner-flag {
    font-size: 4rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s ease;
}

.partner-circle:hover .partner-flag {
    transform: scale(1.1);
}

.partner-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.partner-detail {
    font-size: 0.8rem;
    color: #8892b0;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    border-radius: 40px;
}

/* ========== VS COMPARISON CARDS ========== */
.comparison-card {
    background: #1e2538;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.comparison-card.critical {
    border: 2px solid #f44336;
    position: relative;
}

.vs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.vs-country {
    font-size: 2rem;
    font-weight: 700;
}

.vs-country.india {
    color: #ff9933;
}

.vs-country.usa {
    color: #4a90e2;
}

.vs-country.china {
    color: #f44336;
}

.vs-country.israel {
    color: #4a90e2;
}

.vs-badge {
    background: #2a3147;
    padding: 8px 25px;
    border-radius: 40px;
    font-weight: 700;
    color: white;
}

.vs-badge.critical-badge {
    background: #f44336;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(244, 67, 54, 0); }
    100% { box-shadow: 0 0 0 0 rgba(244, 67, 54, 0); }
}

.vs-stats {
    margin-bottom: 25px;
}

.vs-stat-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #2a3147;
}

.vs-stat-left {
    width: 150px;
    color: #8892b0;
}

.vs-stat-center {
    flex: 1;
    text-align: right;
    font-weight: 600;
    color: white;
}

.vs-stat-center-vs {
    width: 60px;
    text-align: center;
    color: #ffd700;
    font-weight: 700;
}

.vs-stat-right {
    flex: 1;
    font-weight: 600;
    color: white;
}

.vs-stat-row.highlight-row {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
}

.vs-category-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: #252d42;
    border-radius: 16px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.cat-name {
    color: #8892b0;
}

.cat-india {
    color: #ff9933;
    font-weight: 700;
}

.cat-usa {
    color: #4a90e2;
    font-weight: 700;
}

.cat-china {
    color: #f44336;
    font-weight: 700;
}

.cat-israel {
    color: #4a90e2;
    font-weight: 700;
}

.vs-gap {
    text-align: center;
    padding: 15px;
    background: #252d42;
    border-radius: 40px;
}

.gap-label {
    color: #8892b0;
    margin-right: 10px;
}

.gap-value {
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffd700;
}

.warning-banner {
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid #f44336;
    color: #ff8a80;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 20px 0;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.insight-box {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.insight-box i {
    color: #ffd700;
    font-size: 1.5rem;
}

.partnership-note {
    text-align: center;
    background: #252d42;
    padding: 15px;
    border-radius: 40px;
    color: #ffd700;
    font-weight: 600;
    margin-top: 20px;
}

/* ========== MASTER TABLE ========== */
.table-container {
    overflow-x: auto;
    background: #1e2538;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
}

.master-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.master-table th {
    padding: 15px;
    text-align: left;
    background: #252d42;
    color: #ffd700;
    font-weight: 600;
}

.master-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #2a3147;
}

.master-table .category-name {
    color: white;
    font-weight: 500;
}

.master-table .india-cell {
    font-weight: 700;
    color: #ffd700;
}

.master-table .usa-cell {
    color: #4a90e2;
}

.master-table .china-cell {
    color: #f44336;
}

.master-table .russia-cell {
    color: #e0e0e0;
}

.master-table .israel-cell {
    color: #4a90e2;
}

/* ========== RADAR CHART ========== */
.radar-container {
    background: #1e2538;
    border-radius: 24px;
    padding: 30px;
    margin-top: 30px;
}

.radar-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffd700;
}

/* ========== RANKINGS ========== */
.tier-container {
    margin-bottom: 25px;
    border-radius: 16px;
    overflow: hidden;
}

.tier-label {
    background: #252d42;
    padding: 15px 25px;
    font-weight: 700;
    color: #8892b0;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.tier-1 .tier-label { background: linear-gradient(135deg, #ffd700, #ffb347); color: #0a0f1c; }
.tier-2 .tier-label { background: linear-gradient(135deg, #4a90e2, #7b68ee); color: white; }
.tier-3 .tier-label { background: #2a3147; }
.tier-4 .tier-label { background: #ff9933; color: #0a0f1c; }
.tier-5 .tier-label { background: #1a1f2f; }

.rank-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: #1e2538;
    border-bottom: 1px solid #2a3147;
}

.rank-item:last-child {
    border-bottom: none;
}

.rank-item.highlight-rank {
    background: rgba(255, 153, 51, 0.15);
    border-left: 4px solid #ff9933;
}

.rank-number {
    width: 30px;
    font-weight: 700;
    color: #8892b0;
}

.rank-flag {
    font-size: 1.5rem;
    width: 40px;
}

.rank-country {
    width: 150px;
    font-weight: 600;
}

.rank-bar-container {
    flex: 1;
    height: 10px;
    background: #2a3147;
    border-radius: 5px;
    overflow: hidden;
}

.rank-bar {
    height: 100%;
    background: linear-gradient(90deg, #4a90e2, #7b68ee);
    border-radius: 5px;
}

.rank-percent {
    width: 60px;
    text-align: right;
    font-weight: 600;
    color: #ffd700;
}

.trajectory-note {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(145deg, #1a1f2f, #111827);
    border-radius: 16px;
    text-align: center;
    border: 1px solid #ffd700;
}

.trajectory-arrow {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-right: 10px;
}

.trajectory-detail {
    display: block;
    margin-top: 10px;
    color: #8892b0;
    font-size: 0.95rem;
}

/* ========== DEFICIENCIES ========== */
.warning-title {
    color: #ff8a80;
    border-left-color: #f44336;
}

.deficit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.deficit-card {
    background: #1e2538;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
}

.deficit-card.critical {
    border-color: #f44336;
}

.deficit-header {
    padding: 15px 20px;
    background: #252d42;
    display: flex;
    align-items: center;
    gap: 15px;
}

.deficit-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f44336;
}

.deficit-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.deficit-content {
    padding: 20px;
}

.deficit-desc {
    color: #e0e0e0;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.deficit-bar-container {
    height: 20px;
    background: #2a3147;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.deficit-bar {
    height: 100%;
    background: linear-gradient(90deg, #f44336, #ff8a80);
    border-radius: 10px;
}

.deficit-numbers {
    display: flex;
    justify-content: space-between;
    color: #8892b0;
    font-size: 0.9rem;
}

.deficit-detail-text {
    color: #ff8a80;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    padding: 10px;
    background: rgba(244, 67, 54, 0.1);
    border-radius: 8px;
    margin-top: 10px;
}

/* Meta Problems */
.meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.meta-card {
    background: #1e2538;
    border-radius: 16px;
    padding: 25px;
    border-top: 4px solid #f44336;
}

.meta-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700;
}

.meta-desc {
    color: #8892b0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ========== FUTURE SCENARIOS ========== */
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.scenario-card {
    border-radius: 20px;
    overflow: hidden;
    background: #1e2538;
}

.scenario-card.best {
    border: 1px solid #4CAF50;
}

.scenario-card.likely {
    border: 1px solid #FFC107;
}

.scenario-card.worst {
    border: 1px solid #f44336;
}

.scenario-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.best .scenario-header { background: rgba(76, 175, 80, 0.15); }
.likely .scenario-header { background: rgba(255, 193, 7, 0.15); }
.worst .scenario-header { background: rgba(244, 67, 54, 0.15); }

.scenario-icon {
    font-size: 2rem;
}

.scenario-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.scenario-timeline {
    padding: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #2a3147;
}

.timeline-year {
    font-weight: 700;
    color: #ffd700;
    min-width: 60px;
}

.timeline-desc {
    color: #e0e0e0;
}

/* Action Plan */
.action-plan {
    background: linear-gradient(145deg, #1a1f2f, #111827);
    border-radius: 24px;
    padding: 30px;
    margin-top: 30px;
}

.action-plan h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #ffd700;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.action-check {
    font-size: 1.2rem;
}

.action-text {
    font-size: 0.95rem;
}

.action-quote {
    text-align: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    font-style: italic;
    color: #ffd700;
    font-weight: 500;
    line-height: 1.6;
}

/* ========== FOOTER ========== */
.dashboard-footer {
    margin-top: 50px;
    padding: 30px;
    text-align: center;
    border-top: 1px solid #2a3147;
    color: #8892b0;
}

.footer-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-tags span {
    padding: 5px 15px;
    background: #252d42;
    border-radius: 40px;
    font-size: 0.85rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .nav-tabs {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .nav-tab {
        text-align: center;
    }
    
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vs-stat-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .vs-stat-left {
        width: 100%;
    }
    
    .vs-stat-center,
    .vs-stat-right {
        width: 100%;
        text-align: left;
    }
    
    .vs-stat-center-vs {
        align-self: center;
    }
    
    .vs-category-breakdown {
        grid-template-columns: 1fr;
    }
    
    .category-item {
        justify-content: space-between;
    }
    
    .partner-circles {
        flex-direction: column;
        align-items: center;
    }
}

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

::-webkit-scrollbar-track {
    background: #1a1f2f;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffb347;
}
