/* ============================================
   PIXEL CRAFT TIERLIST - COMPLETE STYLES
   Animated Background, Gamemode Rings, Context Menu, etc.
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  color: #eef4ff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  background: #03070e;
}

/* -------------------- ANIMATED BACKGROUND ------------------- */
.animated-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 30% 30%, #0b1a2f, #03070e);
}
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatOrb 20s infinite alternate ease-in-out;
}
.orb-1 {
  width: 60vw;
  height: 60vw;
  background: #1a4a7a;
  top: -20vh;
  left: -10vw;
  animation-duration: 25s;
}
.orb-2 {
  width: 50vw;
  height: 50vw;
  background: #2a5f8a;
  bottom: -10vh;
  right: -5vw;
  animation-duration: 30s;
  animation-delay: -5s;
}
.orb-3 {
  width: 40vw;
  height: 40vw;
  background: #0e3a5c;
  top: 40vh;
  left: 60vw;
  animation-duration: 22s;
  animation-delay: -10s;
}
@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10%, 5%) scale(1.1); }
}
.pixel-overlay {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0,160,255,0.02) 0px, transparent 2px),
                    repeating-linear-gradient(90deg, rgba(0,160,255,0.02) 0px, transparent 2px);
  pointer-events: none;
}
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4wNCIgLz48L3N2Zz4=');
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

