/* SN Audio Reader v1.0.0 · Portal Sampa News */

.snar-player {
  background: linear-gradient(135deg, #0f1923, #1a2332);
  border: 1px solid rgba(232,21,27,0.25);
  border-left: 4px solid #E8151B;
  border-radius: 8px;
  padding: 14px 16px 8px;
  margin: 0 0 24px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.snar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.snar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.snar-btn-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E8151B;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
  line-height: 1;
}

.snar-btn-play:hover  { background: #c0111a; }
.snar-btn-play:active { transform: scale(0.93); }
.snar-btn-play.playing { background: #c0111a; }

.snar-label {
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 3px;
}

.snar-status {
  font-size: 11px;
  color: #64748b;
  transition: color 0.2s;
}

.snar-status.active { color: #E8151B; }
.snar-status.done   { color: #22c55e; }
.snar-status.paused { color: #f59e0b; }

.snar-speeds {
  display: flex;
  gap: 5px;
}

.snar-speed {
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background: transparent;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.snar-speed:hover { border-color: rgba(232,21,27,0.4); color: #e2e8f0; }

.snar-speed-active {
  background: rgba(232,21,27,0.15);
  border-color: #E8151B !important;
  color: #ff6b6b !important;
}

.snar-progress-wrap {
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}

.snar-progress-bar {
  height: 100%;
  background: #E8151B;
  border-radius: 2px;
  width: 0%;
  transition: width 0.4s ease;
}

/* Mobile */
@media (max-width: 480px) {
  .snar-speeds { gap: 4px; }
  .snar-speed  { padding: 5px 8px; font-size: 10px; }
  .snar-label  { font-size: 12px; }
}
