.kol-mpr-reel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #0f0f1e;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

html.light-mode .kol-mpr-reel-container {
    background: #f5f5f5;
}

.kol-mpr-reel-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kol-mpr-reel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    top: 0;
    left: 0;
    z-index: 1;
}

.kol-mpr-reel-slide.active {
    display: flex !important;
    opacity: 1;
    z-index: 10;
}

.kol-mpr-reel-card {
    width: 100%;
    max-width: 600px;
    height: 80vh;
    position: relative;
}

.kol-mpr-reel-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

html.light-mode .kol-mpr-reel-image-wrapper {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.kol-mpr-reel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kol-mpr-reel-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
    color: white;
    letter-spacing: 0.5px;
}

.kol-mpr-reel-user-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFA500 100%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    font-weight: 900;
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), 0 16px 48px rgba(255, 165, 0, 0.7), 0 0 30px rgba(255, 165, 0, 0.5);
}

html.light-mode .kol-mpr-reel-user-rating {
    background: linear-gradient(135deg, #FFD54F 0%, #FFA500 100%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35), 0 16px 48px rgba(255, 165, 0, 0.6), 0 0 30px rgba(255, 165, 0, 0.4);
}

.kol-mpr-reel-user-rating-value {
    font-size: 35px;
    line-height: 1;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.kol-mpr-reel-user-avatar {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

.kol-mpr-reel-user-avatar:hover {
    transform: scale(1.05);
}

.kol-mpr-reel-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kol-mpr-reel-badge.hot {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
    box-shadow: 0 4px 12px rgba(255, 82, 82, 0.3);
}

.kol-mpr-reel-badge.favorite {
    background: linear-gradient(135deg, #FFB84D 0%, #FFA500 100%);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

/* Overlay */
.kol-mpr-reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 40%, rgba(0, 0, 0, 0.98) 100%);
    padding: 40px 20px 20px;
    z-index: 10;
}

html.light-mode .kol-mpr-reel-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0.98) 100%);
}

/* Info Section */
.kol-mpr-reel-info {
    margin-bottom: 20px;
}

.kol-mpr-reel-info h2 {
    margin: 0 0 6px 0;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

html.light-mode .kol-mpr-reel-info h2 {
    color: #333;
}

.kol-mpr-reel-info p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

html.light-mode .kol-mpr-reel-info p {
    color: rgba(0, 0, 0, 0.6);
}

/* Rating Buttons */
.kol-mpr-reel-rating-buttons {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 12px;
    margin-top: 16px;
}

html.light-mode .kol-mpr-reel-rating-buttons {
    background: rgba(255, 255, 255, 0.3);
}

.kol-mpr-reel-rating-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-align: center;
}

html.light-mode .kol-mpr-reel-rating-label {
    color: rgba(0, 0, 0, 0.5);
}

.kol-mpr-reel-buttons-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 8px;
}

