

:root {
  --rv-primary: #ff6e42;
  --rv-primary-light: #ff8a65;
  --rv-primary-dark: #e55a2b;
  --rv-primary-glow: rgba(255, 110, 66, 0.4);
  --rv-bg-dark: #0a0a0a;
  --rv-bg-card: rgba(20, 20, 20, 0.6);
  --rv-bg-card-hover: rgba(30, 30, 30, 0.8);
  --rv-glass: rgba(255, 255, 255, 0.03);
  --rv-glass-border: rgba(255, 255, 255, 0.08);
  --rv-glass-strong: rgba(255, 255, 255, 0.06);
  --rv-text: #e1e1e1;
  --rv-text-muted: #8a8a8a;
  --rv-border: rgba(255, 255, 255, 0.06);
  --rv-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --rv-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --rv-radius: 16px;
  --rv-radius-sm: 10px;
  --rv-radius-xs: 6px;
  --rv-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --rv-transition-fast: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --rv-transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--rv-bg-dark) !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--rv-primary);
  color: #fff;
}

::-moz-selection {
  background: var(--rv-primary);
  color: #fff;
}

.navbar.custom-navbar {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  transition: var(--rv-transition);
  background: transparent !important;
  border-bottom: 1px solid transparent !important;
}

.navbar.custom-navbar.affix,
.navbar.custom-navbar.scrolled {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  background: rgba(10, 10, 10, 0.85) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--rv-glass-border) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .navbar-brand img {
  transition: var(--rv-transition-fast);
}

.navbar.custom-navbar.affix .navbar-brand img,
.navbar.custom-navbar.scrolled .navbar-brand img {
  transform: scale(0.9);
}

.navbar.custom-navbar .nav-link {
  position: relative;
  padding: 8px 16px !important;
  margin: 0 2px !important;
  border-radius: var(--rv-radius-xs);
  transition: var(--rv-transition-fast);
  font-weight: 500 !important;
  letter-spacing: 0.3px;
}

.navbar.custom-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--rv-primary);
  transition: var(--rv-transition-fast);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar.custom-navbar .nav-link:hover::after,
.navbar.custom-navbar .nav-link.active::after {
  width: 60%;
}

.navbar.custom-navbar .nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05);
}

.navbar.custom-navbar .nav-link.active {
  color: var(--rv-primary) !important;
}

.navbar .btn-outline-primary.btn-sm {
  border-radius: 8px !important;
  transition: var(--rv-transition-fast);
  border-width: 1.5px;
  backdrop-filter: blur(10px);
}

.navbar .btn-outline-primary.btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--rv-primary-glow);
}

.navbar .btn-primary.btn-sm,
.navbar .btn-primary {
  border-radius: 8px !important;
  transition: var(--rv-transition-fast);
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  background: linear-gradient(135deg, var(--rv-primary), var(--rv-primary-dark)) !important;
}

.navbar .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--rv-primary-glow);
}

.navbar .dropdown-menu {
  background: rgba(20, 20, 20, 0.95) !important;
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--rv-glass-border) !important;
  border-radius: var(--rv-radius-sm) !important;
  box-shadow: var(--rv-shadow-lg);
  padding: 8px !important;
  margin-top: 8px !important;
  animation: dropdownFadeIn 0.3s ease;
}

.navbar .dropdown-item {
  border-radius: var(--rv-radius-xs) !important;
  padding: 8px 16px !important;
  transition: var(--rv-transition-fast);
  font-size: 13px;
}

.navbar .dropdown-item:hover {
  background: rgba(255, 110, 66, 0.15) !important;
  color: var(--rv-primary) !important;
}

.navbar .dropdown-item.active {
  background: var(--rv-primary) !important;
  color: #fff !important;
}

.navbar-toggler {
  border: 1.5px solid var(--rv-glass-border) !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
  transition: var(--rv-transition-fast);
}

.navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.05);
}

.header {
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255, 110, 66, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 110, 66, 0.05) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.header .overlay {
  z-index: 2;
}

.header .overlay .subtitle {
  animation: fadeInUp 1s ease 0.2s both;
  text-transform: uppercase;
  letter-spacing: 10px !important;
  font-weight: 300 !important;
  opacity: 0.7 !important;
}

