/* OldGames games page refinements: front-style navbar, console filtering, favorites. */
:root {
  --ogp-yellow: #ffd84d;
  --ogp-red: #ff315f;
  --ogp-cyan: #24e3ff;
  --ogp-green: #58f08d;
  --ogp-panel: rgba(12, 14, 24, 0.92);
  --ogp-border: rgba(255, 255, 255, 0.12);
}

body.og-games-portal-v2 {
  background:
    linear-gradient(180deg, rgba(5, 7, 14, 0.98), rgba(8, 10, 18, 1) 52%, rgba(12, 5, 18, 1)),
    radial-gradient(circle at 16% 12%, rgba(36, 227, 255, 0.12), transparent 30%),
    radial-gradient(circle at 82% 6%, rgba(255, 49, 95, 0.16), transparent 32%);
}

body.og-games-portal-v2 .top-navbar {
  gap: 16px;
  min-height: 78px;
  border-bottom-color: rgba(255, 49, 95, 0.34);
  background: rgba(5, 7, 14, 0.88);
}

.ogp-front-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  margin-left: auto;
  min-width: 0;
}

.ogp-front-nav button {
  font-family: 'Rajdhani', 'Inter', sans-serif;
}

.nav-active-users-pill,
.ogp-community-btn,
.nav-subscribe-btn,
.nav-favorites-btn,
.auth-btn,
.user-btn {
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid var(--ogp-border);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px rgba(0, 0, 0, 0.24);
}

.nav-active-users-pill {
  border-color: rgba(88, 240, 141, 0.38);
  background: linear-gradient(180deg, rgba(39, 96, 67, 0.42), rgba(19, 42, 34, 0.58));
  color: #d8ffe7;
}

.ogp-community-btn {
  cursor: pointer;
  border-color: rgba(36, 227, 255, 0.28);
  background: linear-gradient(180deg, rgba(12, 24, 34, 0.78), rgba(11, 12, 20, 0.88));
  color: #eafcff;
}

.ogp-community-btn:hover {
  border-color: rgba(36, 227, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 28px rgba(36, 227, 255, 0.16);
}

.ogp-live-btn {
  border-color: rgba(255, 49, 95, 0.35);
}

.ogp-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ogp-red);
  box-shadow: 0 0 15px rgba(255, 49, 95, 0.84);
}

.nav-active-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ogp-green);
  box-shadow: 0 0 14px rgba(88, 240, 141, 0.78);
}

.nav-active-count,
.nav-fav-count,
.ogp-mini-count,
.subscribe-badge {
  min-width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ogp-yellow);
  color: #11131b;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
}

.ogp-radio-mini-state {
  min-width: 26px;
  height: 22px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 216, 77, 0.18);
  color: var(--ogp-yellow);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.66rem;
}

.nav-subscribe-btn {
  border-color: rgba(255, 216, 77, 0.45);
  background: linear-gradient(135deg, rgba(255, 49, 95, 0.34), rgba(255, 216, 77, 0.16));
  cursor: pointer;
}

.subscribe-icon {
  color: var(--ogp-yellow);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
}

.nav-favorites-btn {
  border-color: rgba(255, 216, 77, 0.28);
  cursor: pointer;
}

.nav-fav-icon { color: var(--ogp-yellow); }

.auth-btn {
  border-color: rgba(36, 227, 255, 0.34);
  background: linear-gradient(135deg, rgba(36, 227, 255, 0.15), rgba(255, 255, 255, 0.055));
  cursor: pointer;
}

.user-btn {
  cursor: pointer;
  max-width: 190px;
}

.user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: 0 0 30px;
  overflow: hidden;
  color: #10131b;
  background: linear-gradient(135deg, var(--ogp-yellow), #ff8b2e);
  border: 1px solid rgba(255, 216, 77, 0.58);
  font-weight: 900;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#userName {
  max-width: 108px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-dropdown {
  position: absolute;
  right: 24px;
  top: calc(100% + 10px);
  width: min(280px, calc(100vw - 28px));
  display: none;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 14, 24, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  z-index: 2000;
}

.profile-dropdown.active { display: block; }

.dropdown-header {
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  margin-bottom: 8px;
}

.dropdown-user-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
}

.dropdown-user-email {
  margin-top: 3px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  word-break: break-word;
}

.dropdown-item {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.075);
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 7px 0;
}