.kol-mpr-reel-btn {
    aspect-ratio: 1;
    border-width: 2px;
    border-style: solid;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    height: 32px;
    padding: 0 15px;
    background: linear-gradient(135deg, #383838 0%, #343434 100%);
    color: white;
    border-top-color: #555555;
    border-left-color: #555555;
    border-right-color: #282828;
    border-bottom-color: #282828;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

html.light-mode .kol-mpr-reel-btn {
    background: linear-gradient(135deg, #e2e2e2 0%, #d4d4d4 100%);
    color: #2d2d2d;
    border-top-color: #f0f0f0;
    border-left-color: #f0f0f0;
    border-right-color: #b0b0b0;
    border-bottom-color: #b0b0b0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Color gradient for buttons - yellow (1) to red (10) */
.kol-mpr-reel-btn-1 { --rating: 1; background: linear-gradient(135deg, #FFE082 0%, #FFD54F 100%) !important; color: white !important; }
.kol-mpr-reel-btn-1:hover { background: linear-gradient(135deg, #FFE082 0%, #FFD54F 100%) !important; filter: brightness(1.15); }
.kol-mpr-reel-btn-1.voted:not(.filled):hover { background: linear-gradient(135deg, #FFE082 0%, #FFD54F 100%) !important; }

.kol-mpr-reel-btn-2 { --rating: 2; background: linear-gradient(135deg, #FFD54F 0%, #FFCA28 100%) !important; color: white !important; }
.kol-mpr-reel-btn-2:hover { background: linear-gradient(135deg, #FFD54F 0%, #FFCA28 100%) !important; filter: brightness(1.15); }
.kol-mpr-reel-btn-2.voted:not(.filled):hover { background: linear-gradient(135deg, #FFD54F 0%, #FFCA28 100%) !important; }

.kol-mpr-reel-btn-3 { --rating: 3; background: linear-gradient(135deg, #FFC107 0%, #FFAB00 100%) !important; color: white !important; }
.kol-mpr-reel-btn-3:hover { background: linear-gradient(135deg, #FFC107 0%, #FFAB00 100%) !important; filter: brightness(1.15); }
.kol-mpr-reel-btn-3.voted:not(.filled):hover { background: linear-gradient(135deg, #FFC107 0%, #FFAB00 100%) !important; }

.kol-mpr-reel-btn-4 { --rating: 4; background: linear-gradient(135deg, #FFAB00 0%, #FFA500 100%) !important; color: white !important; }
.kol-mpr-reel-btn-4:hover { background: linear-gradient(135deg, #FFAB00 0%, #FFA500 100%) !important; filter: brightness(1.15); }
.kol-mpr-reel-btn-4.voted:not(.filled):hover { background: linear-gradient(135deg, #FFAB00 0%, #FFA500 100%) !important; }

.kol-mpr-reel-btn-5 { --rating: 5; background: linear-gradient(135deg, #FFA500 0%, #FF9800 100%) !important; color: white !important; }
.kol-mpr-reel-btn-5:hover { background: linear-gradient(135deg, #FFA500 0%, #FF9800 100%) !important; filter: brightness(1.15); }
.kol-mpr-reel-btn-5.voted:not(.filled):hover { background: linear-gradient(135deg, #FFA500 0%, #FF9800 100%) !important; }

.kol-mpr-reel-btn-6 { --rating: 6; background: linear-gradient(135deg, #FF9800 0%, #FF8F00 100%) !important; color: white !important; }
.kol-mpr-reel-btn-6:hover { background: linear-gradient(135deg, #FF9800 0%, #FF8F00 100%) !important; filter: brightness(1.15); }
.kol-mpr-reel-btn-6.voted:not(.filled):hover { background: linear-gradient(135deg, #FF9800 0%, #FF8F00 100%) !important; }

.kol-mpr-reel-btn-7 { --rating: 7; background: linear-gradient(135deg, #FF8F00 0%, #FF7043 100%) !important; color: white !important; }
.kol-mpr-reel-btn-7:hover { background: linear-gradient(135deg, #FF8F00 0%, #FF7043 100%) !important; filter: brightness(1.15); }
.kol-mpr-reel-btn-7.voted:not(.filled):hover { background: linear-gradient(135deg, #FF8F00 0%, #FF7043 100%) !important; }

.kol-mpr-reel-btn-8 { --rating: 8; background: linear-gradient(135deg, #FF7043 0%, #FF5722 100%) !important; color: white !important; }
.kol-mpr-reel-btn-8:hover { background: linear-gradient(135deg, #FF7043 0%, #FF5722 100%) !important; filter: brightness(1.15); }
.kol-mpr-reel-btn-8.voted:not(.filled):hover { background: linear-gradient(135deg, #FF7043 0%, #FF5722 100%) !important; }

.kol-mpr-reel-btn-9 { --rating: 9; background: linear-gradient(135deg, #FF5722 0%, #FF3D00 100%) !important; color: white !important; }
.kol-mpr-reel-btn-9:hover { background: linear-gradient(135deg, #FF5722 0%, #FF3D00 100%) !important; filter: brightness(1.15); }
.kol-mpr-reel-btn-9.voted:not(.filled):hover { background: linear-gradient(135deg, #FF5722 0%, #FF3D00 100%) !important; }

.kol-mpr-reel-btn-10 { --rating: 10; background: linear-gradient(135deg, #FF3D00 0%, #FF1744 100%) !important; color: white !important; }
.kol-mpr-reel-btn-10:hover { background: linear-gradient(135deg, #FF3D00 0%, #FF1744 100%) !important; filter: brightness(1.15); }
.kol-mpr-reel-btn-10.voted:not(.filled):hover { background: linear-gradient(135deg, #FF3D00 0%, #FF1744 100%) !important; }

.kol-mpr-reel-btn:hover:not(.voted) {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.kol-mpr-reel-btn:active {
    transform: scale(0.95);
}

.kol-mpr-reel-btn.submitted {
    animation: pulse 0.6s ease-out;
}

/* After voting: empty/unfilled buttons show light color but are clickable */
.kol-mpr-reel-btn.voted:not(.filled) {
    opacity: 0.5;
    cursor: pointer;
    background: rgba(150, 150, 150, 0.2) !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

.kol-mpr-reel-btn.voted:not(.filled):hover {
    opacity: 1 !important;
    color: white !important;
}

html.light-mode .kol-mpr-reel-btn.voted:not(.filled) {
    background: rgba(180, 180, 180, 0.25) !important;
    color: rgba(0, 0, 0, 0.5) !important;
}

html.light-mode .kol-mpr-reel-btn.voted:not(.filled):hover {
    opacity: 1 !important;
    color: black !important;
}

/* After voting: filled buttons keep their gradient colors */
.kol-mpr-reel-btn.voted.filled {
    opacity: 1;
    cursor: pointer;
    filter: brightness(0.9);
}

.kol-mpr-reel-btn.voted.filled:hover {
    filter: brightness(1.0);
}

/* User's chosen button shows gradient with glow */
.kol-mpr-reel-btn.user-voted {
    opacity: 1 !important;
    box-shadow: 0 0 16px rgba(255, 100, 0, 0.8) !important;
    transform: scale(1.08) !important;
    filter: brightness(1.1) !important;
    cursor: pointer !important;
}

@keyframes pulse {
    0% {
        transform: scale(1.2);
        filter: brightness(1.2);
    }
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.kol-mpr-already-voted {
    margin-top: 12px;
    font-size: 13px;
    text-align: center;
    color: rgba(255, 165, 0, 0.9);
    font-weight: 600;
}

html.light-mode .kol-mpr-already-voted {
    color: rgba(255, 165, 0, 0.8);
}

/* Counter */
.kol-mpr-reel-counter {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

html.light-mode .kol-mpr-reel-counter {
    color: rgba(0, 0, 0, 0.4);
}

/* Navigation Controls */
.kol-mpr-reel-controls {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 20;
}

.kol-mpr-reel-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0f0f1e;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

html.light-mode .kol-mpr-reel-nav {
    background: white;
    color: #333;
}

.kol-mpr-reel-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.kol-mpr-reel-nav:active {
    transform: scale(0.95);
}

.kol-mpr-reel-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Empty State */
.kol-mpr-reel-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #0f0f1e;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

html.light-mode .kol-mpr-reel-empty {
    background: #f5f5f5;
    color: rgba(0, 0, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .kol-mpr-reel-card {
        max-width: 100%;
        height: 85vh;
        margin: 0 16px;
        border-radius: 16px;
    }

    .kol-mpr-reel-overlay {
        padding: 30px 16px 16px;
    }

    .kol-mpr-reel-info h2 {
        font-size: 20px;
    }

    .kol-mpr-reel-controls {
        position: fixed;
        bottom: 24px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 10px;
        top: auto;
    }

    .kol-mpr-reel-nav {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .kol-mpr-reel-card {
        height: 90vh;
        margin: 0 8px;
    }

    .kol-mpr-reel-buttons-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .kol-mpr-reel-info h2 {
        font-size: 18px;
    }

    .kol-mpr-reel-info p {
        font-size: 12px;
    }
}
