/* Plugin Wrapper - Ensures consistent box model and isolation from theme styles */
.whoa-plugin-wrapper,
.whoa-plugin-wrapper *,
.whoa-plugin-wrapper *::before,
.whoa-plugin-wrapper *::after {
    box-sizing: border-box;
}

.whoa-plugin-wrapper {
    width: 100%;
    min-width: 280px;
    clear: both;
    position: relative;
}

/* Reset common elements within plugin to prevent theme conflicts */
.whoa-plugin-wrapper h1,
.whoa-plugin-wrapper h2,
.whoa-plugin-wrapper h3,
.whoa-plugin-wrapper h4,
.whoa-plugin-wrapper h5,
.whoa-plugin-wrapper h6 {
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.whoa-plugin-wrapper p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.whoa-plugin-wrapper img {
    max-width: 100%;
    height: auto;
}

.whoa-plugin-wrapper button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
}

.whoa-plugin-wrapper input,
.whoa-plugin-wrapper textarea,
.whoa-plugin-wrapper select {
    font: inherit;
    margin: 0;
}

.whoa-challenge-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    min-width: 280px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.whoa-plugin-wrapper .challenge-header {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.whoa-plugin-wrapper .challenge-artwork {
    max-width: 300px;
    max-height: 200px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whoa-plugin-wrapper .artwork-actions {
    margin-bottom: 20px;
}

.whoa-plugin-wrapper .download-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.whoa-plugin-wrapper .download-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.whoa-plugin-wrapper .download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.whoa-plugin-wrapper .challenge-header h2 {
    font-size: 2.5em;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.whoa-plugin-wrapper .challenge-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.whoa-plugin-wrapper .challenge-dates {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.whoa-plugin-wrapper .challenge-dates p {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    margin: 5px;
    backdrop-filter: blur(10px);
}

/* Countdown Timer Styles */
.whoa-plugin-wrapper .countdown-timer {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 15px 5px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    min-width: 280px;
}

.whoa-plugin-wrapper .countdown-timer.challenge-countdown {
    background: rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.5);
}

.whoa-plugin-wrapper .countdown-timer.voting-countdown {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.5);
}

.whoa-plugin-wrapper .countdown-timer.ended {
    background: rgba(108, 117, 125, 0.2);
    border-color: rgba(108, 117, 125, 0.5);
}

.whoa-plugin-wrapper .countdown-timer.urgent {
    background: rgba(255, 193, 7, 0.3);
    border-color: rgba(255, 193, 7, 0.7);
    animation: pulse-warning 2s infinite;
}

.whoa-plugin-wrapper .countdown-timer.critical {
    background: rgba(220, 53, 69, 0.3);
    border-color: rgba(220, 53, 69, 0.7);
    animation: pulse-critical 1s infinite;
}

.whoa-plugin-wrapper .countdown-timer.expired {
    background: rgba(220, 53, 69, 0.4);
    border-color: rgba(220, 53, 69, 0.8);
    animation: flash-expired 0.5s infinite alternate;
}

@keyframes pulse-warning {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
}

@keyframes pulse-critical {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(220, 53, 69, 0); }
}

@keyframes flash-expired {
    0% { opacity: 1; }
    100% { opacity: 0.7; }
}

.whoa-plugin-wrapper .countdown-label {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.whoa-plugin-wrapper .countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-weight: bold;
}

.whoa-plugin-wrapper .time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 50px;
    backdrop-filter: blur(5px);
}

