/* 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;
}

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

/* Navigation */
.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;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
   /* Isolated User balance Styles - Class: x8sd89 */
      .x8sd89 {
        display: flex;
        align-items: center;
        gap: 16px;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      }

      .x8sd89 .bal9k2x {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        max-height:38px;
      }

      .x8sd89 .bal9k2x::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
      }

      .x8sd89 .bal9k2x:hover::before {
        left: 100%;
      }

      .x8sd89 .bal9k2x:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 255, 204, 0.2);
        border-color: rgba(0, 255, 204, 0.3);
      }

      .x8sd89 .lbl4m8n {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .x8sd89 .amt7k4p {
        font-size: 14px;
        color: #fff;
        font-weight: 700;
        font-family: 'Monaco', 'Menlo', monospace;
        text-shadow: 0 0 8px rgba(0, 255, 204, 0.3);
      }

      .x8sd89 .usr5q8w {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        text-decoration: none;
        color: inherit;
        position: relative;
        overflow: hidden;
      }

      .x8sd89 .usr5q8w::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
      }

      .x8sd89 .usr5q8w:hover::before {
        left: 100%;
      }

      .x8sd89 .usr5q8w:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 255, 204, 0.2);
        border-color: rgba(0, 255, 204, 0.3);
      }

      .x8sd89 .avt2r6e {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: linear-gradient(145deg, #00a796, #00d4aa);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        color: #000;
        box-shadow: 0 2px 8px rgba(0, 255, 204, 0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .x8sd89 .usr5q8w:hover .avt2r6e {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 255, 204, 0.4);
      }

      .x8sd89 .nam1t9y {
        font-size: 14px;
        color: #ffffff;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      }

      /* Mobile Responsive */
      @media (max-width: 768px) {
        .x8sd89 {
          gap: 12px;
        }

        .x8sd89 .bal9k2x {
          padding: 6px 10px;
        }

        .x8sd89 .lbl4m8n {
          font-size: 11px;
        }

        .x8sd89 .amt7k4p {
          font-size: 13px;
        }

        .x8sd89 .usr5q8w {
          padding: 5px 10px;
        }

        .x8sd89 .avt2r6e {
          width: 22px;
          height: 22px;
          font-size: 11px;
        }

        .x8sd89 .nam1t9y {
          font-size: 13px;
        }
      }

      @media (max-width: 640px) {
        .x8sd89 {
          gap: 8px;
        }


        .x8sd89 .nam1t9y {
          max-width: 80px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
        }
      }

      @media (max-width: 480px) {
        .x8sd89 {
          gap: 6px;
          align-items: flex-end;
        }

        .x8sd89 .bal9k2x {
          order: 1;
        }

        .x8sd89 .usr5q8w {
          order: 2;
        }
      }

/* Modern 3D Brand Logo */
.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 */
.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 */
.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 */
.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 */
.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 */
.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 */
.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 */
.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::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 {
  width: 100%;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-hero-primary,
.btn-hero-secondary,
.btn-cta-primary,
.btn-cta-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,
.btn-hero-primary,
.btn-cta-primary {
  background: linear-gradient(145deg, #00a594, #00d4aa);
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 255, 204, 0.2);
}

.btn-secondary,
.btn-hero-secondary,
.btn-cta-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,
.btn-hero-primary:hover,
.btn-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 255, 204, 0.3);
}

.btn-secondary:hover,
.btn-hero-secondary:hover,
.btn-cta-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);
}

.btn-hero-primary,
.btn-hero-secondary {
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
}

.btn-cta-primary,
.btn-cta-secondary {
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(
      ellipse at center,
      rgba(0, 255, 204, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.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;
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.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;
  width: fit-content;
}

.badge-icon {
  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;
}
.hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.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: 500px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

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

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: #00ffcc;
  text-shadow: 0 0 20px rgb(2 2 2 / 50%);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.casino-card {
  width: 400px;
  height: 500px;
  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.2);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.casino-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(0, 255, 204, 0.1),
    transparent
  );
  animation: rotate 8s linear infinite;
  z-index: -1;
}

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

.card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%;
  justify-content: center;
}

.card-logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, #00ffcc, #00d4aa);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: #000;
  box-shadow: 0 8px 24px rgba(0, 255, 204, 0.3);
}

.card-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
}

/* Casino Card Image Container with Floating Effects */
.casino-card-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  height: 120px;
  overflow: visible;
}

.casino-card img {
  width: 60%;
  height: auto;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 20px rgba(0, 255, 204, 0.6));
  animation: floatImage 3s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

.casino-card:hover img {
  transform: scale(1.05);
}

