/**
 * Radio432 Customizations - Pro.Radio Überschreibungen
 * 
 * Spezifische Style-Anpassungen für Pro.Radio Theme und Plugins
 */

/* ==========================================================================
   PRO.RADIO - MUSIC PLAYER
   ========================================================================== */

/* Player Container */
.radio432-player,
.radio432-style-yes .qtmplayer {
    background: var(--r432-bg-card);
    border-radius: var(--r432-border-radius-lg);
    border: 1px solid var(--r432-border-color);
    overflow: hidden;
}

/* Player Controls */
.radio432-style-yes .qtmplayer__controls {
    background: linear-gradient(180deg, var(--r432-bg-secondary) 0%, var(--r432-bg-primary) 100%);
    padding: var(--r432-spacing-lg);
}

/* Play Button */
.radio432-style-yes .qtmplayer__play,
.radio432-style-yes .qtmplayer-btn-play {
    background: var(--r432-primary);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--r432-transition);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.radio432-style-yes .qtmplayer__play:hover,
.radio432-style-yes .qtmplayer-btn-play:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}

/* Progress Bar */
.radio432-style-yes .qtmplayer__progress {
    background: var(--r432-border-color);
    border-radius: 4px;
    height: 6px;
    overflow: hidden;
}

.radio432-style-yes .qtmplayer__progress-bar {
    background: linear-gradient(90deg, var(--r432-primary), var(--r432-accent));
    border-radius: 4px;
}

/* Volume */
.radio432-style-yes .qtmplayer__volume-slider {
    background: var(--r432-border-color);
}

.radio432-style-yes .qtmplayer__volume-level {
    background: var(--r432-primary);
}

/* Track Info */
.radio432-style-yes .qtmplayer__track-title {
    font-family: var(--r432-font-heading);
    font-weight: 600;
    color: var(--r432-text-primary);
}

.radio432-style-yes .qtmplayer__track-artist {
    color: var(--r432-text-secondary);
}

/* ==========================================================================
   PRO.RADIO - SCHEDULE
   ========================================================================== */

.radio432-style-yes .proradio-schedule {
    background: var(--r432-bg-secondary);
    border-radius: var(--r432-border-radius-lg);
    overflow: hidden;
}

/* Schedule Header */
.radio432-style-yes .proradio-schedule__header {
    background: var(--r432-bg-card);
    padding: var(--r432-spacing-lg);
    border-bottom: 1px solid var(--r432-border-color);
}

.radio432-style-yes .proradio-schedule__day-selector {
    display: flex;
    gap: var(--r432-spacing-sm);
}

.radio432-style-yes .proradio-schedule__day-btn {
    background: transparent;
    border: 1px solid var(--r432-border-color);
    color: var(--r432-text-secondary);
    padding: 8px 16px;
    border-radius: var(--r432-border-radius-sm);
    font-family: var(--r432-font-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--r432-transition);
}

.radio432-style-yes .proradio-schedule__day-btn:hover,
.radio432-style-yes .proradio-schedule__day-btn.active {
    background: var(--r432-primary);
    border-color: var(--r432-primary);
    color: var(--r432-text-primary);
}

/* Schedule Item */
.radio432-style-yes .proradio-schedule__item {
    background: var(--r432-bg-card);
    border: 1px solid var(--r432-border-color);
    border-radius: var(--r432-border-radius);
    padding: var(--r432-spacing-lg);
    margin: var(--r432-spacing-md);
    transition: all var(--r432-transition);
}

.radio432-style-yes .proradio-schedule__item:hover {
    border-color: var(--r432-primary);
    transform: translateX(5px);
}

.radio432-style-yes .proradio-schedule__item.on-air {
    border-left: 4px solid var(--r432-primary);
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.1) 0%, var(--r432-bg-card) 100%);
}

.radio432-style-yes .proradio-schedule__time {
    color: var(--r432-primary);
    font-family: var(--r432-font-heading);
    font-weight: 700;
}

.radio432-style-yes .proradio-schedule__show-name {
    color: var(--r432-text-primary);
    font-family: var(--r432-font-heading);
    font-weight: 600;
}

.radio432-style-yes .proradio-schedule__host {
    color: var(--r432-text-secondary);
}