.whoa-plugin-wrapper .time-number {
    font-size: 1.8em;
    line-height: 1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.whoa-plugin-wrapper .time-label {
    font-size: 0.8em;
    opacity: 0.9;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whoa-plugin-wrapper .countdown-timer.urgent .time-number {
    color: #fff3cd;
}

.whoa-plugin-wrapper .countdown-timer.critical .time-number {
    color: #f8d7da;
}

.whoa-plugin-wrapper .countdown-timer.expired .countdown-display {
    font-size: 1.3em;
    color: #f8d7da;
}

.whoa-plugin-wrapper .submission-form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.whoa-plugin-wrapper .submission-form-container h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.whoa-plugin-wrapper .form-group {
    margin-bottom: 20px;
}

.whoa-plugin-wrapper .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.whoa-plugin-wrapper .form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.whoa-plugin-wrapper .form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.whoa-plugin-wrapper .form-group small {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.whoa-plugin-wrapper .submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.whoa-plugin-wrapper .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.whoa-plugin-wrapper .submissions-container {
    margin-top: 40px;
}

.whoa-plugin-wrapper .submissions-container h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: white;
    text-align: center;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.8), 0 0 20px rgba(251, 191, 36, 0.6), 0 0 30px rgba(251, 191, 36, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.whoa-plugin-wrapper .voting-info {
    background: #e8f4fd;
    border: 2px solid #4dabf7;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    color: #1864ab;
    position: relative;
}

.whoa-plugin-wrapper .reset-votes-btn {
    /* Removed - no longer used in frontend */
}

.whoa-plugin-wrapper .submissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.whoa-plugin-wrapper .submission-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.whoa-plugin-wrapper .submission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.whoa-plugin-wrapper .submission-card h4 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.whoa-plugin-wrapper .submission-actions {
    text-align: center;
    margin-bottom: 20px;
}

.whoa-plugin-wrapper .listen-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.whoa-plugin-wrapper .listen-btn:hover {
    background: #218838;
}

.whoa-plugin-wrapper .voting-section {
    margin-top: 15px;
}

.whoa-plugin-wrapper .voting-section p {
    margin-bottom: 10px;
    font-weight: 600;
    color: #555;
    text-align: center;
}

.whoa-plugin-wrapper .score-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.whoa-plugin-wrapper .score-button {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: #495057;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whoa-plugin-wrapper .score-button:hover,
.whoa-plugin-wrapper .score-button.hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: scale(1.1);
}

.whoa-plugin-wrapper .score-button.active {
    background: #28a745;
    color: white;
    border-color: #28a745;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.whoa-plugin-wrapper .score-button.used-rating {
    opacity: 0.5;
    cursor: not-allowed;
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

.whoa-plugin-wrapper .score-button.used-rating:hover {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
    transform: none;
}

.whoa-plugin-wrapper .submission-stats {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.whoa-plugin-wrapper .submission-stats p {
    margin: 5px 0;
    font-weight: 600;
    color: #666;
}

/* Modal Styles */
.whoa-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.whoa-plugin-wrapper .modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.whoa-plugin-wrapper .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 5px;
}

.whoa-plugin-wrapper .close:hover,
.whoa-plugin-wrapper .close:focus {
    color: #667eea;
    text-decoration: none;
}

.whoa-plugin-wrapper #smule-frame {
    border: none;
    border-radius: 10px;
    background: #f8f9fa;
    min-height: 400px;
}

/* Modal Actions */
.whoa-plugin-wrapper .modal-actions {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e1e5e9;
}

.whoa-plugin-wrapper .direct-smule-link {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.whoa-plugin-wrapper .direct-smule-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

.whoa-plugin-wrapper .direct-smule-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

/* Winners Page Styles */
.whoa-winners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    min-width: 280px;
}

.whoa-plugin-wrapper .whoa-winners-container h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: white;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.8), 0 0 20px rgba(251, 191, 36, 0.6), 0 0 30px rgba(251, 191, 36, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.whoa-plugin-wrapper .challenge-winners {
    margin-bottom: 50px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.whoa-plugin-wrapper .challenge-winners h3 {
    font-size: 2em;
    color: #667eea;
    text-align: center;
    margin-bottom: 10px;
}

.whoa-plugin-wrapper .challenge-date {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.whoa-plugin-wrapper .winners-podium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.whoa-plugin-wrapper .winner-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.whoa-plugin-wrapper .winner-card.position-1 {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #333;
    border: 3px solid #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
    position: relative;
    overflow: visible;
}

.whoa-plugin-wrapper .winner-card.position-1::before {
    content: '✨';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2em;
    animation: sparkle 2s infinite;
}

.whoa-plugin-wrapper .winner-card.position-1::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2em;
    animation: sparkle 2s infinite 1s;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.whoa-plugin-wrapper .winner-card.position-2 {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: #333;
}

.whoa-plugin-wrapper .winner-card.position-3 {
    background: linear-gradient(135deg, #cd7f32 0%, #deb887 100%);
    color: #333;
}

.whoa-plugin-wrapper .position-badge {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.whoa-plugin-wrapper .winner-card.position-1 .position-badge {
    font-size: 1.5em;
    color: #b8860b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.whoa-plugin-wrapper .winner-card h4 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.whoa-plugin-wrapper .winner-stats {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.whoa-plugin-wrapper .winner-stats p {
    margin: 5px 0;
    font-weight: 600;
}

.whoa-plugin-wrapper .winner-card.position-1 .winner-stats {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.whoa-plugin-wrapper .winner-listen {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: inherit;
}

.whoa-plugin-wrapper .winner-listen:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .whoa-plugin-wrapper .challenge-dates {
        flex-direction: column;
        align-items: center;
    }
    
    .whoa-plugin-wrapper .submissions-grid {
        grid-template-columns: 1fr;
    }
    
    .whoa-plugin-wrapper .challenge-header h2 {
        font-size: 2em;
    }
    
    .whoa-plugin-wrapper .winners-podium {
        grid-template-columns: 1fr;
    }
    
    .whoa-plugin-wrapper .winner-card {
        margin-bottom: 20px;
    }
}

/* Success/Error Messages */
.whoa-plugin-wrapper .whoa-message {
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 600;
    text-align: center;
}

.whoa-plugin-wrapper .whoa-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.whoa-plugin-wrapper .whoa-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Smule Collections Styles */
.whoa-collections-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    min-width: 280px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.whoa-plugin-wrapper .whoa-collections-container h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: white;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.8), 0 0 20px rgba(251, 191, 36, 0.6), 0 0 30px rgba(251, 191, 36, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.whoa-plugin-wrapper .collection-selector {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
}

.whoa-plugin-wrapper .collection-selector label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.2em;
    color: #555;
}

.whoa-plugin-wrapper .collection-dropdown {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: border-color 0.3s ease;
}

.whoa-plugin-wrapper .collection-dropdown:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.whoa-plugin-wrapper .collection-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.whoa-plugin-wrapper .collection-header h3 {
    font-size: 2em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.whoa-plugin-wrapper .collection-header p {
    font-size: 1.1em;
    margin: 5px 0;
    opacity: 0.9;
}

.whoa-plugin-wrapper .songs-playlist {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.whoa-plugin-wrapper .songs-playlist h4 {
    font-size: 1.8em;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.whoa-plugin-wrapper .songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.whoa-plugin-wrapper .song-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.whoa-plugin-wrapper .song-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.whoa-plugin-wrapper .song-number {
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    flex-shrink: 0;
}

.whoa-plugin-wrapper .song-info {
    flex: 1;
}

.whoa-plugin-wrapper .song-info h5 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #333;
}

.whoa-plugin-wrapper .collection-listen {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.whoa-plugin-wrapper .collection-listen:hover {
    background: #218838;
}

.whoa-plugin-wrapper .loading-message {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.whoa-plugin-wrapper .loading-message p {
    font-size: 1.2em;
    color: #666;
    margin: 0;
}

.whoa-plugin-wrapper .no-collections {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.whoa-plugin-wrapper .no-collections p {
    font-size: 1.2em;
    color: #666;
    margin: 0;
}

/* Responsive Design for Collections */
@media (max-width: 768px) {
    .whoa-plugin-wrapper .songs-grid {
        grid-template-columns: 1fr;
    }
    
    .whoa-plugin-wrapper .song-card {
        flex-direction: column;
        text-align: center;
    }
    
    .whoa-plugin-wrapper .collection-dropdown {
        max-width: 100%;
    }
}