.logout-item { color: #ff9cae; }

body.og-games-portal-v2 .og-hero {
  padding-top: clamp(34px, 5vw, 64px);
}

body.ogp-console-focused .og-hub-grid-section {
  display: none;
}

body.ogp-console-focused .og-console-section {
  scroll-margin-top: 104px;
  overflow: visible;
}

body.og-games-portal-v2 .og-console-nav,
body.og-games-portal-v2 .og-filter-bar {
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: 16px;
}

body.og-games-portal-v2 .og-console-nav::-webkit-scrollbar,
body.og-games-portal-v2 .og-filter-bar::-webkit-scrollbar,
.ogp-front-nav::-webkit-scrollbar {
  height: 0;
  display: none;
}

body.og-games-portal-v2 .og-filter-chip,
body.og-games-portal-v2 .og-nav-chip {
  scroll-snap-align: center;
}

.ogp-library-status {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 216, 77, 0.26);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.ogp-library-status strong {
  color: var(--ogp-yellow);
  font-family: 'Orbitron', sans-serif;
}

.ogp-soft {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
}

.ogp-show-all {
  min-height: 38px;
  border-radius: 10px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(36, 227, 255, 0.11);
  border: 1px solid rgba(36, 227, 255, 0.34);
  color: #bdf8ff;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.ogp-card-fav {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 216, 77, 0.35);
  background: rgba(5, 7, 14, 0.74);
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.16s ease, color 0.16s ease, background 0.16s ease;
}

.ogp-card-fav::before {
  content: '★';
  font-size: 18px;
  line-height: 1;
}

.ogp-card-fav:hover,
.ogp-card-fav.is-favorite {
  color: #10131b;
  background: var(--ogp-yellow);
  transform: translateY(-1px);
}

.ogp-favorites-sheet {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
  z-index: 5000;
}

.ogp-favorites-sheet.active { display: flex; }

.ogp-favorites-dialog {
  width: min(620px, 100%);
  max-height: min(720px, 88vh);
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 216, 77, 0.3);
  background: var(--ogp-panel);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.58);
}

.ogp-favorites-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ogp-favorites-head h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--ogp-yellow);
}

.ogp-favorites-head button {
  min-height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  padding: 0 12px;
  cursor: pointer;
}

.ogp-favorites-list {
  display: grid;
  gap: 9px;
  padding: 14px;
}

.ogp-favorites-list p {
  color: rgba(255, 255, 255, 0.66);
}

.ogp-fav-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  text-decoration: none;
}

.ogp-fav-row img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
}

.ogp-fav-row strong,
.ogp-fav-row em {
  display: block;
}

.ogp-fav-row em {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
}

/* Home widgets reused on /games: OldGames Live, Live Chat, OldGames Radio. */
.live-streams-toggle {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4200;
  border: 0;
  border-radius: 0 12px 12px 0;
  padding: 15px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 5px 25px rgba(239, 68, 68, 0.5);
  cursor: pointer;
  transition: padding 0.2s ease, box-shadow 0.2s ease;
}

.live-streams-toggle:hover {
  padding-left: 20px;
  box-shadow: 0 8px 35px rgba(239, 68, 68, 0.7);
}

.live-streams-toggle.has-streams {
  animation: liveButtonPulse 2s ease-in-out infinite;
}

@keyframes liveButtonPulse {
  0%, 100% { box-shadow: 0 5px 25px rgba(239, 68, 68, 0.5); }
  50% { box-shadow: 0 5px 35px rgba(239, 68, 68, 0.8), 0 0 20px rgba(239, 68, 68, 0.4); }
}

.live-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-toggle-dot,
.live-badge-dot,
.live-dot-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: liveDotBlink 1s ease-in-out infinite;
}

@keyframes liveDotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.live-toggle-count {
  min-width: 22px;
  border-radius: 10px;
  padding: 2px 6px;
  background: #fff;
  color: #ef4444;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.live-toggle-text {
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.live-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 4198;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.live-panel-overlay.active {
  opacity: 1;
  visibility: visible;
}

.live-streams-panel {
  position: fixed;
  top: 0;
  left: -410px;
  width: 390px;
  max-width: 100vw;
  height: 100vh;
  z-index: 4199;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.98), rgba(30, 0, 0, 0.95));
  border-right: 3px solid #ef4444;
  box-shadow: 10px 0 50px rgba(239, 68, 68, 0.3);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.live-streams-panel.open {
  left: 0;
}

