.tre-player {
    background: #0f1f4a;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(15,31,74,0.3);
    padding: 32px 36px;
}

.tre-player__main {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: nowrap;
}

/* 1 — LIVE */
.tre-player__live {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.tre-player__live-dot {
    width: 13px;
    height: 13px;
    background: #ffffff;
    border-radius: 50%;
    animation: tre-pulse 1.5s infinite;
}

@keyframes tre-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.25; transform: scale(0.75); }
}

.tre-player__live-text {
    font-size: 10px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* 2 — Info */
.tre-player__info {
    flex: 1;
}

.tre-player__stream-name {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.tre-player__tagline {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

/* 3 — Controls */
.tre-player__controls {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.tre-player__btn {
    background: #2053a5;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, opacity 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(32,83,165,0.5);
}

.tre-player__btn:hover {
    transform: scale(1.06);
    opacity: 0.9;
}

.tre-player__volume-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tre-player__volume-icon {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
}

.tre-player__volume {
    -webkit-appearance: none;
    appearance: none;
    width: 110px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.15);
    outline: none;
    cursor: pointer;
}

.tre-player__volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

.tre-player__volume::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    border: none;
}

/* 4 — Stream buttons */
.tre-player__streams {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.tre-player__stream-btn {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 11px 26px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    text-align: center;
}

.tre-player__stream-btn:hover {
    color: #ffffff;
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.07);
}

.tre-player__stream-btn--active {
    background: #2053a5;
    border-color: #2053a5;
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(32,83,165,0.5);
}

/* Mobile */
@media ( max-width: 680px ) {
    .tre-player {
        padding: 24px 20px;
    }
    .tre-player__main {
        flex-wrap: wrap;
        gap: 20px;
    }
    .tre-player__live {
        flex-direction: row;
        gap: 10px;
    }
    .tre-player__info {
        flex: 1 1 100%;
        order: -1;
    }
    .tre-player__stream-name {
        font-size: 20px;
    }
    .tre-player__volume-wrap {
        display: none;
    }
    .tre-player__streams {
        flex-direction: row;
        width: 100%;
    }
    .tre-player__stream-btn {
        flex: 1;
    }
}
