/* Audio Player Styles */
.audio-player-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid #e0e0e0;
}

.now-playing {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    text-align: center;
}

.now-playing strong {
    color: #667eea;
    font-weight: 600;
}

.audio-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.audio-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.audio-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
}

.audio-btn:active {
    transform: scale(0.95);
}

.play-icon,
.pause-icon {
    font-size: 16px;
    line-height: 1;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-icon {
    font-size: 11px;
    font-weight: 700;
    color: #667eea;
    letter-spacing: 0.5px;
}

.volume-slider {
    width: 100px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #667eea 0%, #764ba2 100%);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: #764ba2;
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: #764ba2;
}

.volume-percentage {
    font-size: 12px;
    font-weight: 600;
    color: #667eea;
    min-width: 35px;
    text-align: right;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .audio-player-container {
        padding: 14px 16px;
    }
    
    .now-playing {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .audio-btn {
        width: 36px;
        height: 36px;
    }
    
    .volume-slider {
        width: 70px;
    }
    
    .volume-percentage {
        font-size: 11px;
        min-width: 30px;
    }
}

@media (max-width: 480px) {
    .audio-player-container {
        padding: 12px 14px;
    }
    
    .now-playing {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .audio-controls {
        gap: 8px;
    }
    
    .audio-btn {
        width: 32px;
        height: 32px;
    }
    
    .play-icon,
    .pause-icon {
        font-size: 14px;
    }
    
    .volume-icon {
        font-size: 10px;
    }
    
    .volume-slider {
        width: 60px;
    }
}

/* Reset and Base Styles - Override Squarespace */
* {
    box-sizing: border-box !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    background: linear-gradient(135deg, #000000 0%, #1e3a8a 100%) !important;
    color: #ffffff !important;
    min-height: 100vh !important;
    padding: 20px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.6 !important;
}

.container {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding-bottom: 100px !important;
    text-transform: none !important;
    width: 100% !important;
}

/* Override Squarespace text transformations and layout */
.container *,
.container *,
h1, h2, h3, h4, h5, h6,
.song-title,
.voting-instructions *,
.tracklist * {
    text-transform: none !important;
    letter-spacing: normal !important;
    font-family: inherit !important;
}

/* Force container to respect our width on desktop */
@media (min-width: 1024px) {
    .container {
        max-width: 1400px !important;
        width: 100% !important;
    }
}

/* Header Styles */
header {
    text-align: center !important;
    margin-bottom: 25px !important;
    padding: 20px 15px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 15px !important;
    border: 2px solid #1e3a8a !important;
}

header * {
    text-transform: none !important;
    letter-spacing: normal !important;
    font-family: inherit !important;
}

/* Album Art */
.album-art-container {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.album-art {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    border: 3px solid #1e3a8a;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.5);
    object-fit: cover;
}

h1 {
    font-size: 2.2rem !important;
    margin-bottom: 12px !important;
    background: linear-gradient(90deg, #3b82f6, #60a5fa) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    line-height: 1.2 !important;
    padding: 8px 0 !important;
}

/* Introduction Message */
.intro-message {
    margin: 15px 0;
    padding: 15px 20px;
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    line-height: 1.6;
}

.intro-message p {
    margin-bottom: 10px;
    color: #e5e7eb;
    line-height: 1.6;
}

.intro-message strong {
    color: #60a5fa;
    font-weight: 700;
}

.signature {
    font-style: italic;
    color: #93c5fd;
    margin-top: 8px;
    text-align: right;
}

/* Voting Instructions */
.voting-instructions {
    margin: 15px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.05), rgba(255, 255, 255, 0.05));
    border: 2px solid #c0c0c0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.2);
}

.voting-instructions h3 {
    color: #60a5fa !important;
    margin-bottom: 10px !important;
    font-size: 1.1rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-family: inherit !important;
    line-height: 1.3 !important;
    padding-bottom: 3px !important;
}

.voting-instructions ol {
    margin-left: 20px;
    color: #e5e7eb;
    line-height: 1.6;
}

.voting-instructions li {
    margin-bottom: 8px;
    line-height: 1.6;
    padding: 2px 0;
}

.voting-instructions strong {
    color: #c0c0c0;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.pro-tip {
    margin-top: 10px;
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.05), rgba(255, 255, 255, 0.05));
    border-left: 3px solid #c0c0c0;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #e5e7eb;
    line-height: 1.5;
}

.pro-tip strong {
    color: #c0c0c0;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

/* AmeriRock Genre Scale Legend */
.genre-scale-legend {
    margin: 15px 0 !important;
    padding: 15px !important;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(124, 58, 237, 0.1)) !important;
    border: 2px solid #8b5cf6 !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3) !important;
    box-sizing: border-box !important;
}

.genre-scale-legend h3 {
    color: #c4b5fd !important;
    margin-bottom: 8px !important;
    font-size: 1.1rem !important;
    text-shadow: 0 0 15px rgba(196, 181, 253, 0.6) !important;
    font-family: inherit !important;
}

.legend-description {
    color: #e5e7eb !important;
    font-size: 0.9rem !important;
    margin-bottom: 12px !important;
    font-style: italic !important;
    font-family: inherit !important;
}

.scale-bar-container {
    position: relative !important;
    margin-top: 15px !important;
}

.scale-gradient {
    position: relative !important;
    height: 12px !important;
    background: linear-gradient(90deg,
        #60a5fa 0%,
        #a78bfa 30%,
        #f472b6 60%,
        #8b0000 100%
    ) !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.4) !important;
    display: block !important;
}

.scale-dot {
    position: absolute !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 8px !important;
    height: 8px !important;
    background: white !important;
    border: 2px solid rgba(0, 0, 0, 0.3) !important;
    border-radius: 50% !important;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8) !important;
    z-index: 10 !important;
}

