/* ══════════════════════════════════════════════
   BASE — reset, variables, body, layout, panel
══════════════════════════════════════════════ */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #080808;
  --card:         #0e0e0e;
  --panel:        #111;
  --border:       rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.13);
  --text:         #efefef;
  --muted:        #5a5a5a;
  --muted2:       #333;
  --accent:       #e8e0ff;
  --green:        #3ba55c;
  --yellow:       #faa81a;
  --red:          #ed4245;
  --grey:         #747f8d;
  --discord:      #8a93f8;
}

html, body { min-height: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: 1.25rem;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background: url('https://r2.guns.lol/26487193-d18f-44fe-9c1a-92479abcafcb.webp') center/cover no-repeat;
  filter: blur(70px) brightness(0.1) saturate(1.6);
  transform: scale(1.12);
  pointer-events: none;
}

/* ── Keyframes ── */
@keyframes up     { from { opacity:0; transform:translateY(22px) } to { opacity:1; transform:translateY(0) } }
@keyframes pulse  { 0%,100% { opacity:1 } 50% { opacity:.35 } }
@keyframes fadeIn { from { opacity:0; transform:translateY(6px) } to { opacity:1; transform:translateY(0) } }
@keyframes sweep  {
  0%   { left:-60%; opacity:0 }
  20%  { opacity:1 }
  80%  { opacity:1 }
  100% { left:130%; opacity:0 }
}
@keyframes spin   { to { transform:rotate(360deg) } }

/* ── Outer wrapper ── */
.outer {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "left right" "val val";
  gap: 10px;
  max-width: 820px;
  width: 100%;
  animation: up .55s cubic-bezier(.16,1,.3,1) both;
  align-items: stretch;
}
.left      { grid-area: left }
.right     { grid-area: right }
.val-panel { grid-area: val }

/* ── Shared panel ── */
.panel {
  background: rgba(10,10,10,0.88);
  border: 1px solid rgba(138,147,248,0.18);
  border-radius: 18px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(138,147,248,0.06),
    0 0 18px rgba(138,147,248,0.07),
    0 0 40px rgba(138,147,248,0.04),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.panel::before {
  content: '';
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138,147,248,0.6), transparent);
  animation: sweep 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.panel:hover {
  border-color: rgba(138,147,248,0.35);
  box-shadow:
    0 0 0 1px rgba(138,147,248,0.1),
    0 0 28px rgba(138,147,248,0.14),
    0 0 60px rgba(138,147,248,0.07),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ── Section label ── */
.sec-label {
  font-size: .6rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: .55rem;
  display: flex; align-items: center; gap: 7px;
  font-family: 'DM Mono', monospace;
}
.sec-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── Divider ── */
.divider { height: 1px; background: var(--border); margin: .1rem 0 .85rem; }

/* ── Views counter ── */
.views {
  margin-top: auto;
  padding-top: .9rem;
  font-size: .65rem; color: var(--muted2);
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-family: 'DM Mono', monospace;
}
.views svg { width: 11px; height: 11px; color: var(--muted2); }

/* ══════════════════════════════
   LEFT COLUMN — profile
══════════════════════════════ */
.left {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.4rem 1.2rem;
  gap: 0;
}

/* Avatar */
.avatar-wrap {
  position: relative;
  width: 72px; height: 72px;
  margin: 0 auto .85rem;
  flex-shrink: 0;
}
.avatar-wrap img {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-hover);
  display: block;
}
.status-ring {
  position: absolute; bottom: 1px; right: 1px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--grey);
  border: 2.5px solid #0a0a0a;
  transition: background .15s ease, box-shadow .3s ease;
}
.status-ring.online { background: var(--green); box-shadow: 0 0 6px 2px rgba(59,165,92,.7),0 0 14px rgba(59,165,92,.4); }
.status-ring.idle   { background: var(--yellow); box-shadow: 0 0 6px 2px rgba(250,168,26,.7),0 0 14px rgba(250,168,26,.4); }
.status-ring.dnd    { background: var(--red);    box-shadow: 0 0 6px 2px rgba(237,66,69,.7), 0 0 14px rgba(237,66,69,.4); }