/* Floating Animation for Casino Card Image */
@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Floating Bitcoin Symbols for Casino Card */
.casino-floating-bitcoin {
  position: absolute;
  color: #00ffcc;
  font-size: 16px;
  font-weight: bold;
  opacity: 0.8;
  animation: floatBitcoin 4s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.8);
  z-index: 1;
}

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

.casino-floating-bitcoin:nth-child(2) {
  top: 20px;
  right: 15px;
  animation-delay: 1s;
  font-size: 14px;
}

.casino-floating-bitcoin:nth-child(3) {
  bottom: 15px;
  left: 15px;
  animation-delay: 2s;
  font-size: 18px;
}

.casino-floating-bitcoin:nth-child(4) {
  bottom: 10px;
  right: 25px;
  animation-delay: 3s;
  font-size: 12px;
}

@keyframes floatBitcoin {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-8px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-8px) rotate(270deg);
    opacity: 1;
  }
}

/* Floating Dots for Casino Card */
.casino-floating-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, #00ffcc, #00d4aa);
  border-radius: 50%;
  animation: floatDot 3s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(0, 255, 204, 0.8);
  z-index: 1;
}

.casino-floating-dot:nth-child(5) {
  top: 30px;
  left: 50px;
  animation-delay: 0.5s;
}

.casino-floating-dot:nth-child(6) {
  top: 50px;
  right: 40px;
  animation-delay: 1.5s;
  width: 6px;
  height: 6px;
}

.casino-floating-dot:nth-child(7) {
  bottom: 40px;
  left: 40px;
  animation-delay: 2.5s;
  width: 3px;
  height: 3px;
}

.casino-floating-dot:nth-child(8) {
  bottom: 30px;
  right: 50px;
  animation-delay: 3.5s;
  width: 5px;
  height: 5px;
}

.casino-floating-dot:nth-child(9) {
  top: 60px;
  left: 30px;
  animation-delay: 1s;
  width: 4px;
  height: 4px;
}

.casino-floating-dot:nth-child(10) {
  top: 40px;
  right: 60px;
  animation-delay: 2s;
  width: 3px;
  height: 3px;
}

@keyframes floatDot {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  33% {
    transform: translateY(-12px) scale(1.2);
    opacity: 1;
  }
  66% {
    transform: translateY(-6px) scale(0.8);
    opacity: 0.5;
  }
}

/* Glowing Effect Around Casino Card Image */
.casino-card-image-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 204, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-in-out infinite;
  z-index: 0;
}

.card-balance {
  text-align: center;
  margin: 20px 0;
}

