:root {
  --bg-dark: #0a0c12;
  --accent-pink: #ff4d88;
  --accent-dark-pink: #c7154a;
  --text-white: #f0f0f0;
  --glow-pink: rgba(255, 77, 136, 0.6);
  --glow-dark-pink: rgba(199, 21, 74, 0.5);
  --secondary-grey: #3a3f4a;
  --font-heading: "Inter", sans-serif;
  --font-body: "Poppins", sans-serif;
  --blur-level: 14px;
}

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

html,
body {
  height: 100%;
  width: 100%;
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

body {
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/background.jpg") center/cover no-repeat;
  filter: blur(var(--blur-level));
  opacity: 0.12;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 12, 18, 0.95),
    rgba(199, 21, 74, 0.15),
    rgba(255, 77, 136, 0.2)
  );
  z-index: 1;
  pointer-events: none;
}
main,
.content,
.app-wrapper,
#root {
  position: relative;
  z-index: 2;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-logo {
  width: 100px;
  height: 75px;
  animation: spin 1.2s linear infinite;
  filter: drop-shadow(0 0 8px var(--glow-pink));
}

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

.cool-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 7, 12, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
  padding: 1.2rem 2.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 77, 136, 0.2);
}

.nav-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  margin-left: 10px;
}

.logo img {
  height: 60px;
  filter: drop-shadow(0 0 8px var(--glow-pink));
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  background: rgba(20, 22, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--glow-pink),
    transparent
  );
  transition: left 0.6s ease;
}

.nav-links a:hover::before {
  left: 100%;
}

.nav-links a:hover {
  color: var(--accent-pink);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(199, 21, 74, 0.4);
  border-color: rgba(255, 77, 136, 0.3);
}

.nav-links a.active {
  background: linear-gradient(
    145deg,
    var(--accent-pink),
    var(--accent-dark-pink)
  );
  color: #fff;
  box-shadow: 0 4px 15px var(--glow-pink);
  border-color: var(--accent-dark-pink);
}

.nav-links a i {
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.nav-links a:hover i {
  color: var(--accent-pink);
  transform: scale(1.1);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 10px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--text-white);
  margin: 6px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background: var(--accent-pink);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background: var(--accent-pink);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  background: rgba(5, 7, 12, 0.98);
  backdrop-filter: blur(12px);
  padding: 1.5rem 0;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 77, 136, 0.2);
  border-bottom: 1px solid rgba(255, 77, 136, 0.2);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.9rem 2rem;
  width: 80%;
  text-align: center;
  transition: all 0.3s ease;
  background: rgba(20, 22, 28, 0.7);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a i {
  font-size: 1.1rem;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: linear-gradient(
    145deg,
    var(--accent-pink),
    var(--accent-dark-pink)
  );
  color: #fff;
  box-shadow: 0 4px 15px var(--glow-pink);
  transform: translateY(-2px);
}

.hero-section {
  margin: 8rem auto 3rem;
  max-width: 1000px;
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 0 2rem;
}

.hero-logo img {
  max-height: 400px;
  width: auto;
  margin-bottom: -10px;
  filter: drop-shadow(0 0 15px var(--glow-dark-pink));
  animation: float 4s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent-pink);
  text-shadow: 0 0 15px var(--glow-pink);
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  font-weight: 900;
}

