.guide-card { transition: transform 0.2s ease, box-shadow 0.2s ease; border: 1px solid var(--glass-border); }
.guide-card:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important; border-color: rgba(0, 113, 227, 0.3); }

.guide-badge { font-size: 0.6rem; padding: 0.2rem 0.4rem; }
.guide-title { font-size: 0.85rem; }
.guide-desc { font-size: 0.7rem; line-height: 1.2; }

@media (min-width: 576px) {
    .guide-badge { font-size: 0.65rem; }
    .guide-title { font-size: 0.95rem; }
    .guide-desc { font-size: 0.75rem; line-height: 1.3; }
}

@media (min-width: 768px) {
    .guide-badge { font-size: 0.7rem; padding: 0.2rem 0.4rem; }
    .guide-title { font-size: 1.05rem; }
    .guide-desc { font-size: 0.85rem; line-height: 1.2; }
}

@media (min-width: 992px) {
    .guide-badge { font-size: 0.75rem; }
    .guide-title { font-size: 1.15rem; }
    .guide-desc { font-size: 0.9rem; line-height: 1.2; }
}

@media (max-width: 767px) {
    .mobile-text-shrink { font-size: 0.70rem !important; }
    .effects-header-container { flex-direction: column !important; align-items: flex-start !important; }
    .effects-header-badges { justify-content: flex-start !important; margin-top: 10px; width: 100%; }
    .social-media-badge-shrink { font-size: 0.7rem !important; padding: 0.2rem 0.4rem !important; vertical-align: middle !important;}
}

.progress-btn { position: relative; overflow: hidden; border: none; }
.progress-btn .progress-fill {
    position: absolute; top: 0; left: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.15); width: 0%;
    transition: width 0.1s linear; z-index: 1;
}
body.dark-mode .progress-btn .progress-fill { background: rgba(255, 255, 255, 0.2); }
.progress-btn span { position: relative; z-index: 2; pointer-events: none; }

body.light-mode .social-media-badge-shrink {
    background-color: #000 !important;
    color: #fff !important;
}
body.dark-mode .social-media-badge-shrink {
    background-color: #fff !important;
    color: #000 !important;
}