.live-streams-panel-header {
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.99), rgba(13, 13, 13, 0.95));
  border-bottom: 2px solid rgba(239, 68, 68, 0.3);
}

.live-streams-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-streams-title h3 {
  margin: 0;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
}

.live-badge-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 15px;
  padding: 4px 10px;
  background: #ef4444;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}

.close-live-panel {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ef4444;
  display: grid;
  place-items: center;
  background: rgba(239, 68, 68, 0.2);
  color: #fff;
  cursor: pointer;
}

.close-live-panel:hover {
  background: #ef4444;
}

.live-streams-content {
  padding: 16px;
}

.no-streams-message {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 240px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.no-streams-icon {
  font-size: 2.4rem;
}

.no-streams-text {
  color: #fff;
  font-weight: 900;
}

.streams-count-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.streams-count-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.streams-count-badge {
  min-width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #ef4444;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
}

.streams-count-text {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.streams-nav-dots {
  display: flex;
  gap: 6px;
}

.stream-nav-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.stream-nav-dot.active {
  background: #ef4444;
}

.streams-list-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stream-card-featured {
  width: 100%;
  border: 1px solid rgba(239, 68, 68, 0.42);
  border-radius: 16px;
  overflow: hidden;
  display: block;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

button.stream-card-featured {
  font: inherit;
}

.stream-thumbnail-large {
  position: relative;
  min-height: 150px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.28), rgba(0, 0, 0, 0.7));
  background-size: cover;
  background-position: center;
}

.stream-thumbnail-large::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.52));
}

.live-badge-overlay,
.viewers-badge-overlay {
  position: absolute;
  z-index: 2;
  top: 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 900;
}

.live-badge-overlay {
  left: 10px;
  background: rgba(239, 68, 68, 0.95);
  color: #fff;
}

.live-badge-overlay.room-badge {
  background: rgba(16, 185, 129, 0.95);
}

.viewers-badge-overlay {
  right: 10px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
}

.stream-card-content {
  padding: 12px;
  display: grid;
  gap: 12px;
}

.streamer-row,
.game-info-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 10px;
}