.hero-bio {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bio span {
  color: var(--accent-pink);
  font-weight: 500;
  text-shadow: 0 0 8px var(--glow-pink);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 5rem;
  text-decoration: none;
}
.cta-buttons a {
  text-decoration: none;
}
.cta-button {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  border: none;
  outline: none;
  letter-spacing: 1px;
  transform-style: preserve-3d;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  transition: all 0.5s ease;
  transform: translateX(-100%);
}

.cta-button:hover::before {
  transform: translateX(100%);
}

.cta-button.bonuses {
  background: linear-gradient(
    145deg,
    var(--accent-pink),
    var(--accent-dark-pink)
  );
  border-bottom: 4px solid rgba(160, 20, 60, 0.8);
  box-shadow: 0 6px 0 rgba(160, 20, 60, 0.6), 0 10px 25px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.cta-button.bonuses:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(160, 20, 60, 0.6), 0 15px 30px rgba(199, 21, 74, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.cta-button.bonuses:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(160, 20, 60, 0.6), 0 5px 15px rgba(199, 21, 74, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-button.leaderboard {
  background: rgba(255, 77, 136, 0.15);
  border: 1px solid rgba(255, 77, 136, 0.3);
  box-shadow: 0 6px 0 rgba(199, 21, 74, 0.3), 0 10px 25px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-button.leaderboard:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    145deg,
    var(--accent-pink),
    var(--accent-dark-pink)
  );
  box-shadow: 0 8px 0 rgba(160, 20, 60, 0.6), 0 15px 30px rgba(199, 21, 74, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-button.leaderboard:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(160, 20, 60, 0.6), 0 5px 15px rgba(199, 21, 74, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: scale(1.1);
}

.bonus-section {
  z-index: 5;
  max-width: 900px;
  margin: 140px auto 80px;
  padding: 0 20px;
  position: relative;
}

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

.section-title-wrapper {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(to right, var(--accent-pink), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.section-title-divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--accent-pink),
    var(--accent-dark-pink)
  );
  margin: 0 auto 10px;
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-pink);
}

.social-description {
  color: #bbb;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: rgba(255, 164, 209, 0.123);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(199, 21, 74, 0.3);
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-pink),
    var(--accent-dark-pink)
  );
}

.bonus-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.bonus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-content {
  padding: 20px;
}

.bonus-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 15px;
  text-align: center;
}

.bonus-features {
  list-style: none;
  margin-bottom: 20px;
}

.bonus-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.bonus-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-pink);
  font-size: 1.2rem;
}

.bonus-code {
  display: inline-block;
  background: rgba(255, 77, 136, 0.2);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--accent-pink);
}

.bonus-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 20px;
}

.bonus-button {
  display: block;
  text-align: center;
  padding: 15px;
}

.btn-3d {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(
    145deg,
    var(--accent-pink),
    var(--accent-dark-pink)
  );
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 0 var(--accent-dark-pink), 0 6px 10px rgba(0, 0, 0, 0.3);
}

.btn-3d:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--accent-dark-pink), 0 8px 15px rgba(199, 21, 74, 0.4);
}

.btn-3d:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 var(--accent-dark-pink), 0 3px 8px rgba(199, 21, 74, 0.3);
}

.btn-3d i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .bonus-section {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

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

  .bonus-image {
    height: 130px;
  }
}

.stat {
  background: rgba(255, 77, 136, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 77, 136, 0.2);
}

.stat i {
  font-size: 1.5rem;
  color: var(--accent-pink);
  margin-bottom: 0.5rem;
}

.stat span {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-white);
}

.leaderboard-button {
  margin-top: 1.5rem;
}

.leaderboard-cta {
  background: linear-gradient(
    145deg,
    var(--accent-pink),
    var(--accent-dark-pink)
  );
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.leaderboard-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(199, 21, 74, 0.5);
}

.social-section {
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
  position: relative;
  z-index: 5;
}

.social-header {
  text-align: center;
  margin-bottom: 3rem;
}

.join-text {
  font-weight: 700;
}

.community-text {
  font-weight: 600;
}

.social-description {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  margin-top: 10px;
}

.social-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.social-card {
  background: rgba(20, 22, 28, 0.7);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(199, 21, 74, 0.3);
  border-color: rgba(255, 77, 136, 0.3);
}

.social-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-pink),
    var(--accent-dark-pink)
  );
}

.social-icon-container {
  margin-bottom: 1.5rem;
}

.social-icon-container i {
  font-size: 3rem;
  color: var(--accent-pink);
}

.social-content {
  margin-bottom: 1.5rem;
}

.social-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.social-info {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.social-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0;
}

.social-cta {
  background: linear-gradient(
    145deg,
    var(--accent-pink),
    var(--accent-dark-pink)
  );
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  width: 100%;
}

.social-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(199, 21, 74, 0.5);
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.bg-overlay img {
  width: 150%;
  height: auto;
  opacity: 0.18;
  animation: drift 25s linear infinite;
  transform: translateX(-20%);
  filter: drop-shadow(0 0 10px var(--glow-dark-pink));
}

@keyframes drift {
  0% {
    transform: translateX(-20%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20%);
  }
}

.particle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent-pink);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--glow-pink);
  animation: particleRise 2.5s linear infinite;
}

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

.particle:nth-child(2) {
  left: 35%;
  animation-delay: 0.8s;
}

.particle:nth-child(3) {
  left: 55%;
  animation-delay: 0.4s;
}

.particle:nth-child(4) {
  left: 75%;
  animation-delay: 1.2s;
}