.header .overlay .title {
  animation: fadeInUp 1s ease 0.5s both;
  background: linear-gradient(135deg, #fff 0%, var(--rv-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header .shape svg path {
  fill: var(--rv-bg-dark) !important;
}

.header .mouse-icon {
  animation: fadeInUp 1s ease 0.8s both;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  cursor: pointer;
  transition: var(--rv-transition-fast);
}

.header .mouse-icon:hover {
  border-color: var(--rv-primary);
}

.header .mouse-icon .wheel {
  width: 4px;
  height: 8px;
  background: var(--rv-primary);
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.5s ease-in-out infinite;
}

/* Floating particles canvas */
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.section {
  padding: 100px 0 !important;
  position: relative;
}

.section:nth-child(even) {
  background: rgba(20, 20, 20, 0.5) !important;
}

.section .section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700 !important;
  letter-spacing: -0.5px;
}

.section .section-title.text-center {
  display: block;
}

.section .section-subtitle {
  color: var(--rv-text-muted);
  font-weight: 400 !important;
}

.card {
  background: var(--rv-bg-card) !important;
  border: 1px solid var(--rv-glass-border) !important;
  border-radius: var(--rv-radius) !important;
  backdrop-filter: blur(10px);
  transition: var(--rv-transition);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rv-primary), var(--rv-primary-light));
  opacity: 0;
  transition: var(--rv-transition);
}

.card:hover {
  transform: translateY(-8px);
  background: var(--rv-bg-card-hover) !important;
  border-color: rgba(255, 110, 66, 0.2) !important;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 110, 66, 0.05);
}

.card:hover::before {
  opacity: 1;
}

.card .card-body {
  padding: 2rem !important;
  position: relative;
  z-index: 1;
}

.card .card-body small.text-primary {
  font-size: 2rem !important;
  opacity: 0.15;
  position: absolute;
  top: 15px;
  right: 20px;
  font-weight: 800 !important;
}

.card .card-title {
  font-weight: 600 !important;
  font-size: 1.15rem !important;
  margin-bottom: 12px !important;
  color: #fff;
}

.card .card-body p {
  color: var(--rv-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.table {
  border-collapse: separate;
  border-spacing: 0 4px;
  background: transparent !important;
}

.table thead th {
  background: rgba(255, 110, 66, 0.1) !important;
  border: none !important;
  color: var(--rv-primary) !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 20px !important;
}

.table thead th:first-child {
  border-radius: var(--rv-radius-sm) 0 0 var(--rv-radius-sm);
}

.table thead th:last-child {
  border-radius: 0 var(--rv-radius-sm) var(--rv-radius-sm) 0;
}

.table tbody tr {
  transition: var(--rv-transition-fast);
  background: var(--rv-glass) !important;
}

.table tbody tr:hover {
  background: rgba(255, 110, 66, 0.08) !important;
  transform: scale(1.01);
}

.table tbody tr td {
  border: none !important;
  padding: 14px 20px !important;
  vertical-align: middle;
  color: var(--rv-text);
  font-weight: 400;
}

.table tbody tr td:first-child {
  border-radius: var(--rv-radius-sm) 0 0 var(--rv-radius-sm);
  font-weight: 700;
  color: var(--rv-primary);
  font-size: 1.1rem;
}

.table tbody tr td:last-child {
  border-radius: 0 var(--rv-radius-sm) var(--rv-radius-sm) 0;
  font-weight: 600;
}

.table.table-striped tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02) !important;
}

.table.table-striped tbody tr:nth-child(even) {
  background: var(--rv-glass) !important;
}

/* Leaderboard avatars */
.table td img {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  margin-right: 12px;
  border: 2px solid var(--rv-glass-border);
  transition: var(--rv-transition-fast);
  object-fit: cover;
}

.table tbody tr:hover td img {
  border-color: var(--rv-primary);
  box-shadow: 0 0 12px var(--rv-primary-glow);
}

.table td a {
  font-weight: 500;
  transition: var(--rv-transition-fast);
}

.table td a:hover {
  color: var(--rv-primary) !important;
}

