/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0a0a0a;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation - Same as index.html */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 53px;
}

/* Navigation Brand Styles - Updated from newcss.css */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Modern 3D Brand Logo - Updated from newcss.css */
.brand-logo {
  width: 44px;
  height: 44px;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo:hover {
  transform: rotateY(180deg) scale(1.1);
}

/* 3D Bitcoin Symbol Container - Updated from newcss.css */
.bitcoin-symbol {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  color: #000;
  background: linear-gradient(145deg, #00ffcc 0%, #00d4aa 50%, #4ecdc4 100%);
  border-radius: 11px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* 3D Depth Effect - Updated from newcss.css */
.bitcoin-symbol::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(145deg, #00b8a3, #009688);
  border-radius: 18px;
  z-index: -1;
  transform: translateZ(-4px);
}

/* Animated Glow Ring - Updated from newcss.css */
.bitcoin-symbol::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(0, 255, 204, 0.6),
    transparent,
    rgba(0, 255, 204, 0.6),
    transparent
  );
  border-radius: 20px;
  z-index: -2;
  animation: logoRotate 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-logo:hover .bitcoin-symbol::after {
  opacity: 1;
}

@keyframes logoRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Floating Particles Effect - Updated from newcss.css */
.brand-logo-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #00ffcc;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 2s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 0.3s;
}

.particle:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation-delay: 0.6s;
}

.particle:nth-child(4) {
  bottom: 10%;
  right: 20%;
  animation-delay: 0.9s;
}

@keyframes particleFloat {
  0%, 100% {
    opacity: 0;
    transform: translateY(0px) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
}

/* Modern 3D Brand Text - Updated from newcss.css */
.brand-text {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(0, 255, 204, 0.3);
  position: relative;
  letter-spacing: -0.5px;
  transform-style: preserve-3d;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Holographic Effect - Updated from newcss.css */
.brand-text .gradient-text {
  background: linear-gradient(
    267deg,
    #00ffcc 0%,
    #00d4aa 25%,
    #4ecdc4 50%,
    #00ffcc 75%,
    #00d4aa 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: holographicShift 3s ease-in-out infinite;
  position: relative;
}

@keyframes holographicShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Enhanced Brand Hover Effect - Updated from newcss.css */
.nav-brand:hover .brand-logo-particles .particle {
  animation-play-state: running;
}

.nav-brand:hover .brand-text .gradient-text {
  animation-duration: 1s;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-link.active {
  color: #00ffcc;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffcc, #00d4aa);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(145deg, #00ccaa, #00997a);
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 255, 204, 0.2);
}

.btn-secondary {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 255, 204, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.1)
  );
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Background Effects - Same as index.html */
.page-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: radial-gradient(
      ellipse at center,
      rgba(0, 255, 204, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.floating-bitcoin {
  position: absolute;
  color: rgba(0, 255, 204, 0.3);
  font-size: 24px;
  font-weight: 800;
  animation: float 6s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.floating-bitcoin:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  font-size: 32px;
}

.floating-bitcoin:nth-child(2) {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
  font-size: 28px;
}

.floating-bitcoin:nth-child(3) {
  top: 30%;
  right: 15%;
  animation-delay: 2s;
  font-size: 36px;
}

.floating-bitcoin:nth-child(4) {
  top: 70%;
  right: 25%;
  animation-delay: 3s;
  font-size: 24px;
}

.floating-bitcoin:nth-child(5) {
  top: 10%;
  left: 60%;
  animation-delay: 4s;
  font-size: 30px;
}

.floating-bitcoin:nth-child(6) {
  top: 80%;
  left: 70%;
  animation-delay: 5s;
  font-size: 26px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: 0.3;
  }
  75% {
    transform: translateY(-20px) rotate(270deg);
    opacity: 0.6;
  }
}

.gradient-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #00ffcc, transparent);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ff6b6b, transparent);
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #4ecdc4, transparent);
  bottom: 20%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
}

/* Main Content */
.leaderboard-main {
  padding-top: 53px;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.leaderboard-hero {
  padding: 40px 0 30px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(
    145deg,
    rgba(0, 255, 204, 0.2),
    rgba(0, 255, 204, 0.1)
  );
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #00ffcc;
  margin-bottom: 24px;
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #00ffcc, #00d4aa, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Podium Section */
.podium-section {
  padding: 40px 0 60px;
}

.podium-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  perspective: 1000px;
}

.podium-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.podium-item:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Bitcoin Celebration Effects for First Place */
.podium-first {
  order: 2;
  z-index: 3;
}

.bitcoin-celebration {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  width: 200px;
  height: 200px;
  transition: opacity 0.3s ease-out;
}

.podium-first:hover .bitcoin-celebration {
  opacity: 1;
  animation: bitcoinCelebration 3s ease-out infinite;
}

/* Floating Bitcoin symbols around avatar */
.celebration-bitcoin {
  position: absolute;
  color: rgb(0, 255, 204);
  font-size: 14px;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(0, 255, 204, 0.8);
  animation: bitcoinFloat 2.5s ease-out infinite;
}

.celebration-bitcoin:nth-child(1) {
  top: 60px;
  left: 53px;
  animation-delay: 0.1s;
}
.celebration-bitcoin:nth-child(2) {
  top: 40px;
  left: 83px;
  animation-delay: 0.3s;
}
.celebration-bitcoin:nth-child(3) {
  top: 50px;
  left: 113px;
  animation-delay: 0.2s;
}
.celebration-bitcoin:nth-child(4) {
  top: 80px;
  left: 133px;
  animation-delay: 0.4s;
}
.celebration-bitcoin:nth-child(5) {
  top: 110px;
  left: 123px;
  animation-delay: 0.15s;
}
.celebration-bitcoin:nth-child(6) {
  top: 130px;
  left: 93px;
  animation-delay: 0.5s;
}
.celebration-bitcoin:nth-child(7) {
  top: 120px;
  left: 63px;
  animation-delay: 0.25s;
}
.celebration-bitcoin:nth-child(8) {
  top: 100px;
  left: 33px;
  animation-delay: 0.6s;
}
.celebration-bitcoin:nth-child(9) {
  top: 70px;
  left: 43px;
  animation-delay: 0.35s;
}
.celebration-bitcoin:nth-child(10) {
  top: 90px;
  left: 153px;
  animation-delay: 0.45s;
}

/* Sparkling dots */
.sparkle-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, rgb(0, 255, 204), rgba(0, 255, 204, 0.6));
  border-radius: 50%;
  animation: sparkle 2s ease-out infinite;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.8);
}