@keyframes particleRise {
  0% {
    transform: translateY(100vh);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh);
    opacity: 0;
  }
}

.tilt {
  transition: transform 0.3s ease;
}

.tilt:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.02);
}

.lighta-footer {
  background: rgba(5, 7, 12, 0.92);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 70px 20px 40px;
  border-top: 2px solid #ff2d75;
  font-family: var(--font-heading);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.lighta-footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff2d75 0%, #7a2dff 50%, #2d9dff 100%);
  filter: blur(10px);
  opacity: 0.7;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.footer-warning {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  padding-right: 20px;
}

.warning-title {
  font-family: "Barlow", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff2d75;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.warning-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ff2d75;
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(255, 45, 117, 0.6);
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.copyright-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.logo-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  position: relative;
  transition: all 0.4s ease;
}

.logo-container:hover {
  transform: scale(1.1) rotate(-5deg);
}

.footer-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 45, 117, 0.5));
  transition: all 0.3s ease;
}

.made-by {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 15px;
}

.made-by a {
  color: #ff2d75;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.made-by a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 45, 117, 0.8);
}

.made-by a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ff2d75;
  transition: width 0.3s ease;
}

.made-by a:hover::after {
  width: 100%;
}

.fa-heart {
  color: #ff2d75;
  margin: 0 3px;
  animation: pulse 2s infinite;
}

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

.footer-links {
  margin-left: auto;
}

.links-title {
  font-family: "Barlow", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff2d75;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.links-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ff2d75;
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(255, 45, 117, 0.6);
}

.footer-links .links-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 8px 15px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links a:hover {
  color: #fff;
  background: rgba(255, 45, 117, 0.15);
  border-color: rgba(255, 45, 117, 0.3);
  transform: translateX(-5px);
  box-shadow: 0 5px 15px rgba(255, 45, 117, 0.2);
}

.footer-links a i {
  font-size: 1.2rem;
  color: #ff2d75;
  transition: all 0.3s ease;
}

.footer-links a:hover i {
  color: #fff;
  transform: scale(1.2);
}

.footer-links a.active {
  background: rgba(255, 45, 117, 0.3);
  color: #fff;
  font-weight: 500;
}

.custom-cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 9999;
  background: url("../images/loader.png") no-repeat center;
  background-size: contain;
  transform: translate(-50%, -50%);
}

.cursor-particle {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--accent-pink);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--glow-pink);
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  animation: drip 0.8s ease-out forwards;
}

@keyframes drip {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(30px) scale(0.5);
  }
}

button:hover,
.cta-button:hover,
.btn-3d:hover,
.social-cta:hover {
  cursor: pointer;
}

button:hover ~ .custom-cursor,
.cta-button:hover ~ .custom-cursor,
.btn-3d:hover ~ .custom-cursor,
.social-cta:hover ~ .custom-cursor {
  display: none;
}

@media (hover: none) {
  body {
    cursor: default;
  }
  .custom-cursor,
  .cursor-particle {
    display: none;
  }
}