/* ==========================================================================
   PRO.RADIO - SHOWS
   ========================================================================== */

.radio432-style-yes .proradio-show-card {
    background: var(--r432-bg-card);
    border-radius: var(--r432-border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--r432-border-color);
    transition: all var(--r432-transition);
}

.radio432-style-yes .proradio-show-card:hover {
    border-color: var(--r432-primary);
    transform: translateY(-5px);
    box-shadow: var(--r432-shadow-lg);
}

.radio432-style-yes .proradio-show-card__image {
    position: relative;
    overflow: hidden;
}

.radio432-style-yes .proradio-show-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--r432-bg-card), transparent);
}

.radio432-style-yes .proradio-show-card__content {
    padding: var(--r432-spacing-lg);
}

.radio432-style-yes .proradio-show-card__title {
    font-family: var(--r432-font-heading);
    font-weight: 700;
    color: var(--r432-text-primary);
    margin-bottom: var(--r432-spacing-sm);
}

.radio432-style-yes .proradio-show-card__time {
    color: var(--r432-primary);
    font-weight: 600;
}

.radio432-style-yes .proradio-show-card__description {
    color: var(--r432-text-secondary);
    line-height: var(--r432-line-height);
}

/* ==========================================================================
   PRO.RADIO - DJ/HOST CARDS
   ========================================================================== */

.radio432-style-yes .proradio-dj-card {
    background: var(--r432-bg-card);
    border-radius: var(--r432-border-radius-lg);
    padding: var(--r432-spacing-xl);
    text-align: center;
    border: 1px solid var(--r432-border-color);
    transition: all var(--r432-transition);
}

.radio432-style-yes .proradio-dj-card:hover {
    border-color: var(--r432-primary);
}

.radio432-style-yes .proradio-dj-card__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto var(--r432-spacing-lg);
    border: 3px solid var(--r432-primary);
    overflow: hidden;
}

.radio432-style-yes .proradio-dj-card__name {
    font-family: var(--r432-font-heading);
    font-weight: 700;
    color: var(--r432-text-primary);
    margin-bottom: var(--r432-spacing-sm);
}

.radio432-style-yes .proradio-dj-card__role {
    color: var(--r432-primary);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
}

.radio432-style-yes .proradio-dj-card__socials {
    display: flex;
    justify-content: center;
    gap: var(--r432-spacing-sm);
    margin-top: var(--r432-spacing-lg);
}

.radio432-style-yes .proradio-dj-card__social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--r432-bg-secondary);
    border-radius: 50%;
    color: var(--r432-text-secondary);
    transition: all var(--r432-transition);
}

.radio432-style-yes .proradio-dj-card__social-link:hover {
    background: var(--r432-primary);
    color: var(--r432-text-primary);
}

/* ==========================================================================
   PRO.RADIO - PODCASTS
   ========================================================================== */

.radio432-style-yes .proradio-podcast-item {
    display: flex;
    gap: var(--r432-spacing-lg);
    background: var(--r432-bg-card);
    border-radius: var(--r432-border-radius);
    padding: var(--r432-spacing-lg);
    border: 1px solid var(--r432-border-color);
    transition: all var(--r432-transition);
}

.radio432-style-yes .proradio-podcast-item:hover {
    border-color: var(--r432-primary);
}

.radio432-style-yes .proradio-podcast-item__thumbnail {
    width: 100px;
    height: 100px;
    border-radius: var(--r432-border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.radio432-style-yes .proradio-podcast-item__title {
    font-family: var(--r432-font-heading);
    font-weight: 600;
    color: var(--r432-text-primary);
}

.radio432-style-yes .proradio-podcast-item__date {
    color: var(--r432-text-muted);
    font-size: 14px;
}

.radio432-style-yes .proradio-podcast-item__play-btn {
    background: var(--r432-primary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--r432-text-primary);
    cursor: pointer;
    transition: all var(--r432-transition);
}

.radio432-style-yes .proradio-podcast-item__play-btn:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   PRO.RADIO - CHARTS
   ========================================================================== */

.radio432-style-yes .proradio-chart-item {
    display: flex;
    align-items: center;
    gap: var(--r432-spacing-lg);
    background: var(--r432-bg-card);
    border-radius: var(--r432-border-radius);
    padding: var(--r432-spacing-md) var(--r432-spacing-lg);
    border: 1px solid var(--r432-border-color);
    margin-bottom: var(--r432-spacing-sm);
    transition: all var(--r432-transition);
}

.radio432-style-yes .proradio-chart-item:hover {
    border-color: var(--r432-primary);
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.05) 0%, var(--r432-bg-card) 100%);
}