.streamer-avatar-large,
.game-cover-small {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.streamer-avatar-large {
  border-radius: 50%;
  border-color: rgba(239, 68, 68, 0.48);
}

.streamer-avatar-large img,
.game-cover-small {
  object-fit: cover;
}

.streamer-avatar-large img,
img.game-cover-small {
  width: 100%;
  height: 100%;
  display: block;
}

.streamer-name-large,
.game-name-large {
  max-width: 230px;
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
}

.online-status,
.game-console-tag {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.game-console-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 7px;
  padding: 3px 8px;
  color: #ffd84d;
  background: rgba(255, 216, 77, 0.12);
}

.watch-btn-large {
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ef4444, #ff7a1a);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.streams-section-divider {
  padding: 8px 0;
  color: #10b981;
  font-weight: 900;
  text-align: center;
}

.room-avatar,
.room-watch {
  background: linear-gradient(135deg, #10b981, #059669);
}

.radio-player {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 4300;
  font-family: 'Courier New', monospace;
  user-select: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.radio-player.emu-hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.radio-bar {
  position: relative;
  min-width: 220px;
  max-width: 280px;
  height: 42px;
  border: 1px solid rgba(192, 132, 252, 0.45);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px 0 10px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(90deg, rgba(8, 8, 20, 0.98), rgba(18, 6, 36, 0.98));
  box-shadow: 0 0 18px rgba(192, 132, 252, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.radio-glow-ring {
  position: absolute;
  inset: -1px;
  border-radius: 9px;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(192, 132, 252, 0.55), 0 0 18px rgba(192, 132, 252, 0.35);
  animation: radioGlowPulse 2.2s ease-in-out infinite;
}

@keyframes radioGlowPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}

.radio-bar-left,
.radio-bar-center,
.radio-bar-right {
  position: relative;
  z-index: 1;
}

.radio-bar-center {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
}

.radio-equalizer {
  height: 20px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.radio-equalizer span {
  width: 3px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, #c084fc, #e879f9);
  animation: eqBar 0.7s ease-in-out infinite alternate;
}

.radio-equalizer span:nth-child(1) { height: 9px; animation-delay: 0s; }
.radio-equalizer span:nth-child(2) { height: 16px; animation-delay: 0.08s; }
.radio-equalizer span:nth-child(3) { height: 20px; animation-delay: 0.16s; }
.radio-equalizer span:nth-child(4) { height: 12px; animation-delay: 0.05s; }
.radio-equalizer span:nth-child(5) { height: 15px; animation-delay: 0.22s; }

@keyframes eqBar {
  0% { transform: scaleY(0.18); }
  100% { transform: scaleY(1); }
}

.radio-live-badge {
  flex: 0 0 auto;
  border: 1px solid rgba(192, 132, 252, 0.3);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  background: rgba(192, 132, 252, 0.12);
}

.radio-live-badge span:last-child {
  color: #c084fc;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
}

.radio-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: liveDotBlink 1.4s ease-in-out infinite;
}

.radio-marquee-wrap {
  min-width: 0;
  overflow: hidden;
}

.radio-marquee {
  display: inline-block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  white-space: nowrap;
}

.radio-chevron {
  color: rgba(192, 132, 252, 0.62);
  transition: transform 0.25s ease;
}

.radio-player.panel-open .radio-chevron {
  transform: rotate(180deg);
}

.radio-panel {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 248px;
  border: 1px solid rgba(192, 132, 252, 0.4);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  background: linear-gradient(160deg, rgba(10, 6, 22, 0.99), rgba(20, 8, 42, 0.99));
  box-shadow: 0 -4px 40px rgba(192, 132, 252, 0.22), 0 8px 40px rgba(0, 0, 0, 0.7);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.radio-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.radio-panel-header,
.radio-panel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
}

.radio-panel-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.radio-panel-status {
  color: #22c55e;
  font-size: 9px;
  font-weight: 900;
}

.radio-panel-track {
  padding: 8px 14px;
}

.radio-track-title {
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 900;
}

.radio-track-artist {
  margin-top: 3px;
  color: rgba(192, 132, 252, 0.75);
  font-size: 10px;
}

.radio-visualizer {
  height: 48px;
  padding: 0 14px 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
}

.radio-visualizer span {
  flex: 1;
  max-width: 14px;
  height: 40px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, rgba(168, 85, 247, 0.85), rgba(232, 121, 249, 0.55));
  animation: eqBar 0.7s ease-in-out infinite alternate;
}

.radio-play-btn,
.radio-mute-btn {
  border: 1px solid rgba(192, 132, 252, 0.55);
  display: grid;
  place-items: center;
  background: rgba(192, 132, 252, 0.16);
  color: #c084fc;
  cursor: pointer;
}

.radio-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.radio-vol-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-mute-btn {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.radio-slider {
  width: 110px;
  accent-color: #c084fc;
}

.live-chat {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 420px;
  max-width: 90vw;
  height: 580px;
  max-height: calc(100vh - 122px);
  z-index: 4400;
  overflow: hidden;
  display: none;
  flex-direction: column;
  border-radius: 24px;
  border: 2px solid rgba(255, 0, 64, 0.62);
  background: linear-gradient(165deg, #0d0d14, #1a0a15 35%, #0a0a0f);
  box-shadow: 0 0 60px rgba(255, 0, 64, 0.24), 0 30px 100px rgba(0, 0, 0, 0.72);
}

.live-chat-bg-canvas,
.live-chat-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.live-chat-bg-overlay {
  background: radial-gradient(ellipse at top right, rgba(255, 0, 64, 0.12), transparent 52%);
}

.chat-header,
.chat-tabs,
.chat-content,
.chat-input-container,
.chat-login-overlay {
  position: relative;
  z-index: 2;
}

.chat-header {
  min-height: 70px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(255, 0, 64, 0.95), rgba(255, 102, 0, 0.9));
}

.chat-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
}

.chat-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.78rem;
  font-weight: 800;
}

.online-dot-anim {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #43b581;
  box-shadow: 0 0 10px #43b581;
}

.chat-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  cursor: pointer;
}

.chat-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.48);
}

.chat-tab {
  flex: 1;
  min-height: 44px;
  border: 0;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 900;
  cursor: pointer;
}

.chat-tab.active {
  color: #fff;
  border-bottom-color: var(--ogp-red);
}

.chat-content {
  flex: 1;
  min-height: 0;
  display: none;
  overflow: hidden;
  overflow-x: hidden;
  padding: 14px;
  scroll-behavior: smooth;
}