/* Profile text */
.username { font-size: 1.15rem; font-weight: 800; letter-spacing: -.5px; text-align: center; }
.uid      { font-size: .68rem; color: var(--muted); text-align: center; margin: .15rem 0 .3rem; font-family: 'DM Mono', monospace; }
.bio      { font-size: .75rem; color: #666; text-align: center; margin-bottom: .3rem; line-height: 1.5; font-family: 'DM Mono', monospace; }
.location {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  font-size: .68rem; color: var(--muted);
  margin: 0 auto .9rem;
  font-family: 'DM Mono', monospace;
}
.location svg { width: 10px; height: 10px; flex-shrink: 0; }

/* ── Discord activity card ── */
#discord-card {
  background: rgba(88,101,242,.07);
  border: 1px solid rgba(88,101,242,.2);
  border-radius: 11px;
  padding: 10px 12px;
  text-align: left;
  margin-bottom: .9rem;
  display: none;
  animation: fadeIn .25s ease both;
  box-shadow: 0 0 16px rgba(88,101,242,.1), 0 0 32px rgba(88,101,242,.05);
}
.dc-header {
  font-size: .6rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #5b62b0;
  display: flex; align-items: center; gap: 5px; margin-bottom: 7px;
  font-family: 'DM Mono', monospace;
}
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: pulse 1.8s ease-in-out infinite; flex-shrink: 0; }
.dc-body  { display: flex; align-items: center; gap: 9px; }
.dc-art {
  width: 42px; height: 42px; border-radius: 7px; flex-shrink: 0;
  background: rgba(88,101,242,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; overflow: hidden; position: relative;
}
.dc-art img { width: 42px; height: 42px; object-fit: cover; border-radius: 7px; }
.dc-art .dc-small {
  position: absolute; bottom: -3px; right: -3px;
  width: 16px; height: 16px; border-radius: 4px;
  border: 2px solid #0e0e0e; background: #0e0e0e;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.dc-art .dc-small img { width: 12px; height: 12px; object-fit: cover; }
.dc-info  { flex: 1; min-width: 0; }
.dc-name  { font-size: .78rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dc-sub   { font-size: .68rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; font-family: 'DM Mono', monospace; }
.dc-sub2  { font-size: .64rem; color: var(--muted2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; font-family: 'DM Mono', monospace; }
.spt-bar  { margin-top: 7px; height: 2px; border-radius: 2px; background: rgba(255,255,255,.07); }
.spt-fill { height: 100%; border-radius: 2px; background: #1db954; transition: width 1s linear; }
.spt-times { display: flex; justify-content: space-between; font-size: .58rem; color: var(--muted2); margin-top: 3px; font-family: 'DM Mono', monospace; }

/* ── Idle card ── */
#idle-card {
  border-radius: 11px;
  padding: 10px 12px;
  margin-bottom: .9rem;
  display: none;
  animation: fadeIn .3s ease both;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
#idle-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(138,147,248,.04) 0%, transparent 60%);
  pointer-events: none;
}
.idle-header {
  font-size: .6rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 5px; margin-bottom: 8px;
  font-family: 'DM Mono', monospace;
}
.idle-dot   { width: 5px; height: 5px; border-radius: 50%; background: var(--muted2); flex-shrink: 0; }
.idle-body  { display: flex; align-items: center; gap: 10px; }
.idle-art   { width: 42px; height: 42px; border-radius: 7px; flex-shrink: 0; background: rgba(255,255,255,.04); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.idle-info  { flex: 1; min-width: 0; }
.idle-name  { font-size: .75rem; font-weight: 700; color: var(--text); white-space: normal; line-height: 1.35; }
.idle-sub   { font-size: .63rem; color: var(--muted); font-family: 'DM Mono', monospace; margin-top: 2px; white-space: normal; line-height: 1.4; }
.idle-games { display: flex; gap: 4px; margin-top: 7px; flex-wrap: wrap; }
.idle-chip  { font-size: .58rem; font-weight: 600; font-family: 'DM Mono', monospace; padding: 2px 7px; border-radius: 4px; background: rgba(255,255,255,.04); border: 1px solid var(--border); color: var(--muted); letter-spacing: .04em; }

/* ── Links ── */
.links { display: flex; flex-direction: column; gap: 7px; flex-shrink: 0; }
.link-row {
  display: flex; align-items: center; gap: 10px;
  padding: .55rem .8rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  color: var(--text); text-decoration: none;
  font-size: .78rem; font-weight: 600;
  transition: background .15s, border-color .2s, transform .1s, box-shadow .2s;
  cursor: pointer; text-align: left;
}
.link-row:hover           { background: rgba(255,255,255,.05); border-color: rgba(138,147,248,0.4); transform: translateY(-1px); box-shadow: 0 0 12px rgba(138,147,248,0.12), 0 0 24px rgba(138,147,248,0.06); }
.li-discord:hover         { border-color: rgba(88,101,242,.5)   !important; box-shadow: 0 0 14px rgba(88,101,242,.18),  0 0 28px rgba(88,101,242,.08)  !important; }
.li-spotify:hover         { border-color: rgba(29,185,84,.45)   !important; box-shadow: 0 0 14px rgba(29,185,84,.15),   0 0 28px rgba(29,185,84,.07)   !important; }
.li-instagram:hover       { border-color: rgba(225,48,108,.45)  !important; box-shadow: 0 0 14px rgba(225,48,108,.15),  0 0 28px rgba(225,48,108,.07)  !important; }
.li-facebook:hover        { border-color: rgba(24,119,242,.45)  !important; box-shadow: 0 0 14px rgba(24,119,242,.15),  0 0 28px rgba(24,119,242,.07)  !important; }
.li-youtube:hover         { border-color: rgba(255,68,68,.45)   !important; box-shadow: 0 0 14px rgba(255,68,68,.15),   0 0 28px rgba(255,68,68,.07)   !important; }
.li-steam:hover           { border-color: rgba(200,200,220,.3)  !important; box-shadow: 0 0 12px rgba(200,200,220,.08)                                 !important; }
.li-linkedin:hover        { border-color: rgba(10,102,194,.45)  !important; box-shadow: 0 0 14px rgba(10,102,194,.15),  0 0 28px rgba(10,102,194,.07)  !important; }
.link-row:active { transform: none; }

.link-icon { width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.link-icon svg, .link-icon img { width: 15px; height: 15px; }
.li-discord  .link-icon { background: rgba(88,101,242,.15); }
.li-spotify  .link-icon { background: rgba(29,185,84,.12); }
.li-instagram .link-icon{ background: rgba(225,48,108,.12); }
.li-steam    .link-icon { background: rgba(255,255,255,.07); }
.li-facebook .link-icon { background: rgba(24,119,242,.12); }
.li-youtube  .link-icon { background: rgba(255,0,0,.1); }
.li-linkedin .link-icon { background: rgba(10,102,194,.12); }
.li-discord  .link-icon svg { color: #8a93f8; }
.li-spotify  .link-icon svg { color: #1db954; }
.li-instagram .link-icon svg{ color: #f06a8a; }
.li-steam    .link-icon svg { color: #c2c8d0; }
.li-facebook .link-icon svg { color: #6aaaf5; }
.li-youtube  .link-icon svg { color: #ff4444; }
.li-linkedin .link-icon svg { color: #5b9eda; }

.link-text   { flex: 1; min-width: 0; }
.link-name   { display: block; font-size: .78rem; font-weight: 600; }
.link-handle { display: block; font-size: .65rem; color: var(--muted); margin-top: 1px; font-family: 'DM Mono', monospace; }
.link-arrow  { opacity: .2; font-size: .8rem; flex-shrink: 0; }
.link-row:hover .link-arrow { opacity: .45; }

/* ── Favorite Games ── */
.fav-games    { display: flex; flex-direction: column; gap: 7px; margin-top: .1rem; }
.fav-game-row {
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .6rem .85rem;
  transition: border-color .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.fav-game-row::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .2s; pointer-events: none; }
.fav-game-row.pubg::before { background: linear-gradient(90deg, rgba(255,180,50,.05), transparent); }
.fav-game-row.valo::before { background: linear-gradient(90deg, rgba(255,70,85,.05), transparent); }
.fav-game-row:hover::before { opacity: 1; }
.fav-game-row.pubg:hover { border-color: rgba(255,180,50,.35); box-shadow: 0 0 12px rgba(255,180,50,.1); }
.fav-game-row.valo:hover { border-color: rgba(255,70,85,.35);  box-shadow: 0 0 12px rgba(255,70,85,.1); }
.fav-game-icon { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fav-game-icon img { width: 36px; height: 36px; object-fit: cover; border-radius: 8px; }
.fav-game-info { flex: 1; min-width: 0; }
.fav-game-name  { font-size: .82rem; font-weight: 700; color: var(--text); letter-spacing: -.2px; }
.fav-game-hrs   { font-size: .65rem; color: var(--muted); font-family: 'DM Mono', monospace; margin-top: 2px; }
.fav-game-badge { font-size: .6rem; font-weight: 700; font-family: 'DM Mono', monospace; letter-spacing: .05em; padding: 2px 7px; border-radius: 5px; flex-shrink: 0; }
.fav-game-row.pubg .fav-game-badge { background: rgba(255,180,50,.12); border: 1px solid rgba(255,180,50,.25); color: #ffb432; }
.fav-game-row.valo .fav-game-badge { background: rgba(255,70,85,.12);  border: 1px solid rgba(255,70,85,.25);  color: #ff4655; }

/* ══════════════════════════════
   RIGHT COLUMN
══════════════════════════════ */
.right {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.35rem 1.2rem;
  gap: 1.1rem;
}

/* Gaming setup grid */
.setup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.setup-item {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: .55rem .7rem;
  display: flex; flex-direction: column; gap: 2px;
  transition: border-color .2s, box-shadow .2s;
}
.setup-item:hover { border-color: rgba(138,147,248,0.35); box-shadow: 0 0 10px rgba(138,147,248,0.1); }
.setup-item-label { font-size: .58rem; color: var(--muted); font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .07em; }
.setup-item-val   { font-size: .78rem; font-weight: 700; color: var(--text); }

/* Rank badge */
.rank-row {
  background: rgba(255,220,80,.05);
  border: 1px solid rgba(255,220,80,.12);
  border-radius: 9px;
  padding: .6rem .8rem;
  display: flex; align-items: center; gap: .7rem;
  transition: border-color .2s, box-shadow .2s;
}
.rank-row:hover { border-color: rgba(255,220,80,.38); box-shadow: 0 0 14px rgba(255,200,60,.13), 0 0 30px rgba(255,200,60,.06); }
.rank-icon { font-size: 1.4rem; flex-shrink: 0; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.rank-icon img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(255,210,80,.3)); }
.rank-info  { flex: 1; }
.rank-game  { font-size: .6rem; color: #a89040; font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .08em; }
.rank-val   { font-size: .9rem; font-weight: 800; color: #f5d060; letter-spacing: -.3px; }
.rank-sub   { font-size: .62rem; color: #7a6830; font-family: 'DM Mono', monospace; margin-top: 1px; }
.rank-rr    { font-size: .68rem; font-weight: 700; color: #f5d060; font-family: 'DM Mono', monospace; background: rgba(245,208,96,.12); border: 1px solid rgba(245,208,96,.2); border-radius: 5px; padding: 1px 6px; margin-left: auto; flex-shrink: 0; }

/* Current Rank row */
.rank-row.current-rank { background: rgba(100,160,255,.05); border: 1px solid rgba(100,160,255,.15); margin-top: 6px; }
.rank-row.current-rank .rank-game { color: #6a8fc0; }
.rank-row.current-rank .rank-val  { color: #a8caff; }
.rank-row.current-rank .rank-sub  { color: #4a6080; }
.rank-row.current-rank .rank-rr   { color: #a8caff; background: rgba(100,160,255,.12); border-color: rgba(100,160,255,.25); }

/* Tracker Score row */
.tracker-row {
  margin-top: 6px;
  background: rgba(180,120,255,.05);
  border: 1px solid rgba(180,120,255,.13);
  border-radius: 9px;
  padding: .55rem .8rem;
  display: flex; align-items: center; gap: .7rem;
  transition: border-color .2s, box-shadow .2s;
}
.tracker-row:hover { border-color: rgba(180,120,255,.38); box-shadow: 0 0 14px rgba(180,120,255,.14), 0 0 30px rgba(180,120,255,.06); }
.tracker-icon   { width: 28px; height: 28px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(180,120,255,.12); border-radius: 7px; }
.tracker-icon svg { width: 14px; height: 14px; color: #b47fff; }
.tracker-info   { flex: 1; }
.tracker-label  { font-size: .6rem; color: #7a58b0; font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .08em; }
.tracker-val    { font-size: .88rem; font-weight: 800; color: #c89fff; letter-spacing: -.2px; }
.tracker-sub    { font-size: .62rem; color: #5a3880; font-family: 'DM Mono', monospace; margin-top: 1px; }
.tracker-badge  { font-size: .62rem; font-weight: 700; font-family: 'DM Mono', monospace; background: rgba(180,120,255,.15); border: 1px solid rgba(180,120,255,.25); border-radius: 5px; padding: 1px 7px; color: #c89fff; flex-shrink: 0; }

/* Tournaments */
.tourney-list { display: flex; flex-direction: column; gap: 5px; }
.tourney-item {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .5rem .7rem;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: .73rem; line-height: 1.4;
  transition: border-color .2s, box-shadow .2s;
}
.tourney-item:hover { border-color: rgba(138,147,248,.32); box-shadow: 0 0 10px rgba(138,147,248,.09); }
.tourney-dot  { width: 6px; height: 6px; border-radius: 50%; background: rgba(138,147,248,.5); flex-shrink: 0; margin-top: .35em; }
.tourney-name { color: var(--text); font-weight: 600; }
.tourney-year { font-size: .63rem; color: var(--muted); font-family: 'DM Mono', monospace; display: block; margin-top: 1px; }

/* ── YouTube Theater Card ── */
.yt-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,68,68,.18);
  border-radius: 11px;
  padding: .75rem 1rem;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, background .15s, transform .1s;
  box-shadow: 0 0 14px rgba(255,68,68,.07);
}
.yt-card:hover  { background: rgba(255,68,68,.06); border-color: rgba(255,68,68,.4); box-shadow: 0 0 20px rgba(255,68,68,.14), 0 0 40px rgba(255,68,68,.06); transform: translateY(-1px); }
.yt-card:active { transform: none; }
.yt-card-left   { display: flex; align-items: center; gap: 11px; }
.yt-play-btn    { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; background: rgba(255,68,68,.15); border: 1px solid rgba(255,68,68,.25); display: flex; align-items: center; justify-content: center; transition: background .2s, box-shadow .2s; }
.yt-card:hover .yt-play-btn { background: rgba(255,68,68,.25); box-shadow: 0 0 12px rgba(255,68,68,.3); }
.yt-play-btn svg   { width: 16px; height: 16px; color: #ff4444; margin-left: 2px; }
.yt-card-title     { font-size: .82rem; font-weight: 700; color: var(--text); letter-spacing: -.2px; }
.yt-card-sub       { font-size: .65rem; color: var(--muted); font-family: 'DM Mono', monospace; margin-top: 2px; }
.yt-card-badge     { display: flex; align-items: center; gap: 5px; flex-shrink: 0; font-size: .62rem; font-weight: 700; font-family: 'DM Mono', monospace; color: #ff4444; background: rgba(255,68,68,.1); border: 1px solid rgba(255,68,68,.2); border-radius: 6px; padding: 3px 8px; }

/* ══════════════════════════════
   MOBILE
══════════════════════════════ */
@media (max-width: 680px) {
  html, body { height: auto; overflow: auto; }
  body        { align-items: flex-start; padding: .9rem .75rem 2rem; }
  .outer      { grid-template-columns: 1fr; grid-template-areas: "left" "right" "val"; gap: 10px; max-width: 100%; align-items: start; }
  .left       { padding: 1.4rem 1.2rem 1.1rem; }
  .right      { padding: 1.2rem 1.2rem 1.1rem; gap: .9rem; }
  .setup-grid { grid-template-columns: 1fr 1fr; }
  /* val-matches is already single column */
}

/* ── League of Legends fav-game row ── */
.fav-game-row.lol::before  { background: linear-gradient(90deg, rgba(200,155,60,.06), transparent); }
.fav-game-row.lol:hover    { border-color: rgba(200,155,60,.38); box-shadow: 0 0 12px rgba(200,155,60,.12); }
.fav-game-row.lol .fav-game-badge { background: rgba(200,155,60,.12); border: 1px solid rgba(200,155,60,.28); color: #c89b3c; }

/* ── Valorant Tracker Card ── */
.valo-tracker-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 70, 85, 0.05);
  border: 1px solid rgba(255, 70, 85, 0.18);
  border-radius: 11px;
  padding: .72rem 1rem;
  text-decoration: none;
  color: var(--text);
  transition: background .2s, border-color .2s, box-shadow .2s, transform .1s;
  box-shadow: 0 0 14px rgba(255, 70, 85, 0.06);
}
.valo-tracker-card:hover {
  background: rgba(255, 70, 85, 0.1);
  border-color: rgba(255, 70, 85, 0.42);
  box-shadow: 0 0 20px rgba(255, 70, 85, 0.15), 0 0 40px rgba(255, 70, 85, 0.06);
  transform: translateY(-1px);
}
.valo-tracker-card:active { transform: none; }
.valo-tracker-left  { display: flex; align-items: center; gap: 11px; }
.valo-tracker-icon  {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255, 70, 85, 0.12); border: 1px solid rgba(255, 70, 85, 0.22);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, box-shadow .2s;
}
.valo-tracker-card:hover .valo-tracker-icon {
  background: rgba(255, 70, 85, 0.22);
  box-shadow: 0 0 10px rgba(255, 70, 85, 0.25);
}
.valo-tracker-title { font-size: .82rem; font-weight: 700; color: var(--text); letter-spacing: -.2px; }
.valo-tracker-sub   { font-size: .65rem; color: var(--muted); font-family: 'DM Mono', monospace; margin-top: 2px; }
.valo-tracker-badge {
  display: flex; align-items: center; gap: 5px; flex-shrink: 0; white-space: nowrap;
  font-size: .62rem; font-weight: 700; font-family: 'DM Mono', monospace;
  color: #ff4655; background: rgba(255, 70, 85, 0.1);
  border: 1px solid rgba(255, 70, 85, 0.22); border-radius: 6px; padding: 3px 8px;
}