.scale-dot-clickable {
    cursor: pointer !important;
    padding: 8px !important;
    transition: all 0.3s ease !important;
    pointer-events: auto !important;
}

.scale-dot-clickable:hover {
    transform: translate(-50%, -50%) scale(1.3) !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 1) !important;
}

.scale-dot-clickable:active {
    transform: translate(-50%, -50%) scale(1.1) !important;
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 10px;
    font-size: 0.9rem;
    position: relative;
}

.scale-left,
.scale-middle,
.scale-right {
    color: #c4b5fd;
    font-weight: 600;
    text-align: center;
    position: relative;
    cursor: help;
    transition: all 0.3s ease;
}

.scale-left {
    text-align: left;
    flex: 1;
}

.scale-middle {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scale-right {
    text-align: right;
    flex: 1;
}

.scale-middle-text {
    font-size: 0.85rem;
    color: #c4b5fd;
}

.scale-sublabel {
    font-size: 0.75rem;
    color: #93c5fd;
    font-weight: 400;
    font-style: italic;
    display: block;
}

.scale-artists {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #8b5cf6;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #e5e7eb;
    white-space: nowrap;
    z-index: 1000;
    font-weight: 400;
    font-style: italic;
}

/* Show on hover for desktop - hover over dots */
@media (hover: hover) and (pointer: fine) {
    .scale-gradient:has(.scale-dot-clickable[data-position="left"]:hover) ~ .scale-labels .scale-left .scale-artists {
        display: block !important;
        opacity: 1 !important;
    }
    
    .scale-gradient:has(.scale-dot-clickable[data-position="middle"]:hover) ~ .scale-labels .scale-middle .scale-artists {
        display: block !important;
        opacity: 1 !important;
    }
    
    .scale-gradient:has(.scale-dot-clickable[data-position="right"]:hover) ~ .scale-labels .scale-right .scale-artists {
        display: block !important;
        opacity: 1 !important;
    }
}

/* Show on click for mobile and when class is added */
.scale-left.show-artists .scale-artists,
.scale-middle.show-artists .scale-artists,
.scale-right.show-artists .scale-artists {
    display: block !important;
    opacity: 1 !important;
    max-height: 100px !important;
    margin-top: 8px !important;
}

/* Mobile-specific formatting - force center all artist examples */
@media (max-width: 768px) {
    /* Ensure parent containers don't constrain */
    .genre-scale-legend {
        overflow: visible !important;
        position: relative !important;
    }
    
    .scale-labels {
        overflow: visible !important;
    }
    
    .scale-artists {
        /* Use fixed positioning to center in viewport, not parent */
        position: fixed !important;
        
        /* Center in viewport */
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        
        /* Constrain width with buffer for screen edges */
        max-width: calc(100vw - 30px) !important;
        width: auto !important;
        
        /* Position at bottom of screen for visibility */
        top: auto !important;
        bottom: 20px !important;
        
        /* Text wrapping */
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center !important;
        line-height: 1.4 !important;
        
        /* Ensure visibility above all content */
        z-index: 9999 !important;
        box-sizing: border-box !important;
        
        /* Padding inside */
        padding: 12px 15px !important;
    }
    
    /* Override all parent positioning - ensure fixed positioning */
    .scale-left .scale-artists,
    .scale-middle .scale-artists,
    .scale-right .scale-artists {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        position: fixed !important;
    }
}

/* Desktop positioning for left/right dots */
@media (min-width: 769px) {
    .scale-left .scale-artists {
        left: 0;
        transform: translateX(0);
    }

    .scale-right .scale-artists {
        left: auto;
        right: 0;
        transform: translateX(0);
    }
}

/* Next Release Section */
.next-release-section {
    margin: 15px 0;
    padding: 15px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid #3b82f6;
    border-radius: 12px;
}

.next-release-title {
    font-size: 1.1rem;
    color: #93c5fd;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-release-song {
    font-size: 1.6rem;
    font-weight: bold;
    color: #60a5fa;
    margin-bottom: 6px;
}

.next-release-date {
    font-size: 1rem;
    color: #93c5fd;
    margin-bottom: 10px;
}

.release-countdown {
    font-size: 1.3rem;
    font-weight: bold;
    color: #3b82f6;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-top: 8px;
}

.voting-period {
    margin: 12px 0;
    font-size: 1rem;
}

.voting-period p {
    margin: 5px 0;
}

.voting-period span {
    color: #60a5fa;
    font-weight: bold;
}

.countdown {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #93c5fd;
}

/* Tracklist Styles */
.tracklist {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.tracklist * {
    text-transform: none !important;
    letter-spacing: normal !important;
    font-family: inherit !important;
}

.song-item {
    position: relative !important;
    background: rgba(0, 0, 0, 0.6) !important;
    border: 2px solid #1e3a8a !important;
    border-radius: 12px !important;
    padding: 25px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.song-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

/* Song States */
.song-item.released {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.song-item.released:hover {
    border-color: #60a5fa;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.6);
}

.song-item.votable {
    border-color: #1e3a8a;
    cursor: pointer;
}

.song-item.votable:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.15);
}

.song-item.locked {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #374151;
    background: rgba(0, 0, 0, 0.8);
}

.song-item.locked:hover {
    transform: none;
    box-shadow: none;
}

.song-item.voted {
    border-color: #a78bfa;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(139, 92, 246, 0.15));
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.5), 0 0 40px rgba(167, 139, 250, 0.3);
}

/* Song Header */
.song-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.song-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #60a5fa;
    min-width: 40px;
}