.chat-content.active,
#messagesContent {
  display: flex;
  flex-direction: column;
}

#onlineContent {
  display: none;
}

.messages-list,
.online-users-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
}

.chat-welcome {
  margin: auto;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.welcome-icon {
  font-size: 2.5rem;
}

.chat-login-overlay {
  position: absolute;
  inset: 70px 0 0;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px;
  background: rgba(10, 10, 15, 0.92);
  color: #fff;
  text-align: center;
}

.chat-login-btn {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  background: linear-gradient(135deg, #ff0040, #ff6600);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.chat-input-container {
  padding: 12px;
  background: rgba(0, 0, 0, 0.42);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-input-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
}

.chat-input,
.send-btn,
.emoji-picker-btn {
  min-height: 42px;
  border-radius: 12px;
}

.chat-input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 12px;
}

.send-btn,
.emoji-picker-btn {
  border: 0;
  padding: 0 13px;
  background: linear-gradient(135deg, #ff0040, #ff6600);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.chat-toggle-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 3px solid rgba(255, 215, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: linear-gradient(135deg, #ff0040, #ff6600, #ff0040);
  background-size: 200% 200%;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 4399;
  box-shadow: 0 8px 35px rgba(255, 0, 64, 0.5);
}

.chat-toggle-ring,
.chat-toggle-ring-2 {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 0, 64, 0.42);
  border-radius: 50%;
  animation: radioGlowPulse 2s ease-in-out infinite;
}

.chat-toggle-ring-2 {
  inset: -14px;
  animation-delay: 0.5s;
}

.chat-badge {
  position: absolute;
  top: -6px;
  right: -4px;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffcc00;
  color: #11131b;
  font-size: 0.74rem;
  font-weight: 900;
}

.online-user-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 0, 64, 0.055));
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.online-user-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 0, 64, 0.1), rgba(99, 102, 241, 0.1));
  transition: opacity 0.25s ease;
}

.online-user-card:hover {
  border-color: rgba(255, 0, 64, 0.45);
  background: linear-gradient(135deg, rgba(255, 0, 64, 0.13), rgba(99, 102, 241, 0.08));
  box-shadow: 0 8px 30px rgba(255, 0, 64, 0.22);
  transform: translateX(5px);
}

.online-user-card:hover::before {
  opacity: 1;
}

.online-avatar-wrapper {
  position: relative;
  flex: 0 0 auto;
  z-index: 1;
}

