/* =========================================
   投资学习小组落地页样式
   ========================================= */

/* CSS Variables */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --accent-gradient: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    --gold-color: #f4c430;
    --gold-gradient: linear-gradient(135deg, #f4c430 0%, #ffdf5d 50%, #f4c430 100%);
    --success-color: #00d26a;
    --danger-color: #ff4757;
    --text-primary: #1a1a2e;
    --text-secondary: #666;
    --text-light: #888;
    --bg-white: #ffffff;
    --bg-light: #f8f9fc;
    --bg-gradient: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 30px rgba(233, 69, 96, 0.3);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --max-width: 480px;
    --font-primary: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    background-image: url('../images/bg-pattern.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
/* Background Decorations */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gold-color);
    bottom: 20%;
    left: -80px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: 40%;
    right: -50px;
    animation-delay: -10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    bottom: -50px;
    right: 20%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

/* Header Section */
.header {
    padding: 40px 0 30px;
    text-align: center;
}

.badge-limited {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b6b 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.badge-limited i {
    animation: flicker 1s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 71, 87, 0.4); }
    50% { box-shadow: 0 0 30px rgba(255, 71, 87, 0.6); }
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.main-title {
    margin-bottom: 16px;
}

.title-accent {
    display: block;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.title-sub {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 8px;
}

.subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 320px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.hero-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-box {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(244, 196, 48, 0.3);
}

.stat-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
}

.hero-content {
    padding: 24px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 210, 106, 0.1);
    color: var(--success-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-list li i {
    color: var(--accent-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-list li span {
    font-size: 14px;
    color: var(--text-secondary);
}

/* CTA Button */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 24px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin: 24px 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button .btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* Pulse Animation for Buttons */
.pulse-btn {
    animation: pulse-scale 1.5s ease-in-out infinite;
}

@keyframes pulse-scale {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
    }
    50% { 
        transform: scale(1.06); 
        box-shadow: 0 0 35px rgba(233, 69, 96, 0.5);
    }
}

.cta-button:hover {
    animation: none;
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(233, 69, 96, 0.5);
}

/* Success Section */
.success-section {
    padding: 30px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 24px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.section-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Case Cards */
.case-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.case-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gradient);
}

.case-before, .case-after {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.case-before .label, .case-after .label {
    font-size: 12px;
    color: var(--text-light);
}

.case-before .amount {
    font-size: 18px;
    font-weight: 700;
}

.case-after .amount {
    font-size: 22px;
    font-weight: 800;
}

.amount.negative {
    color: var(--danger-color);
}

.amount.positive {
    color: var(--success-color);
}

.case-arrow {
    text-align: center;
    padding: 8px 0;
}

.case-arrow i {
    color: var(--success-color);
    font-size: 20px;
    animation: bounce-down 1s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.case-info {
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: 8px;
}

.case-info strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.case-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* Weekly Section */
.weekly-section {
    padding: 30px 0;
}

.weekly-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    color: white;
    position: relative;
    overflow: hidden;
}

.weekly-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.2) 0%, transparent 70%);
}

.weekly-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.weekly-icon i {
    font-size: 24px;
    color: white;
}

.weekly-content {
    position: relative;
    z-index: 1;
}

.weekly-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.weekly-content > p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.weekly-content ul {
    list-style: none;
}

.weekly-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
}

.weekly-content ul li i {
    color: var(--gold-color);
    font-size: 12px;
}

.weekly-image {
    margin-top: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.weekly-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.placeholder-icon {
    width: 100%;
    height: 150px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.placeholder-icon i {
    font-size: 48px;
    opacity: 0.5;
}

/* Exclusive Section */
.exclusive-section {
    padding: 30px 0;
}

.exclusive-header {
    text-align: center;
    margin-bottom: 24px;
}

.exclusive-header i {
    font-size: 32px;
    color: var(--gold-color);
    margin-bottom: 12px;
}

.exclusive-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.exclusive-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.exclusive-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.exclusive-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.exclusive-icon i {
    font-size: 20px;
    color: var(--accent-color);
}

.exclusive-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.exclusive-item p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Reviews Section */
.reviews-section {
    padding: 30px 0;
    overflow: hidden;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}

.reviews-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.review-card {
    flex: 0 0 calc(100% - 40px);
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-avatar i {
    font-size: 18px;
    color: white;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.reviewer-info span {
    font-size: 12px;
    color: var(--text-light);
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    font-size: 12px;
    color: var(--gold-color);
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.review-date {
    font-size: 12px;
    color: var(--text-light);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.slider-btn i {
    font-size: 14px;
    color: inherit;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--accent-color);
    width: 24px;
    border-radius: 4px;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 30px 0;
}

.stat-item {
    text-align: center;
    padding: 16px 8px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.stat-item .stat-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.stat-item .stat-icon i {
    font-size: 14px;
    color: var(--accent-color);
}

.stat-item .stat-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    display: block;
}

.stat-item .stat-name {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 4px;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #ff4757 0%, #e94560 100%);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin: 20px 0;
}

.urgency-content {
    text-align: center;
    color: white;
}

.urgency-icon {
    font-size: 36px;
    margin-bottom: 12px;
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.urgency-text h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.urgency-text p {
    font-size: 14px;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 12px 14px;
    min-width: 55px;
    text-align: center;
}

.countdown-value {
    display: block;
    font-size: 22px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 11px;
    opacity: 0.8;
    margin-top: 2px;
}

/* FAQ Section */
.faq-section {
    padding: 30px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links .divider {
    color: #ddd;
    margin: 0 10px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.footer-disclaimer {
    font-size: 11px;
    color: var(--text-light);
}

/* Fixed CTA */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 100%);
    padding: 16px 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.cta-button-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: var(--max-width);
    padding: 16px 24px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.cta-button-fixed .btn-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.cta-button-fixed:hover {
    animation: none;
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(233, 69, 96, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius-lg);
    max-width: 440px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.modal-close {
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-color);
    color: white;
}

.modal-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-body h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 16px 0 8px;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.modal-body ul {
    padding-left: 20px;
    margin: 8px 0;
}

.modal-body ul li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 4px;
}

/* Responsive */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
        padding-bottom: 100px;
    }
    
    .title-accent {
        font-size: 38px;
    }
    
    .review-card {
        flex: 0 0 calc(50% - 20px);
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Selection */
::selection {
    background: var(--accent-color);
    color: white;
}

