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

:root {
  /* Backgrounds */
  --bg-primary: #0a0f1c;
  --bg-secondary: #0f1729;
  --bg-card: #131c2e;
  --bg-elevated: #1a2540;
  --bg-hover: #1f2d4d;

  /* Accents - Modern Tech */
  --accent-cyan: #00e0ff;
  --accent-electric: #0099ff;
  --accent-lime: #aaff00;
  --accent-green: #00ff88;
  --accent-orange: #ff7b00;
  --accent-amber: #ffaa00;
  --accent-purple: #7c3aed;
  --accent-red: #ff3860;

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Borders & Glows */
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 224, 255, 0.3);
  --glow-cyan: rgba(0, 224, 255, 0.25);
  --glow-lime: rgba(170, 255, 0, 0.25);
}

html, body {
  font-family: 'Inter', sans-serif;
  background: #050810;
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  background: 
    radial-gradient(ellipse at top left, rgba(0, 153, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
    #050810;
  padding: 20px;
}

/* ════════ APP LAYOUT ════════ */
.app {
  display: grid;
  grid-template-columns: 75px 1fr 75px;
  min-height: calc(100vh - 40px);
  background: linear-gradient(135deg, #0f1729 0%, #0a0f1c 100%);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

/* ════════ LEFT SIDEBAR ════════ */
.sidebar-left {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-right: 1px solid var(--border);
}

.logo {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-electric));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050810;
  box-shadow: 
    0 8px 20px var(--glow-cyan),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.nav-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.nav-item {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 12px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  position: relative;
}

.nav-item:hover {
  color: var(--accent-cyan);
  background: rgba(0, 224, 255, 0.08);
}

.nav-item.active {
  color: var(--accent-cyan);
  background: rgba(0, 224, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(0, 224, 255, 0.3);
}

.nav-item.active::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  background: var(--accent-cyan);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px var(--accent-cyan);
}

.add-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1.5px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.add-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  border-style: solid;
}

/* ════════ MAIN CONTENT ════════ */
.main {
  padding: 30px 35px;
  overflow-y: auto;
  max-height: calc(100vh - 40px);
}

.main::-webkit-scrollbar {
  width: 6px;
}

.main::-webkit-scrollbar-track {
  background: transparent;
}

.main::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.main::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 224, 255, 0.3);
}

/* ════════ TOP BAR ════════ */
.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
  margin-bottom: 30px;
}

.greeting .hello {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 2px;
  font-weight: 400;
}

.greeting .username {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-lime));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.search-wrapper {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  transition: all 0.3s;
}

.search-wrapper:focus-within {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 224, 255, 0.1);
}

.search-icon {
  color: var(--text-muted);
}

.search-wrapper input {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  flex: 1;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.search-wrapper input::placeholder {
  color: var(--text-muted);
}

.top-actions {
  display: flex;
  gap: 10px;
}

.action-btn {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
}

.action-btn:hover {
  background: rgba(0, 224, 255, 0.08);
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent-lime);
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 8px var(--accent-lime);
}

/* ════════ CONTENT GRID ════════ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 25px;
  margin-bottom: 25px;
}

/* ════════ HERO CARD ════════ */
.hero-card {
  background: linear-gradient(135deg, #0c1424 0%, #14213d 50%, #1a2845 100%);
  border-radius: 24px;
  padding: 38px;
  position: relative;
  overflow: hidden;
  min-height: 290px;
  margin-bottom: 25px;
  border: 1px solid var(--border);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, transparent, var(--accent-cyan), transparent, var(--accent-purple), transparent);
  border-radius: 24px;
  opacity: 0.3;
  z-index: -1;
  animation: borderRotate 8s linear infinite;
}

@keyframes borderRotate {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: 
    radial-gradient(circle at 70% 50%, rgba(0, 224, 255, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 90% 30%, rgba(170, 255, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  background: 
    conic-gradient(from 0deg at 50% 50%, 
      transparent 0deg, 
      rgba(0, 224, 255, 0.15) 90deg, 
      transparent 180deg,
      rgba(170, 255, 0, 0.1) 270deg,
      transparent 360deg);
  border-radius: 50%;
  animation: spin 15s linear infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  border: 1px solid rgba(0, 224, 255, 0.2);
  border-radius: 50%;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 55%;
}

.hero-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.tag-popular {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-amber));
  color: #050810;
  box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
}

.tag-icon {
  background: rgba(0, 0, 0, 0.4);
  color: var(--accent-cyan);
  padding: 6px 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 224, 255, 0.2);
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 18px;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #ffffff 0%, #00e0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 30px rgba(0, 224, 255, 0.3);
}

.hero-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 420px;
}

.hero-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.players-avatars {
  display: flex;
}

.mini-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #14213d;
  margin-left: -8px;
}

.mini-avatar:first-child {
  margin-left: 0;
}

.mini-avatar.more {
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-cyan);
  backdrop-filter: blur(10px);
  border: 2px solid var(--accent-cyan);
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-electric));
  color: #050810;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
  box-shadow: 
    0 8px 20px var(--glow-cyan),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 30px var(--glow-cyan),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ════════ SECTIONS ════════ */