.sparkle-dot:nth-child(11) {
  top: 45px;
  left: 68px;
  animation-delay: 0.2s;
}
.sparkle-dot:nth-child(12) {
  top: 55px;
  left: 98px;
  animation-delay: 0.4s;
}
.sparkle-dot:nth-child(13) {
  top: 65px;
  left: 128px;
  animation-delay: 0.3s;
}
.sparkle-dot:nth-child(14) {
  top: 95px;
  left: 143px;
  animation-delay: 0.6s;
}
.sparkle-dot:nth-child(15) {
  top: 125px;
  left: 108px;
  animation-delay: 0.25s;
}
.sparkle-dot:nth-child(16) {
  top: 135px;
  left: 78px;
  animation-delay: 0.55s;
}
.sparkle-dot:nth-child(17) {
  top: 115px;
  left: 48px;
  animation-delay: 0.4s;
}
.sparkle-dot:nth-child(18) {
  top: 85px;
  left: 28px;
  animation-delay: 0.7s;
}
.sparkle-dot:nth-child(19) {
  top: 75px;
  left: 58px;
  animation-delay: 0.2s;
}
.sparkle-dot:nth-child(20) {
  top: 60px;
  left: 138px;
  animation-delay: 0.5s;
}

@keyframes bitcoinCelebration {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }
  10% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(1.1);
  }
}

@keyframes bitcoinFloat {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateY(-25px) scale(1.2) rotate(180deg);
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-50px) scale(0.8) rotate(360deg);
    opacity: 0;
  }
}

@keyframes sparkle {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: scale(1.5) rotate(180deg);
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: scale(1) rotate(360deg);
    opacity: 0;
  }
}

.podium-crown {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  color: #ffd700;
  animation: crownFloat 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  z-index: 10;
}

/* Crown Dot Effects */
.podium-crown::before,
.podium-crown::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ffd700;
  border-radius: 50%;
  animation: crownDots 2s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.podium-crown::before {
  top: -10px;
  left: -15px;
  animation-delay: 0s;
}

.podium-crown::after {
  top: -10px;
  right: -15px;
  animation-delay: 1s;
}