/* Top 3 special styling */
.table tbody tr:nth-child(1) td:first-child {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.table tbody tr:nth-child(2) td:first-child {
  color: #c0c0c0;
  text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.table tbody tr:nth-child(3) td:first-child {
  color: #cd7f32;
  text-shadow: 0 0 10px rgba(205, 127, 50, 0.3);
}

.btn {
  transition: var(--rv-transition-fast) !important;
  border-radius: var(--rv-radius-xs) !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rv-primary), var(--rv-primary-dark)) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(255, 110, 66, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--rv-primary-glow) !important;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline-primary {
  border: 1.5px solid var(--rv-primary) !important;
  color: var(--rv-primary) !important;
  background: transparent !important;
}

.btn-outline-primary:hover {
  background: var(--rv-primary) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--rv-primary-glow) !important;
}

.btn-outline-secondary {
  border: 1.5px solid var(--rv-glass-border) !important;
  color: var(--rv-text) !important;
  background: var(--rv-glass) !important;
  backdrop-filter: blur(10px);
  border-radius: var(--rv-radius-sm) !important;
}

.btn-outline-secondary:hover {
  border-color: var(--rv-primary) !important;
  color: var(--rv-primary) !important;
  background: rgba(255, 110, 66, 0.1) !important;
}

.btn-outline-secondary.dropdown-toggle {
  padding: 10px 24px !important;
}

.jumbotron {
  background: var(--rv-bg-card) !important;
  border: 1px solid var(--rv-glass-border) !important;
  border-radius: var(--rv-radius) !important;
  backdrop-filter: blur(15px);
  padding: 2.5rem !important;
  transition: var(--rv-transition);
  position: relative;
  overflow: hidden;
}

.jumbotron::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rv-primary), var(--rv-primary-light), var(--rv-primary));
}

.jumbotron img {
  width: 100px !important;
  height: 100px !important;
  border-radius: 50% !important;
  border: 3px solid var(--rv-primary) !important;
  box-shadow: 0 0 25px var(--rv-primary-glow);
  margin-bottom: 1rem;
  transition: var(--rv-transition);
}

.jumbotron:hover img {
  box-shadow: 0 0 40px var(--rv-primary-glow);
  transform: scale(1.05);
}

.jumbotron h2 {
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 1.5rem !important;
}

.jumbotron .text-muted {
  color: var(--rv-text-muted) !important;
  padding: 8px 0;
  border-bottom: 1px solid var(--rv-border);
  font-size: 0.9rem;
  transition: var(--rv-transition-fast);
}

.jumbotron .text-muted:hover {
  background: rgba(255, 255, 255, 0.02);
  padding-left: 10px;
}

.jumbotron .text-muted b {
  color: var(--rv-primary) !important;
  font-weight: 600;
}

#footer.section.has-img-bg {
  background: linear-gradient(180deg, var(--rv-bg-dark) 0%, rgba(15, 15, 15, 1) 100%) !important;
  position: relative;
}

#footer.section.has-img-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rv-primary), transparent);
}

#footer.section.has-img-bg::after {
  background: transparent !important;
}

#footer h6 {
  color: #fff !important;
  font-weight: 600;
}

#footer p {
  color: var(--rv-text-muted) !important;
}

#footer .btn-outline-primary {
  font-size: 0.85rem;
  padding: 8px 20px !important;
}

#footer footer {
  border-top: 1px solid var(--rv-border) !important;
}

#footer footer p {
  color: var(--rv-text-muted) !important;
}

.alert {
  border-radius: var(--rv-radius-sm) !important;
  border: 1px solid var(--rv-glass-border) !important;
  background: rgba(255, 110, 66, 0.1) !important;
  color: var(--rv-text) !important;
  backdrop-filter: blur(10px);
}

.badge-primary {
  background: linear-gradient(135deg, var(--rv-primary), var(--rv-primary-dark)) !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  font-weight: 600;
}

code.highlighter-rouge {
  background: rgba(255, 255, 255, 0.05) !important;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--rv-glass-border);
  color: var(--rv-primary-light) !important;
  font-size: 0.85rem;
}

.rv-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rv-reveal.rv-visible {
  opacity: 1;
  transform: translateY(0);
}

.rv-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rv-reveal-left.rv-visible {
  opacity: 1;
  transform: translateX(0);
}

.rv-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rv-reveal-right.rv-visible {
  opacity: 1;
  transform: translateX(0);
}

