/* 🌟 IX-ID Premium Styles - MusicChain i3 */

/* Orange Glow Box Theme - MusicChain Style */
.ix-id-header {
  background: linear-gradient(135deg, rgba(255, 120, 0, 0.3), rgba(255, 120, 0, 0.1));
  color: rgba(255, 120, 0, 0.9);
  font-weight: 700;
  text-shadow: 0 0 4px rgba(255, 120, 0, 0.3);
  border: 2px solid rgba(255, 120, 0, 0.4);
}

.ix-id-cell {
  background: rgba(255, 120, 0, 0.1);
  border: 1px solid rgba(255, 120, 0, 0.3);
  text-align: center;
  vertical-align: middle;
}

.ix-id-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 120, 0, 0.4), rgba(255, 120, 0, 0.2));
  color: rgba(255, 255, 255, 0.9);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: 600;
  min-width: 30px;
}

.ix-id-row:hover .ix-id-badge {
  background: linear-gradient(135deg, rgba(255, 120, 0, 0.6), rgba(255, 120, 0, 0.3));
  transform: scale(1.05);
  transition: all 0.2s ease;
}

.ix-id-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85em;
  transition: all 0.3s ease;
}

.ix-id-toggle:hover {
  background: rgba(255, 120, 0, 0.2);
  border-color: rgba(255, 120, 0, 0.4);
  color: rgba(255, 120, 0, 0.9);
}

.ix-id-toggle.active {
  background: rgba(255, 120, 0, 0.3);
  border-color: rgba(255, 120, 0, 0.6);
  color: rgba(255, 120, 0, 0.9);
  box-shadow: 0 0 8px rgba(255, 120, 0, 0.3);
}

/* Premium Stream Theme - Purple Gradient */
.stream-premium .ix-id-header {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
  position: relative;
  border: none;
}

.stream-premium .ix-id-cell {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border: 1px solid rgba(102, 126, 234, 0.2);
  position: relative;
}

.stream-premium .ix-id-cell:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-color: rgba(102, 126, 234, 0.3);
}

.stream-premium .ix-id-badge {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-align: center;
  min-width: 2rem;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
  position: relative;
  overflow: hidden;
}

.stream-premium .ix-id-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.3s;
}

.stream-premium .ix-id-badge:hover::before {
  left: 100%;
}

.stream-premium .ix-id-toggle {
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  margin: 0.5rem 0;
  text-transform: uppercase;
}

.stream-premium .ix-id-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.stream-premium .ix-id-toggle:hover::before {
  left: 100%;
}

.stream-premium .ix-id-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.stream-premium .ix-id-toggle:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.stream-premium .ix-id-toggle.active {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.stream-premium .ix-id-toggle.active:hover {
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
  box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
}

/* Premium Animation Effects */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.stream-premium .ix-id-toggle.active {
    animation: pulse 2s infinite;
}

/* Premium Search Input Enhancement for Stream */
.stream-premium .StreamSearch2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    border: 2px solid rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stream-premium .StreamSearch2:focus {
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.2);
    outline: none;
}

.stream-premium .StreamSearch2::placeholder {
    color: rgba(102, 126, 234, 0.6);
}
