/* ACF Release Tracks Display Default Styles */
.art-container {
    margin: 20px 0;
}

.art-track {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.art-track:last-child {
    border-bottom: none;
}

.art-track-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.art-track-number {
    opacity: 0.7;
    margin-right: 5px;
}

.art-platform-links {
    display: flex;
    align-items: center;
}

.art-platform-link {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.art-platform-link img {
    display: block;
}

.art-platform-disabled {
    opacity: 0.2 !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* Expanded style */
.art-container.style-expanded .art-track {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.art-container.style-expanded .art-track-title {
    font-size: 1.2em;
    margin-bottom: 15px;
}

/* Loading animation for lazy load */
.art-loading {
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Tooltip styles for platform labels */
.art-platform-link[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    margin-bottom: 5px;
}

.art-platform-link[title]:hover::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    margin-bottom: -5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .art-track {
        padding: 10px 0;
    }
    
    .art-track-title {
        font-size: 0.95em;
    }
    
    .art-platform-links {
        flex-wrap: wrap;
    }
}

/* Print styles */
@media print {
    .art-platform-links {
        display: none;
    }
    
    .art-track-title {
        color: #000;
    }
}