@media (max-width: 1024px) {
  .cool-navbar {
    padding: 1.2rem 2rem;
  }
  .logo img {
    height: 80px;
  }
  .nav-links {
    gap: 1.5rem;
  }
  .hero-logo img {
    max-height: 350px;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .bonus-header h1,
  .leaderboard-header h1,
  .social-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .hero-section {
    margin: 6rem auto 3rem;
  }
  .hero-logo img {
    max-height: 280px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-bio {
    font-size: 1.1rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
  .bonus-grid-container,
  .social-grid-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .links-container {
    align-items: center;
  }
}

@media (max-width: 992px) {
  .footer-main {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-warning {
    padding-right: 0;
  }
  .footer-links .links-container {
    align-items: flex-start;
  }
  .footer-links a:hover {
    transform: translateX(5px);
  }
}

@media (max-width: 585px) {
  .cool-navbar {
    padding: 1rem 1.5rem;
  }
  .logo img {
    height: 70px;
  }
  .footer-links {
    display: none;
  }
  .mobile-nav {
    top: 90px;
  }
  .hero-section {
    margin: 5rem auto 2rem;
    padding: 0 1.5rem;
  }
  .hero-logo img {
    max-height: 220px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-bio {
    font-size: 1rem;
  }
  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
  .bonus-header h1,
  .leaderboard-header h1,
  .social-header h1 {
    font-size: 2rem;
  }
  .bonus-card,
  .social-card {
    padding: 1.5rem;
  }
  .bonus-title,
  .social-title {
    font-size: 1.3rem;
  }
  .leaderboard-card {
    padding: 1.5rem;
  }
  .leaderboard-content h2 {
    font-size: 1.5rem;
  }
  .leaderboard-stats {
    grid-template-columns: 1fr;
  }
  .particle {
    width: 5px;
    height: 5px;
  }
}

@media (max-width: 480px) {
  .lighta-footer {
    padding: 50px 15px 30px;
  }
  .warning-title,
  .links-title {
    font-size: 1.6rem;
  }
  .logo-container {
    width: 70px;
    height: 70px;
  }
}

.leaderboard-page {
  max-width: 1200px;
  margin: 120px auto 50px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

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

.platform-selector {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.platform-selector{
  color: white;
  text-decoration: none;
}
.selector-item {
  padding: 12px 24px;
    color: white;
  text-decoration: none;
  background: rgba(255, 77, 136, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 77, 136, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.selector-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 77, 136, 0.2),
    transparent
  );
  transition: all 0.6s ease;
}

.selector-item:hover::before {
  left: 100%;
}

.selector-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 77, 136, 0.3);
  background: rgba(255, 77, 136, 0.2);
  border-color: rgba(255, 77, 136, 0.4);
}

.selector-item.active {
  background: linear-gradient(
    145deg,
    var(--accent-pink),
    var(--accent-dark-pink)
  );
  box-shadow: 0 4px 15px var(--glow-pink);
  transform: scale(1.05);
}

.selector-item.active:hover {
  transform: scale(1.05) translateY(-3px);
}

.selector-item img {
  height: 30px;
  width: auto;
  transition: transform 0.3s ease;
}

.selector-item:hover img {
  transform: scale(1.1);
}

.selector-item span {
  font-family: var(--font-heading);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.page-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(to right, var(--accent-pink), #ff528b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.page-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Podium Styles */
.podium-container {
  margin: 50px auto;
  max-width: 900px;
  position: relative;
}

.podium-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  height: 400px;
  position: relative;
  z-index: 1;
}

.podium-item {
  position: relative;
  background: rgba(20, 22, 28, 0.7);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid rgba(255, 77, 136, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  width: 280px;
  height: 300px;
  backdrop-filter: blur(5px);
}

.podium-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(255, 77, 136, 0.5);
  background: rgba(20, 22, 28, 0.8);
}

.podium-item.gold {
  order: 2;
  background: linear-gradient(
    145deg,
    rgba(20, 22, 28, 0.7),
    rgba(255, 215, 0, 0.2)
  );
  height: 350px;
  border-color: #ffd700;
}

.podium-item.silver {
  order: 1;
  height: 320px;
  border-color: #c0c0c0;
}

.podium-item.bronze {
  order: 3;
  height: 320px;
  border-color: #cd7f32;
}

.rank-badge {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 2;
}

.gold .rank-badge {
  background: linear-gradient(145deg, #ffd700, #d4af37);
  color: #000;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  border: 3px solid #ffd700;
}

.silver .rank-badge {
  background: linear-gradient(145deg, #c0c0c0, #a8a8a8);
  color: #000;
  box-shadow: 0 0 15px rgba(192, 192, 192, 0.6);
  border: 3px solid #c0c0c0;
}

.bronze .rank-badge {
  background: linear-gradient(145deg, #cd7f32, #b87333);
  color: #000;
  box-shadow: 0 0 15px rgba(205, 127, 50, 0.6);
  border: 3px solid #cd7f32;
}

.user-avatar img,
.table-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.table-avatar {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  vertical-align: middle;
}

.podium-item.gold {
  transform: translateY(-20px);
}

.podium-item:hover .user-avatar {
  transform: scale(1.05);
}

.user-info {
  margin-top: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.username {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-white);
}

.wagered {
  margin-bottom: 15px;
}

.wagered small,
.prize-box small {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.wagered span,
.prize-box span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-white);
}

.prize-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 77, 136, 0.4);
  width: 80%;
}

/* Leaderboard Table Styles */
.leaderboard-table-container {
  margin: 60px auto;
  max-width: 1000px;
  background: rgba(20, 22, 28, 0.7);
  border-radius: 20px;
  padding: 20px;
  border: 2px solid rgba(255, 77, 136, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.leaderboard-table-container:hover {
  box-shadow: 0 12px 30px rgba(255, 77, 136, 0.5);
  background: rgba(20, 22, 28, 0.8);
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.leaderboard-table th {
  padding: 15px;
  text-align: left;
  font-weight: 700;
  color: var(--accent-pink);
  border-bottom: 2px solid rgba(255, 77, 136, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leaderboard-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.leaderboard-table tr:last-child td {
  border-bottom: none;
}

.leaderboard-table tr:hover {
  background: rgba(255, 77, 136, 0.1);
}

.user-cell {
  display: flex;
  align-items: center;
  gap: 15px;
}

.table-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-pink);
}

.prize-cell {
  color: var(--accent-pink);
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .podium-wrapper {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 60px;
  }

  .podium-item {
    width: 80%;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 40px;
  }

  .podium-item.gold,
  .podium-item.silver,
  .podium-item.bronze {
    height: auto;
  }

  .podium-item:hover {
    transform: translateY(-5px);
  }

  .rank-badge {
    position: static;
    transform: none;
    margin-right: 15px;
    width: 50px;
    height: 50px;
  }

  .user-avatar {
    margin: 0 15px;
    width: 80px;
    height: 80px;
  }

  .user-info {
    margin-top: 0;
    flex-grow: 1;
    text-align: left;
  }

  .prize-box {
    width: auto;
  }

  .leaderboard-table th,
  .leaderboard-table td {
    padding: 10px;
    font-size: 0.9rem;
  }

  .table-avatar {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .platform-selector {
    flex-direction: column;
    align-items: center;
  }

  .selector-item {
    width: 80%;
    justify-content: center;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .podium-item {
    width: 95%;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .prize-box {
    width: 100%;
  }

  .leaderboard-table-container {
    padding: 10px;
    overflow-x: auto;
  }

  .leaderboard-table {
    width: 100%;
    min-width: 300px;
  }

  .leaderboard-table th,
  .leaderboard-table td {
    padding: 8px 5px;
    font-size: 0.8rem;
  }

  .user-cell {
    gap: 8px;
  }
}
.countdown-container {
  max-width: 400px;
  margin: 20px auto;
  padding: 15px;
  background: rgba(20, 22, 28, 0.85);
  border-radius: 10px;
  border: 1px solid rgba(255, 77, 136, 0.4);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 77, 136, 0.3);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.countdown-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 77, 136, 0.5),
    0 0 15px rgba(255, 77, 136, 0.4);
}

.countdown-header {
  margin-bottom: 10px;
}

.countdown-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent-pink), #ff528b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 0 0 5px var(--glow-pink);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70px;
  padding: 8px;
  background: rgba(255, 77, 136, 0.15);
  border-radius: 6px;
  border: 1px solid rgba(255, 77, 136, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-unit:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px var(--glow-pink);
}

.time-unit span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-white);
  text-shadow: 0 0 6px var(--glow-pink);
  animation: pulse-text 2s infinite;
}

.time-unit small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes pulse-text {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .countdown-container {
    max-width: 300px;
    padding: 10px;
  }

  .countdown-title {
    font-size: 1.2rem;
  }

  .countdown-timer {
    gap: 8px;
  }

  .time-unit {
    width: 55px;
    padding: 6px;
  }

  .time-unit span {
    font-size: 1.4rem;
  }

  .time-unit small {
    font-size: 0.6rem;
  }
}
.kick-live-container {
  position: fixed;
  top: 50%;  /* vertically centered on screen */
  right: 15px; /* some gap from right */
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: #121212;
  padding: 8px 12px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  user-select: none;
  z-index: 9999;
}

.kick-live-text {
  color: #ccc;
  font-weight: 600;
}

#kick-live-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid #555;
  color: #eee;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}.live-offline .live-dot {
  width: 12px;
  height: 12px;
  background-color: #f44237;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #f4423790; /* soft red glow */
}

.live-online .live-dot {
  width: 12px;
  height: 12px;
  background-color: #4CAF50;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #4CAF5090; /
}

.live-offline .live-text {
  color: #f44237;
  text-shadow: 0 0 4px #f4423780;
}

.live-online .live-text {
  color: #4CAF50;
  text-shadow: 0 0 4px #4CAF5080;
}
@media (max-width: 1499px) {
  .kick-live-container {
    display: none;
  }
}


@media (max-width: 600px) {
  html, body {
    cursor: default !important;
  }
  .custom-cursor,
  .cursor-particle {
    display: none !important;
  }
}