.song-title {
    flex: 1 !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    margin: 0 15px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-family: inherit !important;
    line-height: 1.4 !important;
    padding: 5px 0 !important;
}

.song-status {
    font-size: 0.85rem !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-family: inherit !important;
}

.status-released {
    background: #3b82f6;
    color: #ffffff;
}

.status-votable {
    background: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    border: 1px solid #3b82f6;
}

.status-locked {
    background: rgba(55, 65, 81, 0.5);
    color: #9ca3af;
    border: 1px solid #374151;
}

.status-voted {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(167, 139, 250, 0.6), 0 0 20px rgba(167, 139, 250, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Lock Icon */
.lock-icon {
    font-size: 1.2rem;
    margin-left: 10px;
}

/* Vote Count */
.vote-count {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #93c5fd;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vote-bar {
    flex: 1;
    height: 8px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.vote-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Combined Lyric & Genre Scale Tooltip */
.song-item .lyric-tooltip {
    position: absolute !important;
    bottom: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-10px) !important;
    background: rgba(0, 0, 0, 0.95) !important;
    border: 2px solid #3b82f6 !important;
    border-radius: 8px !important;
    padding: 20px 25px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
    z-index: 1000 !important;
    max-width: 90% !important;
    min-width: 280px !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

.song-item .lyric-tooltip::after {
    content: '' !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border: 8px solid transparent !important;
    border-top-color: #3b82f6 !important;
}

.lyric-tooltip .tooltip-lyric {
    font-style: italic !important;
    font-size: 0.95rem !important;
    color: #93c5fd !important;
    margin-bottom: 15px !important;
    line-height: 1.7 !important;
    font-family: inherit !important;
    padding-bottom: 3px !important;
}

.lyric-tooltip .tooltip-genre-scale {
    margin-top: 15px !important;
    padding-top: 15px !important;
    border-top: 1px solid rgba(59, 130, 246, 0.3) !important;
}

.tooltip-genre-scale .genre-scale-bar {
    position: relative !important;
    height: 10px !important;
    background: linear-gradient(90deg,
        #60a5fa 0%,
        #a78bfa 30%,
        #f472b6 60%,
        #8b0000 100%
    ) !important;
    border-radius: 5px !important;
    margin-bottom: 8px !important;
}

.tooltip-genre-scale .genre-scale-marker {
    position: absolute !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 14px !important;
    height: 14px !important;
    background: white !important;
    border: 3px solid #3b82f6 !important;
    border-radius: 50% !important;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.8) !important;
}

.tooltip-genre-scale .genre-scale-labels {
    display: flex !important;
    justify-content: space-between !important;
    font-size: 0.75rem !important;
    color: #93c5fd !important;
    font-family: inherit !important;
}

.tooltip-genre-scale .genre-scale-labels span {
    color: #93c5fd !important;
    font-family: inherit !important;
}

/* Desktop: Show on hover */
@media (hover: hover) and (pointer: fine) {
    .song-item:hover .lyric-tooltip {
        opacity: 1 !important;
        transform: translateX(-50%) translateY(-15px) !important;
    }
}

/* Mobile: Show on tap/active state */
.song-item.show-lyric .lyric-tooltip {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(-15px) !important;
}

/* Mobile: Add tap indicator */
@media (hover: none) and (pointer: coarse) {
    .song-title::after {
        content: '';
    }
}

/* Radio Button Styles - Match CLUE button styling */
.radio-container {
    margin-top: 12px !important;
    padding: 14px 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    background: linear-gradient(90deg, #3b82f6, #2563eb) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.radio-container:hover {
    background: linear-gradient(90deg, #2563eb, #1d4ed8) !important;
    transform: scale(1.02) !important;
}

.radio-container:active {
    transform: scale(0.98) !important;
}

.song-radio {
    width: 18px !important;
    height: 18px !important;
    cursor: pointer !important;
    accent-color: #3b82f6 !important;
    pointer-events: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

.song-radio:disabled {
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}

.radio-label {
    font-size: 1rem !important;
    color: white !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.radio-label:hover {
    color: #f0f9ff !important;
}

/* Vote Button */
.vote-button {
    margin-top: 12px !important;
    padding: 14px 20px !important;
    background: linear-gradient(90deg, #3b82f6, #2563eb) !important;
    border: none !important;
    border-radius: 8px !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    pointer-events: auto !important;
    line-height: 1.4 !important;
}

.vote-button:hover {
    background: linear-gradient(90deg, #2563eb, #1d4ed8) !important;
    transform: scale(1.02) !important;
}

.vote-button:active {
    transform: scale(0.98) !important;
}

.vote-button:disabled {
    background: #374151 !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #93c5fd;
    font-size: 0.95rem;
}

/* Secret Link */
.secret-link {
    display: block;
    margin-top: 30px;
    font-size: 0.7em;
    color: #999;
    text-decoration: none;
    opacity: 0.4;
    transition: opacity 0.3s ease, color 0.3s ease;
    font-style: italic;
}

.secret-link:hover {
    opacity: 0.8;
    color: #93c5fd;
    text-decoration: underline;
}

/* Desktop Grid Layout - 3 Column Grid */
@media (min-width: 1024px) {
    .container {
        max-width: 1400px !important;
    }
    
    .tracklist {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
    
    .song-item {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .vote-count {
        margin-top: auto !important;
    }
}

/* Large Desktop - Wider Gap */
@media (min-width: 1400px) {
    .tracklist {
        gap: 25px !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .album-art {
        width: 250px;
        height: 250px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .next-release-song {
        font-size: 1.5rem;
    }
    
    .release-countdown {
        font-size: 1.2rem;
    }
    
    .song-header {
        flex-wrap: wrap;
    }
    
    .song-number {
        font-size: 1.2rem;
    }
    
    .song-title {
        font-size: 1.1rem;
        margin: 0 10px;
    }
    
    .song-status {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .lyric-tooltip {
        font-size: 0.85rem;
        padding: 12px 15px;
        max-width: 85%;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    header {
        padding: 20px 15px;
    }
    
    .album-art {
        width: 200px;
        height: 200px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .next-release-title {
        font-size: 1rem;
    }
    
    .next-release-song {
        font-size: 1.3rem;
    }
    
    .next-release-date {
        font-size: 0.95rem;
    }
    
    .release-countdown {
        font-size: 1rem;
        padding: 12px;
    }
    
    .voting-period {
        font-size: 0.95rem;
    }
    
    .song-item {
        padding: 15px;
    }
    
    .song-title {
        font-size: 1rem;
    }
    
    .mailing-list-content {
        padding: 20px 15px !important;
        max-height: 85vh !important;
    }
    
    .mailing-list-content h2 {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    
    .mailing-list-content p {
        font-size: 0.95rem !important;
        margin-bottom: 10px !important;
    }
}

/* Animation for vote confirmation */
@keyframes voteSuccess {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.vote-success {
    animation: voteSuccess 0.5s ease;
}

/* Made with Bob */

/* Radio Button Styles */
.radio-container {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.song-radio {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.song-radio:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.radio-label {
    font-size: 0.95rem;
    color: #e5e7eb;
    cursor: pointer;
    user-select: none;
}

.song-radio:disabled + .radio-label {
    cursor: not-allowed;
    color: #9ca3af;
}

/* Submit Vote Button */
.submit-container {
    margin: 40px 0 20px 0;
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 2px solid #1e3a8a;
}

.submit-vote-button {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    padding: 20px 55px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.submit-vote-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.submit-vote-button:active:not(:disabled) {
    transform: translateY(0);
}

.submit-vote-button:disabled {
    background: linear-gradient(135deg, #4b5563, #374151);
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

/* Mailing List Signup Container */
.mailing-list-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.9) !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10000 !important;
    padding: 20px !important;
}

.mailing-list-container.show {
    display: flex !important;
}

.mailing-list-content {
    background: linear-gradient(135deg, #1e3a8a, #000000) !important;
    border: 3px solid #3b82f6 !important;
    border-radius: 15px !important;
    padding: 40px !important;
    max-width: 600px !important;
    width: 100% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    text-align: center !important;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.5) !important;
}

.mailing-list-content h2 {
    color: #60a5fa !important;
    font-size: 2rem !important;
    margin-bottom: 20px !important;
    font-family: inherit !important;
}

.mailing-list-content p {
    color: #e5e7eb !important;
    font-size: 1.1rem !important;
    margin-bottom: 15px !important;
    font-family: inherit !important;
}

.mailing-list-content strong {
    color: #93c5fd !important;
}

.squarespace-newsletter-block {
    margin: 30px 0 !important;
    padding: 20px !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 10px !important;
}

.newsletter-placeholder {
    color: #93c5fd !important;
    font-style: italic !important;
    padding: 20px !important;
}

/* Squarespace Newsletter Form Styling */
.newsletter-form {
    width: 100% !important;
}

.newsletter-form-header-title {
    color: #60a5fa !important;
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
}

.newsletter-form-header-description {
    color: #e5e7eb !important;
    margin-bottom: 20px !important;
}

.newsletter-form-header-description p {
    color: #e5e7eb !important;
    margin: 5px 0 !important;
}

.newsletter-form-field-label {
    color: #93c5fd !important;
    font-size: 0.9rem !important;
    margin-bottom: 5px !important;
    display: block !important;
}

.newsletter-form-field-element {
    width: 100% !important;
    padding: 12px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid #4b5563 !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    margin-bottom: 15px !important;
}

.newsletter-form-field-element:focus {
    border-color: #60a5fa !important;
    outline: none !important;
}

.newsletter-form-name-fieldset {
    border: none !important;
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
}

.newsletter-form-button {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: white !important;
    border: none !important;
    padding: 15px 40px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    margin-top: 10px !important;
}

.newsletter-form-button:hover {
    background: linear-gradient(135deg, #2563eb, #1e3a8a) !important;
    transform: translateY(-2px) !important;
}

.form-submission-text {
    color: #60a5fa !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    padding: 20px !important;
}

.close-newsletter-button {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #e5e7eb !important;
    border: 2px solid #4b5563 !important;
    padding: 12px 30px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 20px !important;
}

.close-newsletter-button:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: #60a5fa !important;
}

/* Vote Results Chart */
.vote-results-container {
    margin: 30px 0 !important;
    padding: 25px !important;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(30, 58, 138, 0.1)) !important;
    border: 2px solid #3b82f6 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3) !important;
    transition: filter 0.5s ease !important;
    position: relative !important;
}

/* Unlock Overlay - positioned outside blur effect */
.unlock-overlay {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
    pointer-events: none !important;
    filter: none !important;
}

.unlock-message {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
    color: white !important;
    padding: 15px 30px !important;
    border-radius: 30px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    text-align: center !important;
    filter: none !important;
}

/* Blurred state (before voting) - blur only the content, not the overlay */
.vote-results-container.blurred .vote-results-title,
.vote-results-container.blurred .vote-results-subtitle,
.vote-results-container.blurred .vote-results-chart {
    filter: blur(8px) !important;
    opacity: 0.6 !important;
    pointer-events: none !important;
    user-select: none !important;
}

.vote-results-title {
    color: #60a5fa !important;
    font-size: 1.3rem !important;
    margin-bottom: 8px !important;
    text-align: center !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-family: inherit !important;
}

.vote-results-subtitle {
    color: #93c5fd !important;
    font-size: 0.95rem !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    font-style: italic !important;
}

.vote-results-chart {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.chart-bar-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.chart-song-title {
    min-width: 200px !important;
    color: #e5e7eb !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.chart-bar-container {
    flex: 1 !important;
    height: 30px !important;
    background: rgba(30, 58, 138, 0.3) !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    position: relative !important;
}

.chart-bar-fill {
    height: 100% !important;
    background: linear-gradient(90deg, #3b82f6, #60a5fa) !important;
    border-radius: 15px !important;
    transition: width 1s ease-out !important;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5) !important;
}

.chart-bar-item.user-voted .chart-bar-fill {
    background: linear-gradient(90deg, #a78bfa, #8b5cf6) !important;
    box-shadow: 0 0 15px rgba(167, 139, 250, 0.6) !important;
}

.chart-bar-item.user-voted .chart-song-title {
    color: #c4b5fd !important;
    font-weight: 700 !important;
}

.chart-bar-item.user-voted .chart-song-title::after {
    content: ' ✓' !important;
    color: #a78bfa !important;
}

/* Responsive chart */
@media (max-width: 768px) {
    .chart-song-title {
        min-width: 120px !important;
        font-size: 0.85rem !important;
    }
    
    .chart-bar-container {
        height: 25px !important;
    }
}

/* Simple Mailing List Form */
.simple-mailing-form {
    margin: 20px 0 !important;
}

.form-group {
    margin-bottom: 20px !important;
}

.form-group label {
    display: block !important;
    margin-bottom: 8px !important;
    color: #93c5fd !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.5 !important;
    padding: 3px 0 !important;
}

.form-group input,
.form-group textarea {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 2px solid #3b82f6 !important;
    border-radius: 8px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    line-height: 1.5 !important;
    font-family: inherit !important;
}

.form-group textarea {
    resize: vertical !important;
    min-height: 80px !important;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: #60a5fa !important;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5) !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8 !important;
}

.submit-mailing-button {
    width: 100% !important;
    padding: 18px !important;
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.4 !important;
}

.submit-mailing-button:hover {
    background: linear-gradient(135deg, #2563eb, #1e3a8a) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6) !important;
}

.submit-mailing-button:disabled {
    background: #4b5563 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

.form-message {
    margin-top: 15px !important;
    padding: 15px 18px !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-weight: 600 !important;
    display: none !important;
    line-height: 1.6 !important;
}

.form-message.success {
    display: block !important;
    background: rgba(34, 197, 94, 0.2) !important;
    border: 2px solid #22c55e !important;
    color: #86efac !important;
}

.form-message.error {
    display: block !important;
    background: rgba(239, 68, 68, 0.2) !important;
    border: 2px solid #ef4444 !important;
    color: #fca5a5 !important;
}
