* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Default Theme: Blue */
    --color-1: #2F2FE4;
    --color-2: #162E93;
    --color-3: #1A1953;
    --color-4: #080616;
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --shadow-color: rgba(47, 47, 228, 0.3);
}

[data-theme="blue"] {
    --color-1: #2F2FE4;
    --color-2: #162E93;
    --color-3: #1A1953;
    --color-4: #080616;
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --shadow-color: rgba(47, 47, 228, 0.3);
}

[data-theme="cold"] {
    --color-1: #6367FF;
    --color-2: #8494FF;
    --color-3: #C9BEFF;
    --color-4: #FFDBFD;
    --text-color: #2a2a2a;
    --text-secondary: rgba(42, 42, 42, 0.7);
    --shadow-color: rgba(99, 103, 255, 0.3);
}

[data-theme="pink"] {
    --color-1: #F13E93;
    --color-2: #F891BB;
    --color-3: #F9D0CD;
    --color-4: #FAFFCB;
    --text-color: #2a2a2a;
    --text-secondary: rgba(42, 42, 42, 0.7);
    --shadow-color: rgba(241, 62, 147, 0.3);
}

[data-theme="white"] {
    --color-1: #C0E1D2;
    --color-2: #E5EEE4;
    --color-3: #F6F4E8;
    --color-4: #DC9B9B;
    --text-color: #2a2a2a;
    --text-secondary: rgba(42, 42, 42, 0.7);
    --shadow-color: rgba(192, 225, 210, 0.4);
}

[data-theme="dark"] {
    --color-1: #222831;
    --color-2: #393E46;
    --color-3: #948979;
    --color-4: #DFD0B8;
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --shadow-color: rgba(34, 40, 49, 0.5);
}

body {
    font-family: 'Comic Sans MS', 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--color-4);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Background Pattern */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
    background-image: 
        repeating-linear-gradient(45deg, var(--color-1) 0px, var(--color-1) 2px, transparent 2px, transparent 12px),
        repeating-linear-gradient(-45deg, var(--color-2) 0px, var(--color-2) 2px, transparent 2px, transparent 12px),
        radial-gradient(circle at 20% 30%, var(--color-3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--color-1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, var(--color-2) 0%, transparent 70%);
    background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%, 100% 100%;
    pointer-events: none;
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, 15px) scale(1.05); }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-1);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    top: 30%;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 70%;
    animation-delay: 8s;
    animation-duration: 16s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
    }
    50% {
        transform: translateY(-60px) translateX(-20px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) translateX(-30px) rotate(270deg);
    }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
    min-height: 100vh;
    padding: 20px;
}

/* View System */
.view {
    display: none;
    animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.view.active {
    display: block;
}

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

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.app-title {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--color-1), var(--color-2), var(--color-1));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.emoji-bounce {
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.emoji-bounce:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-10deg); }
    75% { transform: translateY(-5px) rotate(5deg); }
}

/* Bubble Buttons */
.bubble-btn {
    background: linear-gradient(135deg, var(--color-2), var(--color-3));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.bubble-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.bubble-btn:hover::before {
    width: 300px;
    height: 300px;
}

.bubble-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px var(--shadow-color);
}

.bubble-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.theme-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.5rem;
}