.rv-reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rv-reveal-scale.rv-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children */
.rv-stagger > *:nth-child(1) { transition-delay: 0.1s; }
.rv-stagger > *:nth-child(2) { transition-delay: 0.2s; }
.rv-stagger > *:nth-child(3) { transition-delay: 0.3s; }
.rv-stagger > *:nth-child(4) { transition-delay: 0.4s; }
.rv-stagger > *:nth-child(5) { transition-delay: 0.5s; }
.rv-stagger > *:nth-child(6) { transition-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mouseScroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px var(--rv-primary-glow);
  }
  50% {
    box-shadow: 0 0 40px var(--rv-primary-glow), 0 0 60px rgba(255, 110, 66, 0.2);
  }
}

.rv-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rv-bg-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.rv-page-loader.rv-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.rv-loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--rv-glass-border);
  border-top-color: var(--rv-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

::-webkit-scrollbar {
  width: 8px;
  background: var(--rv-bg-dark);
}

::-webkit-scrollbar-track {
  background: var(--rv-bg-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--rv-primary), var(--rv-primary-dark));
  border-radius: 10px;
  border: 2px solid var(--rv-bg-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--rv-primary-light), var(--rv-primary));
}

.rv-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--rv-primary), var(--rv-primary-dark));
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--rv-transition);
  box-shadow: 0 4px 20px var(--rv-primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rv-back-to-top.rv-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.rv-back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--rv-primary-glow);
}

@media (max-width: 767.98px) {
  .section {
    padding: 60px 0 !important;
  }
  
  .card:hover {
    transform: translateY(-4px);
  }
  
  .table tbody tr:hover {
    transform: none;
  }
  
  .navbar .collapse.show,
  .navbar .collapsing {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 0 0 var(--rv-radius) var(--rv-radius);
    padding: 10px;
    margin-top: 10px;
    border: 1px solid var(--rv-glass-border);
  }
  
  .rv-back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

#about p,
#rules .card .card-body p {
  line-height: 1.8;
}

#about .section-title,
#rules .section-title {
  position: relative;
}

#footer .col-md-6 h6 {
  font-size: 0.95rem;
}

#footer .col-md-6 p {
  font-size: 0.85rem;
}

/* Online indicator */
.rv-online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

.tooltip-inner {
  background: rgba(20, 20, 20, 0.95) !important;
  backdrop-filter: blur(10px);
  border: 1px solid var(--rv-glass-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
}

.rv-counter {
  font-variant-numeric: tabular-nums;
}

.rv-gradient-text {
  background: linear-gradient(135deg, var(--rv-primary), var(--rv-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rv-glow {
  box-shadow: 0 0 20px var(--rv-primary-glow);
}

.rv-glow-hover:hover {
  box-shadow: 0 0 30px var(--rv-primary-glow);
}

.glassmorphism-card {
  background: var(--rv-bg-card) !important;
  border: 1px solid var(--rv-glass-border) !important;
  border-radius: var(--rv-radius) !important;
  backdrop-filter: blur(15px);
  padding: 2.5rem !important;
  transition: var(--rv-transition);
  position: relative;
  overflow: hidden;
}

.glassmorphism-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rv-primary), var(--rv-primary-light), var(--rv-primary));
}

.table-responsive {
  width: 100%;
  background: transparent;
  border-radius: var(--rv-radius);
  overflow: hidden;
}

#404 .section-title,
.rv-404-title {
  font-size: 4rem !important;
  background: linear-gradient(135deg, var(--rv-primary), var(--rv-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800 !important;
}

.rv-launcher-card {
  background: var(--rv-bg-card) !important;
  border: 1px solid var(--rv-glass-border) !important;
  border-radius: var(--rv-radius) !important;
  backdrop-filter: blur(15px);
  padding: 2.5rem !important;
  transition: var(--rv-transition);
  text-align: center;
}

.rv-launcher-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 110, 66, 0.2) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.rv-launcher-card h2 {
  color: #fff !important;
  font-weight: 700;
}

.rv-launcher-card h5 {
  color: var(--rv-primary) !important;
}

.rv-launcher-card p {
  color: var(--rv-text-muted) !important;
}

.rv-api-card {
  background: var(--rv-bg-card) !important;
  border: 1px solid var(--rv-glass-border) !important;
  border-radius: var(--rv-radius) !important;
  backdrop-filter: blur(15px);
  padding: 2rem !important;
  transition: var(--rv-transition);
  text-align: center;
  margin-bottom: 1.5rem;
}

.rv-api-card:hover {
  border-color: rgba(255, 110, 66, 0.15) !important;
}

.rv-api-card h2 {
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

body,
.navbar,
.section,
.card,
.btn,
.jumbotron,
.glassmorphism-card,
.table,
h1, h2, h3, h4, h5, h6,
p, a, span, div {
  font-family: 'Inter', 'Poppins', sans-serif !important;
}

.rv-section-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.rv-section-sub {
  color: var(--rv-text-muted);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}

.rv-stats-bar {
  padding: 40px 0;
  background: linear-gradient(180deg, rgba(255,110,66,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--rv-glass-border);
}

.rv-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.rv-stat-item {
  padding: 1.5rem 1rem;
}

.rv-stat-icon {
  font-size: 1.5rem;
  color: var(--rv-primary);
  margin-bottom: 0.75rem;
}

.rv-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.rv-stat-label {
  font-size: 0.8rem;
  color: var(--rv-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .rv-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .rv-stat-number {
    font-size: 1.6rem;
  }
}

.rv-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rv-feature-card {
  background: var(--rv-bg-card);
  border: 1px solid var(--rv-glass-border);
  border-radius: var(--rv-radius);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--rv-transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rv-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rv-primary), var(--rv-primary-light));
  opacity: 0;
  transition: var(--rv-transition);
}

.rv-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 110, 66, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 110, 66, 0.05);
}

.rv-feature-card:hover::before {
  opacity: 1;
}

.rv-feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,110,66,0.15), rgba(255,110,66,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--rv-primary);
  margin-bottom: 1.5rem;
  transition: var(--rv-transition);
}