/* -------------------- IP CORNER ------------------- */
.ip-corner {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}
.ip-corner > * { pointer-events: auto; }
.ip-box {
  background: rgba(8, 20, 36, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid #1e4b70;
  border-radius: 40px;
  padding: 8px 14px 8px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c5ddff;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px -5px #00000060;
}
.ip-box.eagler { border-color: #3a7ca5; }
.ip-box i { font-size: 1.2rem; color: #6eb5ff; }
.ip-text {
  font-family: 'SF Mono', 'Menlo', monospace;
  letter-spacing: 0.3px;
}
.copy-ip {
  background: none;
  border: none;
  color: #aac8ff;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 20px;
  transition: 0.2s;
}
.copy-ip:hover { background: #1e3a5a; color: white; }
.discord-btn {
  background: #5865F2;
  color: white;
  padding: 10px 18px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 14px #5865F280;
  transition: 0.2s;
}
.discord-btn:hover { background: #4752c4; transform: scale(1.02); }

/* -------------------- HEADER ------------------- */
.app-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 40px;
  position: relative;
}
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
}
.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  background: linear-gradient(145deg, #1e4b70, #0a1e30);
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #6eb5ff;
  box-shadow: 0 8px 0 #061018, 0 0 0 2px #2a5f8a;
  animation: glowPulse 3s infinite alternate;
}
@keyframes glowPulse {
  0% { box-shadow: 0 8px 0 #061018, 0 0 5px #2a5f8a; }
  100% { box-shadow: 0 8px 0 #061018, 0 0 15px #3b82f6; }
}
.logo-text { display: flex; align-items: baseline; gap: 6px; }
.logo-word {
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #b8d6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-word.accent {
  background: linear-gradient(135deg, #6eb5ff, #3b7eff);
  -webkit-background-clip: text;
  background-clip: text;
}
.logo-sub {
  font-size: 1rem;
  font-weight: 600;
  color: #aac8ff;
  margin-left: 8px;
  text-shadow: 0 0 10px #3b82f6;
}
.header-actions { display: flex; gap: 16px; align-items: center; }
.live-badge {
  background: #0f1e2c;
  border: 1px solid #2a4c6e;
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #aad0ff;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}
.pulse {
  width: 8px;
  height: 8px;
  background: #2aff8b;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: pulse-green 1.8s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
.region-filter {
  background: rgba(10, 25, 45, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid #1e3a5f;
  border-radius: 40px;
  padding: 4px 8px 4px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aac8ff;
}
.region-filter select {
  background: transparent;
  border: none;
  color: white;
  font-weight: 600;
  padding: 8px 0;
  outline: none;
  cursor: pointer;
  font-size: 0.9rem;
}
.region-filter select option { background: #0a1a2b; }

/* -------------------- GAMEMODE STRIP ------------------- */
.gamemode-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 0 24px;
  margin-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #1e4b70 #030a12;
}
.gamemode-strip::-webkit-scrollbar { height: 4px; }
.gamemode-strip::-webkit-scrollbar-thumb { background: #1e4b70; border-radius: 10px; }
.gamemode-chip {
  background: rgba(8, 22, 40, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid #1e3a5a;
  padding: 10px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #c4d9ff;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.15s;
  text-transform: capitalize;
  box-shadow: 0 2px 6px #00000030;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gamemode-chip i, .gamemode-chip svg {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 1px 2px black);
}
.gamemode-chip:hover { background: #1a3452; border-color: #3b7eb0; }
.gamemode-chip.active {
  background: #1e4b70;
  border-color: #6eb5ff;
  color: white;
  box-shadow: 0 0 12px #3b82f6;
}

/* -------------------- LEADERBOARD TABLE ------------------- */
.leaderboard-wrapper {
  background: rgba(4, 15, 28, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid #1e3e60;
  border-radius: 32px;
  padding: 4px 0 12px;
  box-shadow: 0 30px 45px -15px #00000080, 0 0 0 1px #1e4b7033 inset;
}
.table-header {
  display: grid;
  grid-template-columns: 60px 2.5fr 100px 90px 70px;
  padding: 18px 24px 14px;
  color: #8ba9d2;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #1e3a5a;
}
.skeleton-container { padding: 0 12px; }
.skeleton-row {
  display: grid;
  grid-template-columns: 60px 2.5fr 100px 90px 70px;
  padding: 18px 12px;
  align-items: center;
  border-radius: 20px;
  margin: 6px 0;
  animation: skeleton-loading 1.4s infinite ease-in-out;
}
.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #1e3450;
  margin-right: 12px;
  transform: rotate(-5deg);
}
.skeleton-line {
  height: 14px;
  background: #1a2f4a;
  border-radius: 8px;
  width: 80%;
  margin: 4px 0;
}
.skeleton-line.short { width: 50%; }
@keyframes skeleton-loading {
  0% { opacity: 0.5; }
  50% { opacity: 0.8; background: #213a55; }
  100% { opacity: 0.5; }
}

/* Actual Rows */
.leaderboard-rows .row {
  display: grid;
  grid-template-columns: 60px 2.5fr 100px 90px 70px;
  align-items: center;
  padding: 16px 24px;
  border-radius: 20px;
  margin: 4px 12px;
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.leaderboard-rows .row:hover {
  background: #0e233b;
  border-color: #2f6396;
  transform: scale(1.01);
  box-shadow: 0 4px 12px #00000030;
}
.rank-col { font-weight: 700; color: #b8d4ff; font-size: 1.1rem; }
.player-info { display: flex; align-items: center; gap: 14px; }
.player-skin {
  width: 42px;
  height: 42px;
  image-rendering: crisp-edges;
  transform: rotate(-5deg) perspective(200px) rotateY(5deg);
  border-radius: 10px;
  box-shadow: 0 6px 0 #0a1520, 0 0 0 2px #2a5f8a;
  transition: transform 0.2s;
  background: #142b3b;
}
.player-skin:hover { transform: rotate(-3deg) perspective(200px) rotateY(8deg) scale(1.05); }
.player-name-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.player-name { font-weight: 600; font-size: 1rem; color: #eaf0ff; }
.staff-badge-mini { font-size: 0.8rem; color: #ffd966; margin-left: 4px; }
.owner-crown { color: #fbbf24; margin-left: 4px; }

/* Tier Bubbles */
.tier-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  text-shadow: 0 2px 3px black;
  box-shadow: 0 6px 0 #00000060, 0 0 15px currentColor, inset 0 2px 4px #ffffff40;
  border: 2px solid #ffffff50;
  transition: transform 0.1s;
  cursor: help;
}
.tier-ht1 { background: radial-gradient(circle at 30% 30%, #ffe680, #c49a00); box-shadow: 0 6px 0 #7a5c00, 0 0 22px #ffb347; border-color: #ffdf80; }
.tier-lt1 { background: radial-gradient(circle at 30% 30%, #ffeaa6, #b8860b); box-shadow: 0 6px 0 #7a5c00, 0 0 18px #ffd966; border-color: #ffdfa0; }
.tier-ht2 { background: radial-gradient(circle at 30% 30%, #c0d0e8, #4f6f8f); box-shadow: 0 6px 0 #2c4053, 0 0 18px #7aa3c2; border-color: #b0c8e0; }
.tier-lt2 { background: radial-gradient(circle at 30% 30%, #d0e0f0, #5f7f9f); box-shadow: 0 6px 0 #364f66, 0 0 14px #9bb7d4; border-color: #c0d8f0; }
.tier-ht3 { background: radial-gradient(circle at 30% 30%, #e0a060, #8b4513); box-shadow: 0 6px 0 #5a2e0e, 0 0 14px #cd7f32; border-color: #d09050; }
.tier-lt3 { background: radial-gradient(circle at 30% 30%, #e0b080, #9e5e2c); box-shadow: 0 6px 0 #6e3f1a, 0 0 12px #b87333; border-color: #d0a070; }
.tier-ht4 { background: radial-gradient(circle at 30% 30%, #b0b0b0, #4a4a4a); box-shadow: 0 6px 0 #2b2b2b, 0 0 12px #9e9e9e; border-color: #c0c0c0; }
.tier-lt4 { background: radial-gradient(circle at 30% 30%, #c0c0c0, #5e5e5e); box-shadow: 0 6px 0 #353535, 0 0 10px #b0b0b0; border-color: #d0d0d0; }
.tier-ht5 { background: radial-gradient(circle at 30% 30%, #7a9ba8, #2f4f5a); box-shadow: 0 6px 0 #1f333a, 0 0 10px #6b8e9b; border-color: #8aa8b4; }
.tier-lt5 { background: radial-gradient(circle at 30% 30%, #8aa8b4, #3a5a66); box-shadow: 0 6px 0 #263b43, 0 0 8px #7a9ba8; border-color: #9ab8c4; }

.region-tag {
  background: #10273e;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid #1f5880;
  display: inline-block;
  text-align: center;
  min-width: 50px;
}
.points-col { font-weight: 700; color: #c4e1ff; font-size: 1.2rem; }

/* -------------------- EMPTY STATE ------------------- */
.empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}
.empty-state-content {
  background: rgba(8, 22, 40, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid #1e4b70;
  border-radius: 48px;
  padding: 48px 40px;
  max-width: 400px;
}
.empty-state-content i {
  font-size: 4rem;
  color: #4f7aa6;
  margin-bottom: 20px;
  opacity: 0.8;
}
.empty-state-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #d0e4ff;
}
.empty-state-content p { color: #8ba9d2; font-size: 1rem; }

/* -------------------- MODAL ------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: #030b14dd;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-card {
  background: #0b1b2b;
  border: 1px solid #1e4b70;
  border-radius: 36px;
  padding: 32px 28px 24px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 30px 50px #00000080, 0 0 0 1px #2f6493 inset;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #9bb9e0;
  font-size: 1.5rem;
  cursor: pointer;
}
.btn-primary {
  background: #1f4970;
  border: none;
  padding: 14px 24px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: 0.2s;
  border: 1px solid #5588bb;
  width: 100%;
  text-align: center;
}
.btn-primary:hover { background: #2b5f8a; box-shadow: 0 0 14px #3f92d0; }

/* -------------------- PROFILE PAGE ------------------- */
.player-page { display: flex; align-items: center; min-height: 100vh; }
.player-container { width: 100%; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #b3d6ff;
  font-weight: 600;
  text-decoration: none;
  background: rgba(10,25,45,0.6);
  padding: 8px 18px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  border: 1px solid #1e4b70;
}
.player-profile-card {
  background: rgba(8, 20, 36, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 40px;
  border: 1px solid #1f4b72;
  box-shadow: 0 25px 40px -12px #00000080;
}
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.profile-skin-large {
  width: 160px;
  image-rendering: crisp-edges;
  border-radius: 24px;
  box-shadow: 0 12px 0 #0a1520, 0 0 0 3px #2a5f8a;
}
.staff-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1e3a5a;
  padding: 6px 16px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #3b7eb0;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}
.social-link {
  color: #aac8ff;
  font-size: 1.6rem;
  transition: 0.2s;
}
.social-link:hover { color: white; transform: scale(1.1); }
.stat-card {
  background: #10273e;
  border-radius: 20px;
  padding: 18px;
  text-align: center;
  border: 1px solid #1f5880;
}
.stat-card i { font-size: 1.8rem; color: #6eb5ff; margin-bottom: 10px; }

/* -------------------- GAMEMODE RINGS (PROFILE PAGE) ------------------- */
.gamemode-rings-section {
  margin-top: 30px;
  width: 100%;
}

.gamemode-rings-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #c4d9ff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gamemode-rings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 20px;
  justify-items: center;
}

.gamemode-ring-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.gamemode-ring {
  width: 90px;                /* increased from 80px */
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #142b3b;
  box-shadow: 0 6px 0 #0a1520, 0 0 0 3px;
  transition: transform 0.2s;
}

.gamemode-ring.gold {
  box-shadow: 0 6px 0 #7a5c00, 0 0 15px #ffd966, 0 0 0 3px #fbbf24;
}

.gamemode-ring.silver {
  box-shadow: 0 6px 0 #4a5568, 0 0 12px #cbd5e1, 0 0 0 3px #94a3b8;
}

.gamemode-ring.bronze {
  box-shadow: 0 6px 0 #6e3f1a, 0 0 10px #cd7f32, 0 0 0 3px #b87333;
}

.gamemode-ring i,
.gamemode-ring svg,
.gamemode-ring img {
  width: 64px;                /* increased from 48px */
  height: 64px;
  color: white;
  filter: drop-shadow(0 2px 2px black);
  object-fit: contain;        /* ensures SVGs scale properly */
}

.gamemode-ring i {
  font-size: 64px;            /* for Font Awesome icons */
  display: flex;
  align-items: center;
  justify-content: center;
}

.gamemode-ring-text {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #c4d9ff;
  text-align: center;
  word-break: break-word;
  max-width: 100px;
}

.gamemode-tier-text {
  font-size: 0.8rem;
  color: #8ba9d2;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .gamemode-rings-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gamemode-ring {
    width: 80px;
    height: 80px;
  }
  .gamemode-ring i,
  .gamemode-ring svg,
  .gamemode-ring img {
    width: 56px;
    height: 56px;
  }
  .gamemode-ring i {
    font-size: 56px;
  }
}

/* -------------------- RIGHT-CLICK CONTEXT MENU ------------------- */
.custom-context-menu {
  position: fixed;
  background: #0b1b2b;
  border: 1px solid #2a5f8a;
  border-radius: 16px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 10px 30px #00000080, 0 0 0 1px #1e4b70 inset;
  backdrop-filter: blur(8px);
  z-index: 9999;
}
.context-menu-item {
  padding: 10px 18px;
  color: #d0e4ff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.1s;
}
.context-menu-item:hover {
  background: #1e3a5a;
  color: white;
}
.context-menu-item i { width: 20px; color: #6eb5ff; }

/* -------------------- FOOTER ------------------- */
.main-footer {
  margin-top: 24px;
  text-align: center;
  color: #6886a8;
  font-size: 0.85rem;
  font-weight: 500;
}

/* -------------------- RESPONSIVE ------------------- */
@media (max-width: 750px) {
  .table-header, .row, .skeleton-row {
    grid-template-columns: 40px 2fr 80px 70px 50px;
    padding: 12px 12px;
  }
  .tier-bubble { width: 46px; height: 46px; font-size: 0.85rem; }
  .player-skin { width: 36px; height: 36px; }
  .ip-corner { top: 10px; right: 10px; }
}
/* Rank Outline Colors */
.row.rank-gold {
  border: 2px solid #fbbf24 !important;
  box-shadow: 0 0 15px #fbbf24, 0 4px 12px #00000030 !important;
}
.row.rank-silver {
  border: 2px solid #cbd5e1 !important;
  box-shadow: 0 0 12px #cbd5e1, 0 4px 12px #00000030 !important;
}
.row.rank-bronze {
  border: 2px solid #cd7f32 !important;
  box-shadow: 0 0 10px #cd7f32, 0 4px 12px #00000030 !important;
}
/* -------------------- SEARCH BAR ------------------- */
.search-container {
  position: relative;
  margin: 20px 0 10px;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 18px;
  color: #8ba9d2;
  font-size: 1rem;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  background: rgba(8, 22, 40, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid #1e4b70;
  border-radius: 40px;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: all 0.2s;
}

.search-input::placeholder {
  color: #6a8db5;
  font-weight: 400;
}

.search-input:focus {
  border-color: #3b7eb0;
  box-shadow: 0 0 12px #3b82f6;
  background: rgba(12, 30, 50, 0.8);
}

.clear-search-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #aac8ff;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 50%;
  transition: 0.2s;
}

.clear-search-btn:hover {
  background: #1e3a5a;
  color: white;
}

/* -------------------- PAGINATION ------------------- */
.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0 8px;
  border-top: 1px solid #1e3a5a;
  margin-top: 10px;
}

.pagination-btn {
  background: rgba(10, 25, 45, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid #1e4b70;
  color: #c4d9ff;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
  background: #1a3452;
  border-color: #3b7eb0;
  color: white;
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-info {
  color: #aac8ff;
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 100px;
  text-align: center;
}