@keyframes crownFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes crownDots {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

/* Second Place */
.podium-second {
  order: 1;
  z-index: 2;
}

/* Third Place */
.podium-third {
  order: 3;
  z-index: 2;
}

.podium-player {
  text-align: center;
  margin-bottom: 20px;
}

.player-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  position: relative;
  border: 4px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.player-avatar.champion {
  border-color: #ffd700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* Second Place Avatar - Silver Glow */
.podium-second .player-avatar {
  border-color: #c0c0c0;
  box-shadow: 0 0 25px rgba(192, 192, 192, 0.4);
  animation: silverAvatarGlow 3s ease-in-out infinite;
}

@keyframes silverAvatarGlow {
  0%,
  100% {
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.4);
    border-color: #c0c0c0;
  }
  50% {
    box-shadow: 0 0 35px rgba(192, 192, 192, 0.6);
    border-color: #e8e8e8;
  }
}

/* Third Place Avatar - Bronze Glow */
.podium-third .player-avatar {
  border-color: #cd7f32;
  box-shadow: 0 0 25px rgba(205, 127, 50, 0.4);
  animation: bronzeAvatarGlow 3s ease-in-out infinite;
}

@keyframes bronzeAvatarGlow {
  0%,
  100% {
    box-shadow: 0 0 25px rgba(205, 127, 50, 0.4);
    border-color: #cd7f32;
  }
  50% {
    box-shadow: 0 0 35px rgba(205, 127, 50, 0.6);
    border-color: #daa520;
  }
}

.player-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-glow {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #ffd700, #ffed4e, #ffd700);
  animation: rotate 3s linear infinite;
  z-index: -1;
}

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

.player-info {
  text-align: center;
}

.player-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.player-level {
  font-size: 12px;
  color: #00ffcc;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.podium-stats {
  text-align: center;
  margin-bottom: 40px;
}

.profit-amount {
  font-size: 24px;
  font-weight: 800;
  color: #00ffcc;
  text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
  margin-bottom: 8px;
}

.champion-profit {
  font-size: 28px;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.podium-base {
  width: 140px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  position: relative;
}

.podium-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 8px 8px 0 0;
}

.podium-base-first {
  height: 120px;
}

.podium-base-first::before {
  background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.podium-base-second {
  height: 90px;
}

.podium-base-second::before {
  background: linear-gradient(90deg, #c0c0c0, #e8e8e8);
}

.podium-base-third {
  height: 70px;
}

.podium-base-third::before {
  background: linear-gradient(90deg, #cd7f32, #daa520);
}

/* Leaderboard Table Section */
.leaderboard-table-section {
  padding: 20px 0 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 32px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #00ffcc,
    #00d4aa,
    #00ffcc,
    transparent
  );
  border-radius: 2px;
  animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
    opacity: 0.7;
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.6);
    opacity: 1;
  }
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 16px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 400px;
  margin: 0 auto;
}

.filter-tab {
  padding: 12px 24px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-tab.active,
.filter-tab:hover {
  background: linear-gradient(145deg, #00ffcc, #00d4aa);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 255, 204, 0.3);
}

/* Leaderboard Table */
.leaderboard-table {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.leaderboard-table:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-4px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.table-header {
  display: grid;
  grid-template-columns: 100px 1fr 180px;
  gap: 20px;
  padding: 24px 32px;
  background: linear-gradient(
    145deg,
    rgba(0, 255, 204, 0.15),
    rgba(0, 255, 204, 0.08)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  font-size: 14px;
  color: #00ffcc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.table-body {
  position: relative;
}

.table-row {
  display: grid;
  grid-template-columns: 100px 1fr 180px;
  gap: 20px;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  position: relative;
}

.table-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(0, 255, 204, 0.1), transparent);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.table-row:hover {
  background: rgba(0, 255, 204, 0.03);
  transform: translateX(8px);
}

.table-row:hover::before {
  width: 4px;
}

.table-row:last-child {
  border-bottom: none;
}

.table-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.rank-cell {
  justify-content: center;
}

.rank-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.08)
  );
  backdrop-filter: blur(20px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.rank-badge:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 255, 204, 0.3);
  border-color: rgba(0, 255, 204, 0.5);
}

.player-cell {
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.player-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.profit-cell {
  justify-content: center;
}

.profit-amount.positive {
  font-weight: 800;
  font-size: 18px;
  color: #00ffcc;
  text-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
}

.table-footer {
  padding: 20px 32px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.update-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.update-info i {
  animation: spin 2s linear infinite;
}

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

/* Footer - Same as index.html */
.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
  color: #00ffcc;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 24px;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
  color: #00ffcc;
  transform: translateY(-2px);
}

/* Responsive Design for Brand Text - Added from newcss.css */
/* Default: hide both */
.large-screen {
  display: none;
}
.small-screen {
  display: none;
}

/* Show .large-screen on screens wider than 768px (e.g., tablets and desktops) */
@media (min-width: 768px) {
  .large-screen {
    display: inline;
  }
}

/* Show .small-screen on screens smaller than 768px (e.g., phones) */
@media (max-width: 767px) {
  .small-screen {
    display: inline;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .podium-container {
    gap: 40px;
  }

  .table-header,
  .table-row {
    grid-template-columns: 80px 1fr 160px;
    gap: 16px;
    padding: 16px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 42px;
  }

  .podium-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .podium-item {
    order: initial !important;
  }

  .section-title {
    font-size: 32px;
  }

  .filter-tabs {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .table-header,
  .table-row {
    grid-template-columns: 60px 1fr 140px;
    gap: 12px;
    padding: 12px 16px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .player-avatar {
    width: 80px;
    height: 80px;
  }

  .profit-amount {
    font-size: 20px;
  }

  .champion-profit {
    font-size: 24px;
  }

  .table-header,
  .table-row {
    grid-template-columns: 50px 1fr 120px;
    gap: 8px;
    padding: 10px 12px;
  }

  .rank-badge {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .player-name {
    font-size: 16px;
  }

  .player-level {
    font-size: 10px;
  }

  .profit-amount.positive {
    font-size: 16px;
  }
}

.hero-badge1 {
    display: inline-flex
;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: rgb(0, 255, 204);
    width: fit-content;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(145deg, rgba(0, 255, 204, 0.2), rgba(0, 255, 204, 0.1));
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 255, 204, 0.3);
    border-image: initial;
    border-radius: 10px;
}

.footer-verification {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

a {
    text-decoration: none;
    cursor: pointer;
}