.icon-rotate {
    display: inline-block;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Theme Dropdown */
.theme-dropdown {
    position: absolute;
    top: 100px;
    right: 20px;
    background: var(--color-3);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 12px 40px var(--shadow-color);
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
    min-width: 220px;
    animation: dropdownBounce 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.theme-dropdown.active {
    display: flex;
}

@keyframes dropdownBounce {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
    60% {
        transform: translateY(5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.08);
}

.theme-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.theme-preview {
    display: flex;
    gap: 4px;
}

.theme-preview span {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.theme-option:hover .theme-preview span {
    transform: scale(1.1);
}

.theme-preview span:nth-child(1) {
    animation: colorPulse 2s ease-in-out infinite;
}

.theme-preview span:nth-child(2) {
    animation: colorPulse 2s ease-in-out infinite 0.2s;
}

.theme-preview span:nth-child(3) {
    animation: colorPulse 2s ease-in-out infinite 0.4s;
}

.theme-preview span:nth-child(4) {
    animation: colorPulse 2s ease-in-out infinite 0.6s;
}

@keyframes colorPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

.theme-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-color);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    animation: floatUp 3s ease-in-out infinite;
}

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

.empty-emoji {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: spin 10s linear infinite;
    display: inline-block;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.empty-state p {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.empty-state span {
    font-size: 1rem;
}

/* Cute Cards */
.cute-card {
    background: linear-gradient(135deg, var(--color-2), var(--color-3));
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 8px 24px var(--shadow-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cute-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cute-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px var(--shadow-color);
}

/* Habit Page Cards */
.habit-page-card {
    background: linear-gradient(135deg, var(--color-2), var(--color-3));
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.habit-page-card:hover {
    transform: translateY(-8px) scale(1.02) rotate(-1deg);
    box-shadow: 0 12px 36px var(--shadow-color);
}

.habit-page-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.habit-page-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.habit-count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Habit Card in Page */
.habit-in-page-card {
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    box-shadow: 0 4px 16px var(--shadow-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.habit-in-page-card:hover {
    transform: translateX(8px) scale(1.03);
    box-shadow: 0 8px 24px var(--shadow-color);
}

.habit-in-page-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.habit-in-page-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.habit-progress-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 700;
}

.progress-bar-mini {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill-mini {
    height: 100%;
    background: linear-gradient(90deg, var(--color-4), var(--color-3));
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add Button */
.add-btn {
    position: fixed;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 2rem;
    z-index: 50;
}

.plus-icon {
    font-size: 2.5rem;
    font-weight: 300;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(50%) scale(1);
        box-shadow: 0 8px 20px var(--shadow-color);
    }
    50% {
        transform: translateX(50%) scale(1.1);
        box-shadow: 0 12px 30px var(--shadow-color);
    }
}

/* Page Header */
.page-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-top: 10px;
}

.back-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
}

.page-title-container {
    flex: 1;
}

.page-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-color);
}

.page-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Progress Section */
.average-progress-section,
.habit-progress-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.progress-card {
    padding: 20px;
}

.card-header {
    margin-bottom: 16px;
}

.card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
}

/* Circular Progress */
.circular-progress-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-progress {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 10;
}

.progress-bar {
    fill: none;
    stroke: var(--color-1);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 8px var(--color-1));
}

.progress-text {
    font-size: 1.5rem;
    font-weight: 800;
    fill: var(--text-color);
    transform: rotate(90deg);
    transform-origin: center;
}

/* Line Graph */
.graph-card {
    padding: 20px;
}

.line-graph {
    width: 100%;
    height: 120px;
    border-radius: 12px;
}

/* Days Container */
.days-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 12px;
    margin-bottom: 100px;
}

.day-checkbox {
    background: linear-gradient(135deg, var(--color-2), var(--color-3));
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px var(--shadow-color);
    position: relative;
}

.day-checkbox:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.day-checkbox.checked {
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    box-shadow: 0 6px 20px var(--color-1);
}

.day-checkbox.checked::after {
    content: '✓';
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 1.2rem;
    color: var(--text-color);
    animation: checkPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkPop {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.day-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-color);
    display: block;
    margin-bottom: 4px;
}

.day-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalBounce {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(-50px);
    }
    60% {
        transform: scale(1.05) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-size: 1.6rem;
    color: var(--text-color);
}

.close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
}

.modal-body {
    padding: 24px;
}

/* Form Elements */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-color);
}

.label-emoji {
    font-size: 1.2rem;
}

.cute-input {
    width: 100%;
    padding: 16px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    background: var(--color-4);
    color: var(--text-color);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cute-input:focus {
    outline: none;
    border-color: var(--color-1);
    background: var(--color-3);
    transform: scale(1.02);
    box-shadow: 0 4px 16px var(--shadow-color);
}

.cute-input::placeholder {
    color: var(--text-secondary);
}

textarea.cute-input {
    resize: vertical;
    min-height: 80px;
}

/* Days Input */
.days-input-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.counter-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
}

.days-input {
    flex: 1;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
}

/* Slider */
.days-slider-container {
    margin-top: 8px;
}

.cute-slider {
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
}

.cute-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    cursor: pointer;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: all 0.3s ease;
}

.cute-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
    box-shadow: 0 6px 16px var(--shadow-color);
}

.cute-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    cursor: pointer;
    box-shadow: 0 4px 12px var(--shadow-color);
    border: none;
    transition: all 0.3s ease;
}

.cute-slider::-moz-range-thumb:hover {
    transform: scale(1.3);
    box-shadow: 0 6px 16px var(--shadow-color);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Create Button */
.create-btn {
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.delete-btn,
.delete-icon {
    background: linear-gradient(135deg, rgba(255, 80, 80, 0.95), rgba(255, 30, 30, 0.95));
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 30, 30, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.delete-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.delete-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.delete-btn:hover,
.delete-icon:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 24px rgba(255, 30, 30, 0.35);
}

.habit-card-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.btn-sparkle {
    font-size: 1.3rem;
    animation: sparkle 1s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.3) rotate(180deg); opacity: 0.7; }
}

/* Responsive */
@media (max-width: 480px) {
    .app-title {
        font-size: 2.2rem;
    }
    
    .average-progress-section,
    .habit-progress-section {
        grid-template-columns: 1fr;
    }
    
    .days-container {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }
}

@media (min-width: 768px) {
    .add-btn {
        right: calc(50% - 250px + 20px);
        transform: translateX(0);
    }
    
    .add-btn.pulse {
        animation: pulseLarge 2s ease-in-out infinite;
    }
    
    @keyframes pulseLarge {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-4);
}

::-webkit-scrollbar-thumb {
    background: var(--color-2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-1);
}