/* 全局樣式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

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

/* 導航欄 */
.navbar {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo i {
    font-size: 2rem;
}


/* 主標題區域 */
.hero-section {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 50%, #2d1b69 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffd700" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffd700" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffd700" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffd700" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gold-text {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.white-text {
    color: #fff;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: #e0e0e0;
    margin-top: 0.5rem;
}

/* 區塊標題 */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    font-size: 2rem;
}

/* 推廣流程 */
.process-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    position: relative;
    z-index: 2;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ffd700, #ffed4e, #ffd700);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 100px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a2e;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border: 4px solid #1a1a2e;
    z-index: 2;
}

.step-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.step-details {
    color: #e0e0e0;
}

.step-description {
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.step-resources {
    margin: 1.5rem 0;
}

.step-resources h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-resources h4:not(:first-child) {
    margin-top: 2rem;
}

.step-resources ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.step-resources li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    transition: all 0.3s ease;
}

.step-resources li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
    width: 100%;
    transition: all 0.3s ease;
}

.step-resources li:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.step-resources li a:hover {
    color: #ffd700;
}

.step-resources li a::after {
    content: '\f35d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    margin-left: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.step-resources li a:hover::after {
    opacity: 1;
}

.step-resources i {
    color: #ffd700;
}

.step-tasks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.task-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.task-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

.step-notes {
    margin-top: 1.5rem;
}

.step-notes h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.note-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.note-card {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.note-card h5 {
    color: #ffd700;
    font-weight: 600;
}

.step-reward {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.step-reward h4 {
    color: #4caf50;
    margin-bottom: 0.5rem;
}

.reward-text {
    color: #4caf50;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-learning {
    margin-top: 1.5rem;
}

.step-learning h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.learning-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.learning-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    border-left: 3px solid #4caf50;
}

.learning-item i {
    color: #4caf50;
}

/* 獎金制度 */
.bonus-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.bonus-card.highlight {
    border: 2px solid #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.bonus-card.special {
    border: 2px solid #4caf50;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.bonus-header h3 {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
}

.bonus-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.bonus-badge.premium {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.bonus-badge.special-badge {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
}

.bonus-content {
    color: #e0e0e0;
}

.bonus-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.bonus-label {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 900;
    color: #4caf50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
    margin-bottom: 0.5rem;
}

.bonus-desc {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.bonus-note {
    background: rgba(255, 107, 107, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* 升等型態 */
.upgrade-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.upgrade-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
}

.tab-button:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.upgrade-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.upgrade-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.upgrade-header h3 {
    color: #ffd700;
    font-size: 2rem;
    font-weight: 700;
}

.upgrade-badge {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
}

.upgrade-steps {
    margin-bottom: 2rem;
}

.upgrade-step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ffd700;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-header .step-number {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.step-header h4 {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 600;
}

.price-breakdown {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e0e0e0;
}

.price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #4caf50;
}

.payment-info {
    background: rgba(76, 175, 80, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.profit-analysis {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.profit-analysis h4 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.profit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.profit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.profit-label {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.profit-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: #4caf50;
    margin-bottom: 0.5rem;
}

.profit-desc {
    font-size: 0.8rem;
    color: #b0b0b0;
}

.total-profit {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.total-label {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.max-profit {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    max-width: 100%;
    word-wrap: break-word;
    line-height: 1.3;
}

.roi {
    font-size: 1.2rem;
    font-weight: 700;
    background: rgba(26, 26, 46, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
    line-height: 1.4;
}

/* 合作拆帳 */
.partnership-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.partnership-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partnership-content {
    color: #e0e0e0;
}

.partnership-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.partnership-label {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
}

.partnership-arrow {
    color: #ffd700;
    font-size: 2rem;
}

.partnership-result {
    flex: 1;
    min-width: 300px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    border-left: 4px solid #4caf50;
}

.amount {
    font-size: 1.3rem;
    font-weight: 900;
    color: #4caf50;
}

.breakdown {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-top: 0.3rem;
}

.partnership-benefit {
    background: rgba(76, 175, 80, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.partnership-benefit i {
    font-size: 1.5rem;
}

/* 頁腳 */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-note {
    color: #e0e0e0;
}

.footer-note p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-style: italic;
}

.copyright {
    font-size: 0.8rem;
    color: #ffd700;
    font-weight: 600;
    margin-top: 1rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-title .gold-text {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }
    
    .process-step {
        padding-left: 60px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .step-tasks {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .task-item {
        min-width: 0;
        flex-shrink: 1;
    }
    
    .task-item span {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .upgrade-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .partnership-item {
        flex-direction: column;
        text-align: center;
    }
    
    .partnership-arrow {
        transform: rotate(90deg);
    }
    
    .nav-container {
        justify-content: center;
    }
    
    .footer-note p .footer-segment {
        display: block;
        margin-bottom: 0.3rem;
    }

    .footer-note p .footer-segment:last-child {
        margin-bottom: 0;
    }

    .footer-note p .footer-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-title .gold-text {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        align-items: center;
        justify-content: center;
        max-width: 300px;
        margin: 2rem auto 0;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-tasks {
        margin: 1rem 0;
    }
    
    .task-item {
        padding: 0.8rem;
        gap: 0.6rem;
    }
    
    .task-item span {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .bonus-card {
        padding: 1.5rem;
    }
    
    .upgrade-card {
        padding: 1.5rem;
    }
}

/* 動畫效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step {
    animation: fadeInUp 0.6s ease-out;
}

.bonus-card {
    animation: fadeInUp 0.6s ease-out;
}

/* 滾動條樣式 */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}