.rv-feature-card:hover .rv-feature-icon-wrap {
  background: linear-gradient(135deg, var(--rv-primary), var(--rv-primary-dark));
  color: #fff;
  box-shadow: 0 8px 25px var(--rv-primary-glow);
  transform: scale(1.1);
}

.rv-feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.rv-feature-desc {
  font-size: 0.9rem;
  color: var(--rv-text-muted);
  line-height: 1.7;
  flex-grow: 1;
}

.rv-feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

@media (max-width: 767.98px) {
  .rv-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.rv-server-section {
  background: rgba(255, 110, 66, 0.02);
}

.rv-server-card {
  background: var(--rv-bg-card);
  border: 1px solid var(--rv-glass-border);
  border-radius: var(--rv-radius);
  padding: 0;
  overflow: hidden;
  transition: var(--rv-transition);
}

.rv-server-card:hover {
  border-color: rgba(255, 110, 66, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.rv-server-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--rv-glass-border);
  justify-content: center;
}

.rv-server-status-dot {
  width: 10px;
  height: 10px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
  flex-shrink: 0;
}

.rv-server-status-dot.rv-offline {
  background: #f44336;
  box-shadow: 0 0 10px rgba(244, 67, 54, 0.5);
  animation: none;
}

.rv-server-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.rv-server-info {
  padding: 1.5rem 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.rv-server-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rv-server-stat-label {
  font-size: 0.75rem;
  color: var(--rv-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rv-server-stat-label i {
  color: var(--rv-primary);
  margin-right: 4px;
}

.rv-server-stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.rv-server-actions {
  padding: 1.25rem 2rem;
  display: flex;
  gap: 12px;
  border-top: 1px solid var(--rv-glass-border);
  justify-content: center;
}

.rv-server-map-preview {
  padding: 0 2rem 1.5rem;
  text-align: center;
}

.rv-server-map-preview img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--rv-radius-sm);
  border: 1px solid var(--rv-glass-border);
  cursor: pointer;
  transition: var(--rv-transition);
  opacity: 0.85;
}

.rv-server-map-preview img:hover {
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 110, 66, 0.15);
}

.rv-server-map-label {
  font-size: 0.7rem;
  color: var(--rv-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.rv-map-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}

.rv-map-modal-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--rv-radius);
  box-shadow: 0 0 60px rgba(255,110,66,0.2);
}

.rv-btn-connect {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--rv-primary), var(--rv-primary-dark));
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: var(--rv-transition-fast);
  border: none;
}

.rv-btn-connect:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--rv-primary-glow);
}

.rv-btn-vote {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: transparent;
  color: var(--rv-primary) !important;
  border: 1.5px solid var(--rv-primary);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: var(--rv-transition-fast);
}

.rv-btn-vote:hover {
  background: var(--rv-primary);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--rv-primary-glow);
}

.rv-btn-discord {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: #5865F2;
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: var(--rv-transition-fast);
  border: none;
}

