
        .barbell-carousel-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .barbell-carousel-wrapper {
            overflow: hidden;
            border-radius: 15px;
            position: relative;
            padding: 0 64px; /* space for nav buttons so they don't cover cards */
        }

        .barbell-carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 2rem;
        }

        .barbell-carousel-slide {
            flex: 0 0 300px;
        }

        .barbell-carousel-slide .armoury-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .barbell-carousel-slide:hover .armoury-card {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.35);
        }

        /* Navigation Controls */
        .barbell-carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(52, 73, 94, 0.9);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .barbell-carousel-nav:hover {
            background: rgba(52, 152, 219, 0.9);
            transform: translateY(-50%) scale(1.05);
        }

        .barbell-carousel-prev { left: 10px; }
        .barbell-carousel-next { right: 10px; }

        .barbell-carousel-nav:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .barbell-carousel-nav:disabled:hover {
            transform: translateY(-50%);
            background: rgba(52, 73, 94, 0.9);
        }

        /* Bottom Indicators */
        .barbell-carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 2rem;
            padding: 1rem 0;
        }

        .barbell-indicator {
            width: 20px;
            height: 4px;
            border-radius: 2px;
            background: #34495e;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .barbell-indicator.active {
            width: 30px;
            background: #3498db;
            transform: none;
        }

        .barbell-indicator:hover:not(.active) {
            background: #5dade2;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .barbell-carousel-container { padding: 0 1rem; }
            .barbell-carousel-slide { flex: 0 0 250px; }
            .barbell-carousel-nav { width: 40px; height: 40px; }
            .barbell-carousel-prev { left: 5px; }
            .barbell-carousel-next { right: 5px; }
        }

        @media (max-width: 480px) {
            .barbell-carousel-slide { flex: 0 0 200px; }
        }

        /* Theme accent overrides */
        .casting-theme .barbell-indicator.active { background: #fd7e14; }
        .casting-theme .barbell-carousel-nav:hover { background: #fd7e14; }
        .casting-theme .barbell-indicator:hover:not(.active) { background: #ffa860; }
