.carousel-wrapper { width: 100%; margin-top: 10px; }
.carousel-row { display: flex; align-items: center; justify-content: center; gap: 20px; width: 100%; max-width: 1060px; margin: 0 auto; }
.carousel-viewport { flex: 1 1 auto; min-width: 0; overflow: hidden; border-radius: 12px; background: var(--bg-panel); padding: 8px; border: 1px solid var(--border-color); box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px var(--glow-primary); }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.carousel-slide { flex: 0 0 100%; }
.carousel-slide img { width: 100%; display: block; border-radius: 8px; }
.carousel-arrow { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%; background: rgba(22,27,34,0.6); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; transition: all 0.3s ease; }
.carousel-arrow:hover { background: rgba(111,66,193,0.4); border-color: rgba(111,66,193,0.6); transform: scale(1.1); }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 15px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.25); border: 2px solid rgba(255,255,255,0.4); cursor: pointer; transition: .3s; }
.carousel-dot.active { background: #6f42c1; border-color: #6f42c1; transform: scale(1.4); }
@media (max-width: 767px) { .carousel-arrow { width: 36px; height: 36px; font-size: 1rem; } .carousel-row { gap: 8px; } }