.rv-btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.rv-btn-lg {
  padding: 14px 36px !important;
  font-size: 1rem !important;
}

.rv-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rv-about-desc {
  color: var(--rv-text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.rv-about-image-box {
  background: var(--rv-bg-card);
  border: 1px solid var(--rv-glass-border);
  border-radius: var(--rv-radius);
  padding: 3rem;
  text-align: center;
}

.rv-rust-logo-glow {
  color: var(--rv-primary);
  margin-bottom: 2rem;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255, 110, 66, 0.3));
}

.rv-about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rv-badge-item {
  background: rgba(255, 110, 66, 0.08);
  border: 1px solid rgba(255, 110, 66, 0.15);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rv-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rv-badge-item i {
  font-size: 0.7rem;
}

@media (max-width: 767.98px) {
  .rv-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.rv-news-section {
  background: rgba(20, 20, 20, 0.5);
}

.rv-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rv-news-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
}

.rv-news-card {
  background: var(--rv-bg-card);
  border: 1px solid var(--rv-glass-border);
  border-radius: var(--rv-radius);
  overflow: hidden;
  transition: var(--rv-transition);
  display: flex;
  flex-direction: column;
}

.rv-news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 110, 66, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.rv-news-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--rv-glass-border);
}

.rv-news-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.rv-news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.rv-news-date {
  font-size: 0.75rem;
  color: var(--rv-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.rv-news-badge {
  font-size: 0.65rem;
  background: rgba(255, 110, 66, 0.12);
  color: var(--rv-primary);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rv-news-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rv-news-excerpt {
  font-size: 0.85rem;
  color: var(--rv-text-muted);
  line-height: 1.6;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.rv-news-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rv-primary) !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--rv-transition-fast);
}

.rv-news-link:hover {
  gap: 10px;
}

@media (max-width: 991.98px) {
  .rv-news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.rv-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rv-rule-card {
  background: var(--rv-bg-card);
  border: 1px solid var(--rv-glass-border);
  border-radius: var(--rv-radius);
  padding: 2rem;
  position: relative;
  transition: var(--rv-transition);
  border-left: 3px solid var(--rv-primary);
}

.rv-rule-card:hover {
  transform: translateY(-4px);
  background: var(--rv-bg-card-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.rv-rule-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 110, 66, 0.1);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.rv-rule-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.rv-rule-desc {
  font-size: 0.88rem;
  color: var(--rv-text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .rv-rules-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.rv-cta-section {
  padding: 100px 0;
}

.rv-cta-box {
  background: linear-gradient(135deg, rgba(255,110,66,0.1) 0%, rgba(255,110,66,0.03) 100%);
  border: 1px solid rgba(255, 110, 66, 0.15);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rv-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,110,66,0.05) 0%, transparent 50%);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.rv-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.rv-cta-desc {
  font-size: 1.1rem;
  color: var(--rv-text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
}

.rv-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 767.98px) {
  .rv-cta-box {
    padding: 3rem 1.5rem;
  }
  .rv-cta-title {
    font-size: 1.8rem;
  }
}

.rv-banlist-wrap {
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: 100vh;
}

.rv-banlist-wrap > .container {
  max-width: 1500px;
  width: 95%;
  padding: 0;
}

.rv-banlist-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.rv-banlist-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.rv-banlist-header p {
  color: var(--rv-text-muted);
  font-size: 1rem;
}

.rv-banlist-search {
  max-width: 480px;
  margin: 0 auto 2rem;
  position: relative;
}

.rv-banlist-search i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rv-text-muted);
  font-size: 0.9rem;
  pointer-events: none;
  transition: var(--rv-transition-fast);
}

.rv-banlist-search input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  background: var(--rv-bg-card);
  border: 1.5px solid var(--rv-glass-border);
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-radius: 14px;
  transition: var(--rv-transition-fast);
  outline: none;
}

.rv-banlist-search input::placeholder {
  color: var(--rv-text-muted);
  font-weight: 400;
}

.rv-banlist-search input:focus {
  border-color: var(--rv-primary);
  box-shadow: 0 0 20px rgba(255, 110, 66, 0.15), 0 4px 20px rgba(0,0,0,0.2);
  background: var(--rv-bg-card-hover);
}

.rv-banlist-search input:focus + i {
  color: var(--rv-primary);
}

.rv-banlist-card {
  background: var(--rv-bg-card);
  border: 1px solid var(--rv-glass-border);
  border-radius: var(--rv-radius);
  overflow-x: auto;
}

.rv-banlist-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.rv-banlist-table thead th {
  padding: 14px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--rv-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--rv-glass-border);
  white-space: nowrap;
}