.online-avatar-img,
.online-avatar-fallback {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.online-avatar-img {
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.online-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.online-dot {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #0a0a0f;
  background: #43b581;
  box-shadow: 0 0 10px #43b581;
}

.online-dot.playing {
  background: #ff6b35;
  box-shadow: 0 0 10px #ff6b35;
}

.online-user-info {
  min-width: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

.online-user-name {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.online-user-name.admin {
  color: #ffd700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.42);
}

.online-status {
  display: block;
  margin-top: 3px;
  color: #43b581;
  font-size: 0.78rem;
}

.online-status.playing {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ff9a62;
  font-weight: 800;
}

.online-status.playing .playing-game {
  min-width: 0;
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.online-console {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  font-weight: 800;
}

.online-user-card.is-playing {
  border-left: 2px solid #ff6b35;
  background: rgba(255, 107, 53, 0.08);
}

.online-arrow {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.32);
  font-size: 1.35rem;
}

.chat-typing-indicator {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.ogp-side-sheet {
  position: fixed;
  inset: 0;
  z-index: 5200;
  display: none;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(10px);
}

.ogp-side-sheet.active { display: flex; }

.ogp-side-dialog {
  width: min(430px, calc(100vw - 18px));
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  border-left: 1px solid rgba(36, 227, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(15, 20, 31, 0.98), rgba(8, 10, 18, 0.98)),
    radial-gradient(circle at 30% 0%, rgba(36, 227, 255, 0.18), transparent 34%);
  box-shadow: -26px 0 70px rgba(0, 0, 0, 0.5);
}

.ogp-chat-dialog {
  grid-template-rows: auto 1fr auto;
}

.ogp-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ogp-side-head h2 {
  margin: 2px 0 0;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: #fff;
}

.ogp-kicker {
  color: var(--ogp-yellow);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ogp-side-head button,
.ogp-sheet-cta {
  min-height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  padding: 0 12px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.ogp-live-list,
.ogp-chat-list {
  min-height: 0;
  overflow: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ogp-live-list p,
.ogp-chat-list p {
  margin: 0;
  padding: 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.055);
}

.ogp-live-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
  color: #fff;
  text-decoration: none;
}

.ogp-live-row img {
  width: 72px;
  height: 58px;
  border-radius: 10px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.ogp-live-copy {
  min-width: 0;
}

.ogp-live-copy strong,
.ogp-live-copy em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ogp-live-copy strong {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.ogp-live-copy em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
}

.ogp-live-badge {
  min-width: 48px;
  height: 28px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 49, 95, 0.16);
  border: 1px solid rgba(255, 49, 95, 0.38);
  color: #ffd6de;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.64rem;
}

.ogp-chat-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
}

.ogp-chat-row img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 216, 77, 0.16);
}

.ogp-chat-row span {
  min-width: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.075);
}

.ogp-chat-row strong,
.ogp-chat-row em {
  display: block;
}

.ogp-chat-row strong {
  color: var(--ogp-yellow);
  font-size: 0.86rem;
}

.ogp-chat-row em {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  overflow-wrap: anywhere;
}

.ogp-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ogp-chat-form input,
.ogp-chat-form button {
  min-height: 44px;
  border-radius: 11px;
  font-weight: 900;
}

.ogp-chat-form input {
  min-width: 0;
  border: 1px solid rgba(36, 227, 255, 0.2);
  background: rgba(5, 7, 14, 0.76);
  color: #fff;
  padding: 0 12px;
}

.ogp-chat-form button {
  border: 0;
  background: linear-gradient(135deg, var(--ogp-yellow), #ff8b2e);
  color: #11131b;
  padding: 0 16px;
  cursor: pointer;
}

.ogp-radio-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 3600;
  width: min(330px, calc(100vw - 36px));
  color: #fff;
  pointer-events: none;
}

.ogp-radio-bar,
.ogp-radio-panel {
  pointer-events: auto;
  border: 1px solid rgba(36, 227, 255, 0.26);
  background: rgba(10, 14, 24, 0.93);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.ogp-radio-bar {
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  color: #fff;
  text-align: left;
  padding: 8px 12px;
  cursor: pointer;
}

.ogp-radio-meter {
  height: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  border-radius: 10px;
  background: rgba(36, 227, 255, 0.1);
}

.ogp-radio-meter i {
  width: 4px;
  height: 12px;
  border-radius: 4px;
  background: var(--ogp-cyan);
  opacity: 0.45;
}

.ogp-radio-widget.is-playing .ogp-radio-meter i:nth-child(1) { height: 16px; opacity: 1; }
.ogp-radio-widget.is-playing .ogp-radio-meter i:nth-child(2) { height: 26px; opacity: 1; }
.ogp-radio-widget.is-playing .ogp-radio-meter i:nth-child(3) { height: 20px; opacity: 1; }

.ogp-radio-bar strong,
.ogp-radio-bar em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ogp-radio-bar strong {
  font-family: 'Orbitron', sans-serif;
  color: var(--ogp-yellow);
  font-size: 0.78rem;
}

.ogp-radio-bar em {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
}

.ogp-radio-panel {
  display: none;
  margin-bottom: 8px;
  padding: 12px;
  border-radius: 15px;
}

.ogp-radio-widget.panel-open .ogp-radio-panel {
  display: block;
}

.ogp-radio-track strong,
.ogp-radio-track em {
  display: block;
}

.ogp-radio-track strong {
  color: #fff;
  font-weight: 900;
}

.ogp-radio-track em {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  margin-top: 3px;
}

.ogp-radio-controls {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.ogp-radio-controls button {
  min-height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 216, 77, 0.3);
  background: rgba(255, 216, 77, 0.15);
  color: var(--ogp-yellow);
  font-weight: 900;
  padding: 0 12px;
  cursor: pointer;
}

.ogp-radio-controls label {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 800;
}

@media (max-width: 1040px) {
  body.og-games-portal-v2 .top-navbar {
    flex-wrap: wrap;
    align-items: center;
  }

  .ogp-front-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .profile-dropdown {
    right: 14px;
  }
}

@media (max-width: 680px) {
  body.og-games-portal-v2 .top-navbar {
    padding: 12px 14px;
  }

  body.og-games-portal-v2 .nav-links {
    display: none;
  }

  body.og-games-portal-v2 .og-console-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
  }

  body.og-games-portal-v2 .og-nav-chip {
    flex: 0 0 auto;
    width: auto;
  }

  body.og-games-portal-v2 .og-filter-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  body.og-games-portal-v2 .og-console-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  body.og-games-portal-v2 .og-games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ogp-front-nav {
    gap: 7px;
    scrollbar-width: none;
  }

  .ogp-front-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-active-users-pill,
  .ogp-community-btn,
  .nav-subscribe-btn,
  .nav-favorites-btn,
  .auth-btn,
  .user-btn {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .subscribe-badge,
  .nav-fav-text,
  .nav-active-text {
    display: none;
  }

  #userName {
    max-width: 76px;
  }

  .ogp-library-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .ogp-show-all {
    width: 100%;
  }

  .ogp-side-dialog {
    width: 100%;
    border-left: 0;
  }

  .ogp-live-row {
    grid-template-columns: 62px 1fr;
  }

  .ogp-live-badge {
    grid-column: 2;
    justify-self: start;
  }

  .ogp-radio-widget {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
  }

  .ogp-radio-controls {
    grid-template-columns: 1fr 1fr;
  }

  .ogp-radio-controls label {
    grid-column: 1 / -1;
  }

  .live-streams-toggle {
    top: auto;
    bottom: 94px;
    transform: none;
  }

  .live-streams-panel {
    left: -100%;
    width: 100%;
  }

  .live-chat {
    right: 10px;
    left: 10px;
    bottom: 84px;
    width: auto;
    max-width: none;
    height: min(580px, calc(100vh - 112px));
  }

  .chat-toggle-btn {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }

  .radio-player {
    left: 50%;
    right: auto;
    bottom: 14px;
    transform: translateX(-50%);
    max-width: calc(100vw - 24px);
  }

  .radio-bar {
    min-width: 150px;
    max-width: 220px;
    height: 34px;
    border-radius: 20px;
  }

  .radio-panel {
    position: fixed;
    left: 50%;
    bottom: 54px;
    width: calc(100vw - 24px);
    max-width: 300px;
    transform: translateX(-50%) translateY(10px) scale(0.95);
  }

  .radio-panel.open {
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

/* ========================================
   AVATAR BORDERS — kill the spin
   avatarBorderRotate in stream-chat-effects.css physically
   rotates the whole wrapper div, which also rotates the user's
   profile photo inside. Override here: keep glow/color effects,
   drop the rotation.
   ======================================== */
.chat-avatar-border,
.chat-avatar-border.avatar-border-rainbow,
.chat-avatar-border.avatar-border-fire,
.chat-avatar-border.avatar-border-frost,
.chat-avatar-border.avatar-border-gold,
.chat-avatar-border.avatar-border-electric,
.chat-avatar-border.avatar-border-plasma,
.chat-avatar-border.avatar-border-diamond,
.chat-avatar-border.avatar-border-nebula,
.online-avatar-border,
.online-avatar-border.avatar-border-rainbow,
.online-avatar-border.avatar-border-fire,
.online-avatar-border.avatar-border-frost,
.online-avatar-border.avatar-border-gold,
.online-avatar-border.avatar-border-electric,
.online-avatar-border.avatar-border-plasma,
.online-avatar-border.avatar-border-diamond,
.online-avatar-border.avatar-border-nebula {
  transform: none !important;
}
.avatar-border-rainbow { animation: none !important; }
.avatar-border-fire    { animation: avatarFireFlicker 0.6s ease-in-out infinite !important; }
.avatar-border-frost   { animation: none !important; }
.avatar-border-gold    { animation: avatarGoldShine 2s ease-in-out infinite !important; }
.avatar-border-plasma  { animation: none !important; }
.avatar-border-diamond { animation: avatarDiamondSparkle 1.5s ease-in-out infinite !important; }
.avatar-border-nebula  { animation: none !important; }
/* Neon only pulses/shifts gradient — block any rotate */
.avatar-border-neon    { transform: none !important; }
/* Electric uses transform-based spin; replace with brightness pulse */
.avatar-border-electric { animation: none !important; }
@keyframes avatarElectricPulse {
  0%, 100% { filter: brightness(1); }
  50%       { filter: brightness(1.6); }
}
.avatar-border-electric {
  animation: avatarElectricPulse 0.4s ease-in-out infinite !important;
}