.radio432-style-yes .proradio-chart-item__rank {
    font-family: var(--r432-font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--r432-primary);
    width: 40px;
    text-align: center;
}

.radio432-style-yes .proradio-chart-item__cover {
    width: 60px;
    height: 60px;
    border-radius: var(--r432-border-radius-sm);
    overflow: hidden;
}

.radio432-style-yes .proradio-chart-item__title {
    font-family: var(--r432-font-heading);
    font-weight: 600;
    color: var(--r432-text-primary);
}

.radio432-style-yes .proradio-chart-item__artist {
    color: var(--r432-text-secondary);
}

/* ==========================================================================
   PRO.RADIO - EVENTS
   ========================================================================== */

.radio432-style-yes .proradio-event-card {
    background: var(--r432-bg-card);
    border-radius: var(--r432-border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--r432-border-color);
    transition: all var(--r432-transition);
}

.radio432-style-yes .proradio-event-card:hover {
    border-color: var(--r432-primary);
    transform: translateY(-5px);
    box-shadow: var(--r432-shadow-lg);
}

.radio432-style-yes .proradio-event-card__date-badge {
    position: absolute;
    top: var(--r432-spacing-md);
    left: var(--r432-spacing-md);
    background: var(--r432-primary);
    color: var(--r432-text-primary);
    padding: var(--r432-spacing-sm) var(--r432-spacing-md);
    border-radius: var(--r432-border-radius-sm);
    text-align: center;
}

.radio432-style-yes .proradio-event-card__date-day {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.radio432-style-yes .proradio-event-card__date-month {
    font-size: 12px;
    text-transform: uppercase;
}

.radio432-style-yes .proradio-event-card__content {
    padding: var(--r432-spacing-lg);
}

.radio432-style-yes .proradio-event-card__title {
    font-family: var(--r432-font-heading);
    font-weight: 700;
    color: var(--r432-text-primary);
}

.radio432-style-yes .proradio-event-card__location {
    color: var(--r432-text-secondary);
    display: flex;
    align-items: center;
    gap: var(--r432-spacing-xs);
}

/* ==========================================================================
   PRO.RADIO - DEDICATIONS
   ========================================================================== */

.radio432-style-yes .proradio-dedication-form {
    background: var(--r432-bg-card);
    border-radius: var(--r432-border-radius-lg);
    padding: var(--r432-spacing-xl);
    border: 1px solid var(--r432-border-color);
}

.radio432-style-yes .proradio-dedication-form__title {
    font-family: var(--r432-font-heading);
    color: var(--r432-text-primary);
    margin-bottom: var(--r432-spacing-lg);
}

/* ==========================================================================
   PRO.RADIO - NOW PLAYING
   ========================================================================== */

.radio432-style-yes .proradio-now-playing {
    background: linear-gradient(135deg, var(--r432-bg-card) 0%, var(--r432-bg-secondary) 100%);
    border-radius: var(--r432-border-radius-lg);
    padding: var(--r432-spacing-xl);
    border: 1px solid var(--r432-border-color);
    display: flex;
    align-items: center;
    gap: var(--r432-spacing-lg);
}

.radio432-style-yes .proradio-now-playing__cover {
    width: 120px;
    height: 120px;
    border-radius: var(--r432-border-radius);
    overflow: hidden;
    box-shadow: var(--r432-shadow);
}

.radio432-style-yes .proradio-now-playing__label {
    color: var(--r432-primary);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--r432-spacing-xs);
}

.radio432-style-yes .proradio-now-playing__label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--r432-primary);
    border-radius: 50%;
    animation: radio432Pulse 1.5s ease infinite;
}

.radio432-style-yes .proradio-now-playing__title {
    font-family: var(--r432-font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--r432-text-primary);
}

.radio432-style-yes .proradio-now-playing__artist {
    color: var(--r432-text-secondary);
    font-size: 16px;
}