.section {
  margin-bottom: 25px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.section-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.see-more {
  color: var(--accent-cyan);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.3s;
}

.see-more:hover {
  color: var(--accent-lime);
}

/* ════════ GAME CARDS ════════ */
.games-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 50px;
  gap: 15px;
  align-items: center;
}

.game-card-mini {
  background: var(--bg-card);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.game-card-mini:hover {
  transform: translateY(-4px);
}

.game-card-mini.active-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 12px 30px var(--glow-cyan);
}

.card-bg {
  height: 130px;
  position: relative;
  overflow: hidden;
}

.survive-grad {
  background: linear-gradient(135deg, #00e0ff 0%, #0066ff 100%);
}

.quiz-grad {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
}

.race-grad {
  background: linear-gradient(135deg, #aaff00 0%, #00ff88 100%);
}

.draw-grad {
  background: linear-gradient(135deg, #ff7b00 0%, #ff3860 100%);
}

.gold-grad {
  background: linear-gradient(135deg, #ffaa00 0%, #ff7b00 100%);
}

.blue-grad {
  background: linear-gradient(135deg, #0099ff 0%, #7c3aed 100%);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
}

.card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.card-play:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: #050810;
  box-shadow: 0 0 20px var(--glow-cyan);
}

.live-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  background: var(--accent-lime);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-lime);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.card-content {
  padding: 14px 16px;
}

.card-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-content p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.scroll-arrow {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.scroll-arrow:hover {
  background: var(--accent-cyan);
  color: #050810;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px var(--glow-cyan);
}

/* ════════ ACTIVITY CARD ════════ */
.activity-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 15px;
  align-items: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.activity-card:hover {
  background: var(--bg-elevated);
  border-color: var(--border-hover);
}

.activity-thumb {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.activity-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.activity-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.time-played {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.mini-play {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-electric));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050810;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px var(--glow-cyan);
}

.mini-play:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px var(--glow-cyan);
}

/* ════════ QUICK ACCESS (RIGHT) ════════ */
.quick-access {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.quick-card {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 12px 15px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.quick-card:hover:not(.disabled) {
  background: var(--bg-elevated);
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.quick-card.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.quick-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.quick-info h5 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.quick-info p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.live-tag {
  background: rgba(170, 255, 0, 0.12);
  color: var(--accent-lime);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid rgba(170, 255, 0, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ════════ STATS SECTION ════════ */
.stats-section {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid var(--border);
}

.stats-section h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.stats-ring {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
}

.ring-svg {
  width: 100%;
  height: 100%;
}

.ring-progress {
  filter: drop-shadow(0 0 12px var(--glow-cyan));
}

/* Update gradient colors in SVG */
.ring-svg defs linearGradient stop:nth-child(1) { stop-color: var(--accent-cyan); }
.ring-svg defs linearGradient stop:nth-child(2) { stop-color: var(--accent-electric); }
.ring-svg defs linearGradient stop:nth-child(3) { stop-color: var(--accent-purple); }

.ring-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.ring-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ring-value {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-lime));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-item {
  text-align: center;
}

.stat-icon-sm {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 8px;
}

.stat-num {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.stat-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ════════ CONTROLLER BAR ════════ */
.controller-bar {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.controller-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-lime));
}

.bar-info {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-secondary);
}

.bar-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.bar-link {
  font-size: 0.9rem;
  color: var(--accent-cyan);
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

.copy-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-electric));
  color: #050810;
  border: none;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  box-shadow: 0 4px 12px var(--glow-cyan);
}

.copy-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--glow-cyan);
}

/* ════════ RIGHT SIDEBAR (FRIENDS) ════════ */
.sidebar-right {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-left: 1px solid var(--border);
}

.profile-pic {
  position: relative;
  margin-bottom: 10px;
}

.avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px var(--glow-cyan);
}

.online-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: var(--accent-lime);
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 8px var(--accent-lime);
}

.friends-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.friend {
  position: relative;
}

.friend-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.friend-avatar:hover {
  transform: scale(1.1);
  border-color: var(--accent-cyan);
}

.grad-1 { background: linear-gradient(135deg, #00e0ff, #0099ff); }
.grad-2 { background: linear-gradient(135deg, #aaff00, #00ff88); }
.grad-3 { background: linear-gradient(135deg, #ff7b00, #ffaa00); }
.grad-4 { background: linear-gradient(135deg, #7c3aed, #4f46e5); }
.grad-5 { background: linear-gradient(135deg, #0099ff, #7c3aed); }
.grad-6 { background: linear-gradient(135deg, #00e0ff, #aaff00); }
.grad-7 { background: linear-gradient(135deg, #ff3860, #7c3aed); }

.status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #475569;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
}

.status-dot.online {
  background: var(--accent-lime);
  box-shadow: 0 0 8px var(--accent-lime);
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1200px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-right {
    display: none;
  }

  .app {
    grid-template-columns: 75px 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding: 0;
  }

  .app {
    border-radius: 0;
    grid-template-columns: 60px 1fr;
  }

  .main {
    padding: 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .games-row {
    grid-template-columns: 1fr;
  }

  .search-wrapper {
    max-width: 200px;
  }
}