.rv-banlist-table thead th i {
  color: var(--rv-primary);
  margin-right: 6px;
  font-size: 0.75rem;
}

.rv-banlist-table tbody tr {
  transition: var(--rv-transition-fast);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.rv-banlist-table tbody tr:last-child {
  border-bottom: none;
}

.rv-banlist-table tbody tr:hover {
  background: rgba(255, 110, 66, 0.04);
}

.rv-banlist-table tbody td {
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--rv-text);
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rv-ban-player {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.rv-ban-player a {
  flex-shrink: 0;
}

.rv-ban-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 110, 66, 0.3);
  box-shadow: 0 0 12px rgba(255, 110, 66, 0.15);
  flex-shrink: 0;
  transition: var(--rv-transition-fast);
  cursor: pointer;
}

.rv-ban-avatar:hover {
  border-color: var(--rv-primary);
  box-shadow: 0 0 18px rgba(255, 110, 66, 0.4);
  transform: scale(1.08);
}

.rv-banlist-table tbody tr:hover .rv-ban-avatar {
  border-color: var(--rv-primary);
  box-shadow: 0 0 16px rgba(255, 110, 66, 0.35);
}

.rv-ban-name {
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rv-ban-steamid {
  cursor: pointer;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  color: var(--rv-text-muted);
  transition: var(--rv-transition-fast);
  padding: 2px 6px;
  border-radius: 4px;
}

.rv-ban-steamid:hover {
  color: var(--rv-primary);
  background: rgba(255, 110, 66, 0.08);
}

.rv-ban-reason-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--rv-primary), var(--rv-primary-dark));
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 6px;
  vertical-align: middle;
}

.rv-ban-reason-text {
  color: var(--rv-text);
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rv-ban-source {
  color: var(--rv-text-muted);
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.rv-ban-expire {
  font-size: 0.82rem;
  color: var(--rv-text-muted);
}

.rv-ban-expire.rv-perma {
  color: #f44336;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.rv-ban-status {
  text-align: center;
}

.rv-ban-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0.8rem;
}

.rv-ban-status-icon.rv-banned {
  background: rgba(244, 67, 54, 0.12);
  color: #f44336;
  box-shadow: 0 0 10px rgba(244, 67, 54, 0.15);
}

.rv-ban-status-icon.rv-unbanned {
  background: rgba(76, 175, 80, 0.12);
  color: #4caf50;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.15);
}

.rv-banlist-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--rv-text-muted);
}

.rv-banlist-empty i {
  font-size: 2.5rem;
  color: rgba(255, 110, 66, 0.2);
  margin-bottom: 1rem;
  display: block;
}

.rv-banlist-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.rv-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--rv-bg-card);
  border: 1px solid var(--rv-glass-border);
  color: var(--rv-text);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: var(--rv-transition-fast);
}

.rv-page-btn:hover {
  border-color: var(--rv-primary);
  color: var(--rv-primary);
  background: rgba(255, 110, 66, 0.06);
  transform: translateY(-2px);
}

.rv-page-btn.rv-active {
  background: linear-gradient(135deg, var(--rv-primary), var(--rv-primary-dark));
  color: #fff;
  border-color: var(--rv-primary);
  box-shadow: 0 4px 15px rgba(255, 110, 66, 0.3);
}

.rv-copy-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  background: var(--rv-bg-card);
  border: 1px solid var(--rv-primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10000;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 8px 30px rgba(255, 110, 66, 0.2);
}

.rv-copy-toast i {
  color: var(--rv-primary);
  margin-right: 8px;
}

.rv-copy-toast.rv-show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .rv-banlist-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .rv-banlist-table thead th,
  .rv-banlist-table tbody td {
    white-space: nowrap;
  }
}

@media (max-width: 767.98px) {
  .rv-banlist-wrap {
    padding-top: 80px;
  }
  .rv-banlist-header h1 {
    font-size: 1.6rem;
  }
  .rv-banlist-search input {
    font-size: 0.88rem;
    padding: 12px 16px 12px 42px;
  }
}
