@font-face {
  font-family: "Lemon_Regular";
  src: url("../font/Lemon_Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lemon_Bold";
  src: url("../font/Lemon_Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --primary-red: #ff4040;
  --dark-red: #8b0000;
  --cool-blue: #00b7eb;
  --deep-blue: #001a33;
  --neon-glow: 0 0 8px rgba(0, 183, 235, 0.5);
  --soft-glow: 0 0 15px rgba(0, 183, 235, 0.3);
  --dark-bg: #0a0e17;
  --section-bg: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lemon_Regular", sans-serif;
  color: white;
  background-color: #000;
  overflow-x: hidden;
  height: 100%;
}

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: blur(5px);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.vignette {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.8) 100%
  );
  box-shadow: inset 0 0 80px rgba(0, 183, 235, 0.2);
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.459);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 221, 255, 0.6);
  box-shadow: var(--neon-glow), 0 0 30px rgba(0, 0, 0, 0.5);
  z-index: 100;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
  opacity: 0;
  animation: fadeIn 0.5s 0.3s forwards;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.logo {
  font-family: "Lemon_Bold", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: white;
  text-shadow: var(--neon-glow);
  letter-spacing: 2px;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  margin-right: 20px;
    text-decoration: none;

}

.nav-btn {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(0, 183, 235, 0.3);
  color: white;
  font-family: "Lemon_Regular", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  position: relative;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.nav-btn:nth-child(1) {
  animation: slideIn 0.5s 0.5s forwards;
}
.nav-btn:nth-child(2) {
  animation: slideIn 0.5s 0.7s forwards;
}
.nav-btn:nth-child(3) {
  animation: slideIn 0.5s 0.9s forwards;
}

.nav-btn:hover {
  background: rgba(0, 183, 235, 0.2);
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
}

.leaderboard-btn {
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  padding: 10px 25px;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.title {
  font-family: "Lemon_Bold", sans-serif;
  font-weight: 900;
  font-size: 6rem;
  color: white;
  text-shadow: 0 0 5px #fff, 0 0 10px var(--cool-blue),
    0 0 20px var(--cool-blue), 0 0 40px var(--cool-blue);
  margin-bottom: 20px;
  letter-spacing: 5px;
  opacity: 0;
  animation: fadeIn 0.8s 0.5s forwards, flicker 4s infinite 2s;
}

.subtext {
  font-size: 1.5rem;
  max-width: 800px;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeIn 0.8s 0.8s forwards;
}

.subtext span {
  color: var(--cool-blue);
  font-weight: bold;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  text-decoration: none;
  opacity: 0;
  animation: fadeIn 0.8s 1.1s forwards;
}
.cta-buttons a{
    text-decoration: none;

}
.cta-btn {
  background: rgba(0, 183, 235, 0.2);
  border: 1px solid var(--cool-blue);
  color: white;
  font-family: "Lemon_Regular", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 15px 30px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.rewards-btn {
  background: rgba(0, 183, 235, 0.2);
  border: 1px solid var(--cool-blue);
}

.rewards-btn:hover {
  box-shadow: 0 10px 25px rgba(0, 183, 235, 0.4);
}

.leaderboard-btn {
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  padding: 15px 35px;
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 183, 235, 0.4);
}

.transition-peak {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--section-bg));
  clip-path: polygon(
    0 30%,
    20% 60%,
    40% 70%,
    60% 60%,
    80% 30%,
    100% 0,
    100% 100%,
    0 100%
  );
  z-index: 10;
}

.next-section {
  position: relative;
  background: linear-gradient(180deg, var(--section-bg), #0e0e0ed0);
  min-height: 100vh;
  padding: 100px 20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-family: "Lemon_Regular", sans-serif;
}

.next-section::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--section-bg));
  clip-path: polygon(
    0 0,
    10% 30%,
    20% 60%,
    30% 30%,
    40% 60%,
    50% 30%,
    60% 60%,
    70% 30%,
    80% 60%,
    90% 30%,
    100% 0,
    100% 100%,
    0 100%
  );
  z-index: 10;
}