.balance-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.card-amount {
  font-size: 36px;
  font-weight: 800;
  color: #00ffcc;
  text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.card-games {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.game-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-icon:hover {
  background: rgba(0, 255, 204, 0.2);
  border-color: rgba(0, 255, 204, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 255, 204, 0.2);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Features Section */
.features {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.feature-card {
  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: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 255, 204, 0.3);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, #00ffcc, #00d4aa);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
  box-shadow: 0 12px 32px rgba(0, 255, 204, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 16px 40px rgba(0, 255, 204, 0.4);
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

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

/* How it Works Section */
.how-it-works {
  padding: 120px 0;
  background: radial-gradient(
      ellipse at center,
      rgba(0, 255, 204, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, #00a594, #00d4aa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #000;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 255, 204, 0.3);
  position: relative;
  z-index: 2;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(0, 255, 204, 0.3));
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

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

.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #00ffcc, #00d4aa);
  position: relative;
  margin: 0 -20px;
  z-index: 1;
}

.step-connector::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #00d4aa;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.crash-demo {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.demo-card {
  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.2);
  border-radius: 20px;
  padding: 32px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

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

.demo-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.demo-status {
  padding: 4px 12px;
  background: rgba(255, 107, 107, 0.2);
  border: 1px solid rgba(255, 107, 107, 0.4);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #ff6b6b;
}

.demo-multiplier {
  text-align: center;
  margin-bottom: 32px;
}

.multiplier-value {
  font-size: 48px;
  font-weight: 800;
  color: #00ffcc;
  text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
  display: block;
  margin-bottom: 16px;
}

.multiplier-chart {
  height: 60px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 80%;
  background: linear-gradient(45deg, #00ffcc, #00d4aa);
  border-radius: 4px 4px 0 0;
  animation: chartGrow 3s ease-in-out infinite;
}

@keyframes chartGrow {
  0% {
    width: 10%;
    height: 20%;
  }
  50% {
    width: 70%;
    height: 80%;
  }
  100% {
    width: 10%;
    height: 20%;
  }
}

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

.demo-bet,
.demo-potential {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.cash-out-btn {
  padding: 16px 24px;
  background: linear-gradient(145deg, #00ffcc, #00d4aa);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 255, 204, 0.3);
}

.cash-out-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 255, 204, 0.4);
}

/* Games Section */
.games {
  padding: 120px 0;
  background: radial-gradient(
      ellipse at center,
      rgba(0, 255, 204, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.game-card {
  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: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 255, 204, 0.3);
}

.game-image {
  height: 200px;
  background: linear-gradient(
    145deg,
    rgba(0, 255, 204, 0.1),
    rgba(0, 255, 204, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.game-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.game-card:hover .game-image::before {
  left: 100%;
}

.game-icon-large {
  max-width: 120px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 255, 204, 0.5));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover .game-icon-large {
  transform: scale(1.1);
}

.game-content {
  padding: 32px;
}

.game-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

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

/* Leaderboard Section */
.leaderboard {
  padding: 100px 0 20px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Tickets Table Styles (adapted for leaderboard) */
.tickets-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: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

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

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px 24px;
  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;
}

.table-row:hover {
  background: rgba(0, 255, 204, 0.05);
  transform: translateX(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);
  text-align: center;
}

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

.rank-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rank-image:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 16px rgba(0, 255, 204, 0.5));
}

.rank-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  min-width: 80px;
}

.rank-1 {
  background: linear-gradient(145deg, #ffd700, #ffed4e);
  color: #000;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.rank-2 {
  background: linear-gradient(145deg, #c0c0c0, #e8e8e8);
  color: #000;
  box-shadow: 0 4px 12px rgba(192, 192, 192, 0.3);
}

.rank-3 {
  background: linear-gradient(145deg, #cd7f32, #daa520);
  color: #000;
  box-shadow: 0 4px 12px rgba(205, 127, 50, 0.3);
}

.rank-badge:not(.rank-1):not(.rank-2):not(.rank-3) {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.player-name {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
}

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

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

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

.status-online {
  color: #4ade80;
  font-weight: 600;
  font-size: 14px;
}

.status-offline {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 14px;
}

.leaderboard-footer {
  text-align: center;
  margin-top: 40px;
}

.leaderboard-note {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #00ffcc, #00d4aa);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 255, 204, 0.3);
}

.about-feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.about-feature-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-card {
  width: 100%;
  max-width: 400px;
  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.2);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.about-card-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 32px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-stat {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.about-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta {
  padding: 120px 0;
  background: radial-gradient(
      ellipse at center,
      rgba(0, 255, 204, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  text-align: center;
}

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

.cta-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
}

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

.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-verification {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.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 */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

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

  .steps-container {
    flex-direction: column;
    gap: 60px;
  }

  .step-connector {
    width: 2px;
    height: 60px;
    margin: -30px 0;
    transform: rotate(90deg);
  }

  .step-connector::before {
    top: -8px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 8px solid #00d4aa;
    border-bottom: none;
  }

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

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

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

  .table-header,
  .table-row {
    grid-template-columns: 100px 1fr 120px;
  }

  .hide-mobile {
    display: none;
  }
}

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

  .nav-actions {
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 8px 14px;
    font-size: 13px;
  }

  .hero-badge {
    display: none;
  }

  .hero-stats {
    display: none;
  }

  .hero-actions .btn-hero-secondary {
    display: none;
  }

  .hero-title {
    font-size: 36px;
    margin-top: 71px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .casino-card {
    width: 100%;
    max-width: 350px;
    height: 400px;
    transform: none;
  }

  .casino-card img {
    width: 71%;
  }

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

  .section-description {
    font-size: 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .steps-container {
    gap: 40px;
  }

  .step-connector {
    height: 40px;
    margin: -20px 0;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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

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

  .footer-verification {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

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

  .rank-image {
    width: 40px;
    height: 40px;
  }

  .rank-badge {
    min-width: 60px;
    font-size: 12px;
    padding: 6px 12px;
  }

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

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

  /* Mobile: Make profit cell display in single row */
  .profit-cell {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
  }
}

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

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

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

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

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

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

  .about-stats {
    grid-template-columns: 1fr;
  }

  .step-item {
    max-width: 280px;
  }

  .demo-card {
    padding: 24px;
  }

  .multiplier-value {
    font-size: 36px;
  }

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

  .rank-image {
    width: 35px;
    height: 35px;
  }

  .rank-badge {
    min-width: 50px;
    font-size: 10px;
    padding: 4px 8px;
  }

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

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

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

  .status-online,
  .status-offline {
    font-size: 12px;
  }

  /* Mobile: Ensure profit cell stays in single row */
  .profit-cell {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
  }

  .footer-verification {
    align-items: flex-start;
    gap: 12px;
  }
}

/* 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;
  }
}

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