.next-section h2 {
  color: white;
  text-shadow: 0 0 5px var(--cool-blue);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes flicker {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    text-shadow: 0 0 5px #fff, 0 0 10px var(--cool-blue),
      0 0 20px var(--cool-blue), 0 0 40px var(--cool-blue);
  }
  20%,
  24%,
  55% {
    text-shadow: 0 0 5px #fff, 0 0 15px var(--cool-blue),
      0 0 25px var(--cool-blue), 0 0 50px var(--cool-blue);
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 3rem;
  }
  .subtext {
    font-size: 1rem;
  }
  .nav-buttons {
    gap: 10px;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  nav {
    padding: 10px 15px;
    left: 50%;
    transform: translateX(-50%);
  }
  .logo {
    font-size: 1.4rem;
  }
  .nav-btn {
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 20px;
  }
  .transition-peak {
    height: 100px;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 0.8s 1.4s forwards;
  z-index: 10;
}

.scroll-text {
  font-family: "Lemon_Regular", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: white;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

.arrow-container {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow-down {
  width: 30px;
  height: 30px;
  animation: arrowBounce 2s infinite;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
}

@keyframes arrowBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateY(10px);
    opacity: 0.7;
  }
  60% {
    transform: translateY(5px);
  }
}

@keyframes arrowPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.arrow-down:hover {
  animation: arrowBounce 2s infinite, arrowPulse 1.5s infinite;
}

.mobile-only {
  display: none;
}

.mobile-menu {
  display: none;
}

.desktop-only {
  display: flex;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  nav {
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    padding: 10px 20px;
    top: 10px;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 100px;
    left: 54.25%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    padding: 15px 30px;
    gap: 10px;
    animation: dropdown 0.3s ease-in-out;
  }

  .scroll-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu .nav-btn {
    width: auto;
    min-width: 150px;
    text-align: center;
    padding: 12px 24px;
    margin: 5px 0;
    border-radius: 25px;
    font-size: 1rem;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .mobile-menu .nav-btn i {
    margin-right: 8px;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(0, 183, 235, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
    margin-right: 20px;
  }

  .hamburger.active {
    background: rgba(0, 183, 235, 0.2);
    box-shadow: var(--neon-glow);
  }

  .hamburger i {
    font-size: 1.2rem;
  }

  @keyframes dropdown {
    from {
      transform: translate(-50%, -20px);
      opacity: 0;
    }
    to {
      transform: translate(-50%, 0);
      opacity: 1;
    }
  }
}
.bonus-section {
  position: relative;
  background: linear-gradient(180deg, var(--section-bg), #0e0e0ed0);
  padding: 80px 20px;
  text-align: center;
  color: white;
  font-family: "Lemon_Regular", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bonus-title {
  font-family: "Lemon_Bold", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 2px #fff, 0 0 20px var(--cool-blue);
  margin-bottom: 20px;
  letter-spacing: 3px;
  animation: fadeIn 0.8s forwards;
}

.bonus-description {
  font-family: "Lemon_Regular", sans-serif;
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeIn 0.8s 0.3s forwards;
}

.bonus-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
}

.bonus-card {
  position: relative;
  background: linear-gradient(145deg, #1a1a1a, #121212);
  border: 2px solid #00b7eb30;
  border-radius: 15px;
  width: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #00b7eb33;
}

.bonus-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 183, 235, 0.5);
}

.bonus-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
  background: #111;
}

.bonus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bonus-card-title {
  font-family: "Lemon_Bold", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.bonus-text {
  font-family: "Lemon_Regular", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  text-align: left;
  padding-left: 0;
  list-style: none;
  width: 100%;
}

.bonus-text li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.bonus-text li::before {
  content: "✔ ";
  color: var(--cool-blue);
  font-weight: bold;
  margin-right: 8px;
}

.claim-btn {
  background: rgba(0, 183, 235, 0.2);
  border: 1px solid var(--cool-blue);
  color: white;
  font-family: "Lemon_Regular", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 1px;
  padding: 14px 25px;
  width: 100%;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.claim-btn:hover {
  background: var(--cool-blue);
  box-shadow: 0 10px 25px rgba(0, 183, 235, 0.6);
  transform: translateY(-3px);
}

.badge {
  position: absolute;
  top: -10px;
  left: -10px;
  background: var(--cool-blue);
  color: black;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .bonus-title {
    font-size: 2.5rem;
  }

  .bonus-description {
    font-size: 1rem;
  }

  .bonus-container {
    gap: 30px;
  }

  .bonus-card {
    width: 100%;
    max-width: 280px;
  }
}
.view-all-wrapper {
  margin-top: 25px;
  text-align: center;
}

.view-all-btn {
  display: inline-block;
  background: var(--cool-blue);
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 183, 235, 0.3);
}

.view-all-btn:hover {
  background: #00a7d1;
  box-shadow: 0 0 25px rgba(0, 183, 235, 0.5);
  transform: translateY(-2px);
}
.videos-section {
  position: relative;
  background: linear-gradient(180deg, #0e0e0ed0, var(--section-bg));
  padding: 80px 20px;
  text-align: center;
  color: white;
  font-family: "Lemon_Regular", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.section-header {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 50px;
  position: relative;
}

.section-title {
  font-family: "Lemon_Bold", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 2px #fff, 0 0 20px var(--cool-blue);
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.section-subtitle {
  font-family: "Lemon_Regular", sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.videos-slider {
  display: flex;
  gap: 30px;
  width: calc(100% - 100px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.videos-slider::-webkit-scrollbar {
  display: none;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 183, 235, 0.2);
  border: 1px solid var(--cool-blue);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 10;
  position: relative;
}

.slider-btn:hover {
  background: var(--cool-blue);
  box-shadow: 0 0 20px rgba(0, 183, 235, 0.7);
  transform: scale(1.1);
}

.slider-btn i {
  font-size: 1.2rem;
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  background: rgba(0, 183, 235, 0.1);
}

/* Rest of the video card styles remain the same */
.video-card {
  flex: 0 0 calc(25% - 30px);
  scroll-snap-align: start;
  background: linear-gradient(145deg, #1a1a1a, #121212);
  border: 2px solid #00b7eb30;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.video-card:hover {
  transform: translateY(-10px);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 183, 235, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.video-card:hover .play-icon {
  opacity: 1;
}

.play-icon i {
  color: white;
  font-size: 1.2rem;
  margin-left: 3px;
}

.time-ago {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.8rem;
}

.video-info {
  padding: 15px;
  text-align: left;
}

.video-title {
  font-family: "Lemon_Regular", sans-serif;
  font-size: 0.8rem;
  margin-bottom: 10px;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3em;
}

.video-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.video-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.view-all-wrapper {
  margin-top: 50px;
  text-align: center;
}

.view-all-btn {
  display: inline-block;
  background: var(--cool-blue);
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 183, 235, 0.3);
}

.view-all-btn:hover {
  background: #00a7d1;
  box-shadow: 0 0 25px rgba(0, 183, 235, 0.5);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .video-card {
    flex: 0 0 calc(33.33% - 20px);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .video-card {
    flex: 0 0 calc(50% - 15px);
  }

  .video-thumbnail {
    height: 150px;
  }

  .slider-container {
    gap: 10px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .videos-slider {
    width: calc(100% - 80px);
  }
}

@media (max-width: 480px) {
  .video-card {
    flex: 0 0 100%;
  }

  .slider-btn {
    width: 35px;
    height: 35px;
  }

  .videos-slider {
    width: calc(100% - 70px);
  }
}
.social-section {
  background: linear-gradient(180deg, #0e0e0ed0, var(--section-bg));
  color: white;
  font-family: "Lemon_Regular", sans-serif;
  padding: 80px 20px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.social-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin-top: 50px;
}

.social-card {
  background: #0f0f0f;
  border-radius: 12px;
  width: 220px;
  padding: 25px 20px;
  color: white;
  text-decoration: none;
  box-shadow: none;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.social-cta {
  margin-top: 50px;
}
.social-card:hover {
  transform: translateY(-6px);
  border-color: var(--platform-color);
}

.social-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--platform-color);
}

.social-title {
  font-family: "Lemon_Bold", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.social-handle {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.social-follow-btn {
  background-color: var(--platform-color);
  border: none;
  color: white;
  padding: 10px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-family: "Lemon_Regular", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.social-follow-btn:hover {
  background-color: rgb(0, 0, 0);
}

.youtube {
  --platform-color: #ff0000;
}
.tiktok {
  --platform-color: #25f4ee;
}
.twitter {
  --platform-color: #1da1f2;
}
.instagram {
  --platform-color: #e1306c;
}

.social-card.instagram .social-icon {
  color: var(--platform-color);
}
/* Responsive */
@media (max-width: 768px) {
  .social-card {
    width: 220px;
    padding: 25px 20px;
  }

  .social-icon {
    font-size: 3.2rem;
    margin-bottom: 15px;
  }

  .social-title {
    font-size: 1.4rem;
  }

  .social-handle {
    font-size: 1rem;
  }

  .social-follow-btn {
    padding: 10px 30px;
    font-size: 1rem;
  }

  .social-cta {
    font-size: 1rem;
  }
} /* FOOTER STYLES */
/* Twitch */
.twitch {
  --platform-color: #9146ff; /* Official Twitch purple */
}

.social-card.twitch .social-icon {
  color: var(--platform-color);
}

/* Kick */
.kick {
  --platform-color: #52ff52; /* Kick's green brand color */
}

.social-card.kick .social-icon {
  color: var(--platform-color);
}

.cyber-footer {
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(0, 183, 235, 0.3);
  padding: 20px;
  font-family: "Lemon_Regular", sans-serif;
  position: relative;
  z-index: 50;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-warning {
  color: rgba(255, 255, 255, 0.7);
}

.warning-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.warning-header i {
  color: #ff4040;
}

.warning-header h4 {
  color: #ff4040;
  font-size: 1rem;
  margin: 0;
}

.warning-text {
  font-size: 0.7rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.gambleaware-link {
  color: #ff4040;
  font-size: 0.7rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  border-bottom: 1px dashed #ff4040;
}

.gambleaware-link:hover {
  color: #ff6b6b;
}

.footer-copyright {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.made-with-love {
  margin-top: 50px;
}

.love-link {
  position: relative;
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid var(--cool-blue);
  border-radius: 15px;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.love-link:hover {
  background: rgba(0, 183, 235, 0.1);
}

.love-link:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid var(--cool-blue);
  font-size: 0.7rem;
  white-space: nowrap;
  margin-bottom: 5px;
}

.blinking-heart {
  color: var(--cool-blue);
  animation: pulse 1.5s infinite;
  display: inline-block;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.footer-links {
  text-align: right;
}

.footer-links h4 {
  color: var(--cool-blue);
  font-size: 1rem;
  margin-bottom: 10px;
}

.link-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer-btn {
  background: rgba(0, 183, 235, 0.1);
  border: 1px solid var(--cool-blue);
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.footer-btn:hover {
  background: rgba(0, 183, 235, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-warning,
  .footer-links {
    text-align: center;
  }

  .link-buttons {
    align-items: center;
  }

  .love-link:hover::after {
    left: auto;
    right: 0;
    transform: none;
  }
}

.coming-soon-section {
  width: 100%;
  height: 85vh;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  backdrop-filter: blur(5px);
  border-top: 2px solid #ff00ff33;
  border-bottom: 2px solid #ff00ff33;
}

.coming-soon-section h1 {
  font-size: 4rem;
  letter-spacing: 5px;
  font-weight: 800;
  color: #01b7ff;
  animation: pulse 1.5s infinite;
}

.coming-soon-section p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #ccc;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}


















/* Leaderboard Selector */
.leaderboard-selector {
  padding: 50px 20px;
  text-align: center;
}

.selector-container {
  max-width: 800px;
  margin: 0 auto;
}

.selector-title {
  font-family: "Lemon_Bold", sans-serif;
  font-size: 2rem;
  color: var(--cool-blue);
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(0, 183, 235, 0.5);
}

.selector-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.leaderboard-selector {
  width: 100%;
  padding: 2rem 0;
    margin-top: 100px;

}

.selector-container {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.selector-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 4px;
}

.selector-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
}

.selector-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  border-bottom: 2px solid #00b7eb;
  background: linear-gradient(to top, rgba(0, 183, 235, 0.1), transparent);
  width: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.selector-card {
  flex: 1;
  text-align: center;
  cursor: pointer;
  padding: 0.8rem 0;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.2s ease;
  position: relative;
  z-index: 2;
}

.selector-card.active {
  opacity: 1;
}

.selector-card img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.2s ease;
}

.selector-card:hover img {
  transform: scale(1.05);
}


/* Leaderboard Header */
.leaderboard-header {
  padding: 30px 20px;
  text-align: center;
}

.title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.coin-icon-lb {
  width: 60px;
  height: 60px;
}
.coin-icon{
  width: 20px;
  height: 20px;
}
/* Coin Icon Styles */
.coin-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
}

.coin-icon-entries {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

/* Wager Box Adjustments */
.wager-box .wager-label {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Leaderboard Entry Adjustments */
.entry-cell.wagered,
.entry-cell.prize {
  display: flex;
  align-items: center;
}

/* Prize Plate Adjustments */
.prize-plate {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Header Row Adjustments */
.header-cell.wagered,
.header-cell.prize {
  display: flex;
  align-items: center;
  gap: 6px;
}
.leaderboard-header h1 {
  font-family: "Lemon_Bold", sans-serif;
  font-size: 2.5rem;
  color: white;
  margin: 0;
  text-shadow: 0 0 10px rgba(0, 183, 235, 0.7);
}

.leaderboard-header .subtext {
  font-family: "Lemon_Regular", sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  
}

/* Podium Section */
.podium-section {
  padding: 60px 20px;
  text-align: center;
}

.podium-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.podium-card {
  width: 280px;
  background: linear-gradient(145deg, #070707, #0f0f0f); /* Dark but not dead black */
  border-radius: 15px;
  padding: 25px 20px;
  height: auto !important;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7),
              0 0 10px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 4px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px); /* slight glass feel */
}

.podium-card.gold {
  height: 380px;
  transform: translateY(-20px);
  border-top-color: gold;
}

.podium-card.silver, 
.podium-card.bronze {
  height: 320px;
  border-top-color: silver;
}

.podium-card.bronze {
  border-top-color: #cd7f32;
}

.rank-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lemon_Bold", sans-serif;
  font-size: 1.2rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}

.rank-ribbon.gold {
  background: gold;
  color: #000;
}

.rank-ribbon.silver {
  background: silver;
  color: #000;
}

.rank-ribbon.bronze {
  background: #cd7f32;
  color: #fff;
}
.podium-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  flex-wrap: wrap;
}

.podium-card {
  flex: 0 0 auto; 
}
.podium-pfp {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 25px;
  border: 3px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

.podium-pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center;
  display: block;
}



.podium-card.gold .podium-pfp {
  border-color: gold;
}

.podium-card.silver .podium-pfp {
  border-color: silver;
}

.podium-card.bronze .podium-pfp {
  border-color: #cd7f32;
}

.podium-pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* Ensures no extra space below image */
}

.podium-position {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Lemon_Bold", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  background: #222;
  color: white;
  border: 3px solid #333;
}

.podium-card.gold .podium-position {
  border-color: gold;
  color: gold;
}

.podium-card.silver .podium-position {
  border-color: silver;
  color: silver;
}

.podium-card.bronze .podium-position {
  border-color: #cd7f32;
  color: #cd7f32;
}

.podium-name {
  font-family: "Lemon_Bold", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: white;
}

.wager-box {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 25px;
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid #333;
}

.wager-label {
  font-family: "Lemon_Regular", sans-serif;
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 5px;
}

.wager-amount {
  font-family: "Lemon_Bold", sans-serif;
  font-size: 1.3rem;
  color: #4af;
}

.prize-plate {
  width: 90%;
  padding: 12px;
  border-radius: 30px;
  font-family: "Lemon_Bold", sans-serif;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
}

.prize-plate.gold {
  background: rgba(255, 215, 0, 0.2);
  color: gold;
  border: 1px solid gold;
}

.prize-plate.silver {
  background: rgba(192, 192, 192, 0.2);
  color: silver;
  border: 1px solid silver;
}

.prize-plate.bronze {
  background: rgba(205, 127, 50, 0.2);
  color: #cd7f32;
  border: 1px solid #cd7f32;
}

/* Hover Effects */
.podium-card:hover {
  transform: translateY(-5px);
}

.podium-card.gold:hover {
  transform: translateY(-25px);
}

.podium-card.silver:hover,
.podium-card.bronze:hover {
  transform: translateY(-5px);
}.countdown-section {
  text-align: center;
  padding: 10px 0;
  margin-top: -20px; /* Moves it slightly upward */
}

.countdown-title {
  font-size: 20px;
  color: #cfd6ff;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.countdown-box {
  padding: 5px;
  text-align: center;
  min-width: 50px;
}

.countdown-value {
  font-size: 26px;  /* Slightly bigger digits */
  font-weight: bold;
  color: #5cc8ff;
}

.countdown-label {
  font-size: 11px;
  color: #9bbdf7;
  text-transform: uppercase;
}

.countdown-separator {
  font-size: 28px;  /* Bigger separators */
  font-weight: bold;
  color: #5cc8ff;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .podium-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .podium-card {
    width: 80%;
    height: auto !important;
    margin-bottom: 20px;
  }
  
  .leaderboard-header h1 {
    font-size: 1.8rem;
  }
  
  .countdown-container {
    flex-wrap: wrap;
  }
  
  .countdown-box {
    min-width: 60px;
    padding: 10px 15px;
  }
  
  .countdown-value {
    font-size: 1.5rem;
  }
  
  .header-cell, .entry-cell {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .selector-card {
    width: 140px;
    height: 140px;
  }
  
  .leaderboard-header h1 {
    font-size: 1.5rem;
  }
  
  .countdown-box {
    min-width: 50px;
    padding: 8px 12px;
  }
  
  .countdown-value {
    font-size: 1.2rem;
  }
  
  .countdown-label {
    font-size: 0.7rem;
  }
}

/* Leaderboard Styles */
.full-leaderboard {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.leaderboard-container {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.player-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.player-pfp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #333;
}

.player-pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leaderboard-header-row {
  display: grid;
  grid-template-columns: 60px 2fr 1fr 1fr;
  padding: 1rem;
  background: rgba(74, 175, 255, 0.1);
  border-bottom: 1px solid #333;
  font-family: "Lemon_Bold", sans-serif;
  color: #4af;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leaderboard-entry {
  display: grid;
  grid-template-columns: 60px 2fr 1fr 1fr;
  align-items: center;
  padding: 0.8rem 1rem;
  position: relative;
  border-bottom: 1px solid #222;
  transition: all 0.3s ease;
  overflow: hidden;
}

.leaderboard-entry:last-child {
  border-bottom: none;
}

.leaderboard-entry:hover {
  background: rgba(255, 255, 255, 0.03);
}

.entry-cell {
  font-family: "Lemon_Regular", sans-serif;
  color: #fff;
  padding: 0.5rem 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.position {
  font-family: "Lemon_Bold", sans-serif;
  font-size: 1rem;
  text-align: center;
  justify-content: center;
}

.username {
  display: flex;
  align-items: center;
  margin-left: 150px;
}

.player-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.player-pfp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #333;
}

.player-pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wagered, .prize {
  display: flex;
  font-size: 1rem;
  align-items: center;
  gap: 6px;
  font-family: "Lemon_Bold", sans-serif;
}

.wagered {
  color: #4af;
}

.prize {
  color: gold;
}

/* Coin Icon Styles */
.coin-icon-header {
  width: 18px;
  height: 18px;
}

.coin-icon-entries {
  width: 16px;
  height: 16px;
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(74, 175, 255, 0.5), #4af);
  z-index: 1;
  transition: width 0.5s ease;
}


@media (max-width: 768px) {
  .full-leaderboard {
    padding: 1rem 0.5rem;
    margin-bottom: 50px;
  }

  .leaderboard-header-row {
    grid-template-columns: 1fr; /* Single column for header */
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .leaderboard-entry {
    grid-template-columns: 1fr; /* Single column for entries */
    padding: 1rem 0.5rem;
    gap: 12px; /* Space between stacked elements */
  }

  .entry-cell {
    padding: 0.3rem 0;
    justify-content: flex-start; /* Align all content to the left */
    display: flex;
    align-items: flex-start; /* Ensure vertical alignment is consistent */
  }

  .position {
    font-size: 1rem;
    justify-content: flex-start;
    text-align: left; 
    width: 100%; 
  }

  .username {
    margin-left: 0; 
    font-size: 1rem;
    flex-direction: column; 
    align-items: flex-start;
    gap: 8px;
  }

  .player-info {
    flex-direction: column; 
    align-items: flex-start;
    gap: 8px;
  }

  .player-pfp {
    width: 32px;
    height: 32px;
  }

  .wagered, .prize {
    font-size: 1rem;
    justify-content: flex-start; 
  }

  .progress-bar {
    height: 2px; 
  }

}
