@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Segoe+UI:wght@300;400;500;700&family=Anton&display=swap");

:root {
  --primary-bg: #0e1226;
  --secondary-bg: #171d37;
  --nav-bg: #171d37;
  --primary-blue: #0470ce;
  --hover-blue: #0366bb;
  --text-primary: #ffffff;
  --text-secondary: #a1a5b7;
  --border-color: #252b3b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: var(--primary-bg);
  color: var(--text-primary);
  min-height: 100vh;
}

/* Header */
.header {
  background-color: rgba(23, 29, 55, 0.8);
  padding: 0.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  justify-content: space-between;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-primary);
  text-decoration: none;
  /* all capital no spaces and use font anton from google fonts */
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  letter-spacing: 2px;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 4rem 1rem;
  min-height: 100vh;
  text-align: center;
  background-color: var(--secondary-bg);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)),
    url("/assets/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; /* Add this line */
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  margin: -100px auto 0;
}

.floating-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-img {
  position: absolute;
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: 0.8;
}

.float-1 {
  top: 15%;
  left: 15%;
  animation: float 6s ease-in-out infinite;
}

.float-2 {
  top: 20%;
  right: 15%;
  animation: float 8s ease-in-out infinite;
  animation-delay: -1s;
}

.float-3 {
  bottom: 25%;
  left: 20%;
  animation: float 7s ease-in-out infinite;
  animation-delay: -2s;
}

.float-4 {
  bottom: 20%;
  right: 20%;
  animation: float 9s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-secondary);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 3px;
  height: 8px;
  background: var(--primary-blue);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

.arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.arrows span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: rotate(45deg);
  animation: arrows 2s infinite;
}

.arrows span:nth-child(2) {
  animation-delay: -0.2s;
}

.arrows span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

@keyframes arrows {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-5px, -5px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(5px, 5px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .float-img {
    width: 80px;
    height: 80px;
  }

  .float-1 {
    top: 10%;
    left: 5%;
  }

  .float-2 {
    top: 15%;
    right: 5%;
  }

  .float-3 {
    bottom: 15%;
    left: 10%;
  }

  .float-4 {
    right: 10%;
  }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Bonus Section */
.bonus-section {
  padding: 4rem 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.bonus-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.bonus-subtitle {
  color: var(--text-secondary);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
  gap: 2rem;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.bonus-card {
  background-color: var(--secondary-bg);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
  max-width: 350px;
}

.bonus-card:hover {
  transform: translateY(-5px);
}

.bonus-card img {
  width: 200px;
  height: auto;
}

.bonus-features {
  list-style: none;
  margin: 2rem 0;
  width: 100%;
}

.bonus-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  color: var(--text-secondary);
}

.bonus-feature i {
  color: var(--primary-blue);
}

.claim-btn {
  width: 10rem;
  padding: 1rem;
  background-color: var(--primary-blue);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.claim-btn:hover {
  background-color: var(--hover-blue);
  transform: translateY(-2px);
}

/* Social Section */
.social-section {
  padding: 4rem 1rem;
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.social-card {
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  width: 280px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.social-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-card:hover .social-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

.social-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
}

.social-handle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.social-card:hover .social-handle {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 968px) {
  .social-grid {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .social-card {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .social-card {
    padding: 2rem 1.5rem;
  }

  .social-icon {
    font-size: 2rem;
    padding: 1.2rem;
  }

  .social-name {
    font-size: 1.2rem;
  }
}

/* Footer */
.footer {
  background-color: var(--nav-bg);
  padding: 2rem 1rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-link:hover {
  color: var(--primary-blue);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary-blue);
  transform: translateY(-3px);
}

.gamble-aware {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.gamble-aware-text {
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-align: center;
}

.footer-text {
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .social-header {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--nav-bg);
  padding: 4rem 2rem;
  z-index: 1000;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav-links {
  display: flex !important;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.mobile-menu .nav-link {
  font-size: 1.2rem;
  padding: 1rem;
  display: block;
  text-align: center;
}

.close-menu {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }

  .nav-left {
    justify-content: space-between;
    width: 100%;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    margin-left: auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .bonus-title {
    font-size: 2rem;
  }

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

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-social {
    gap: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
}

/* Add this to your CSS */
.stream-section {
  padding: 4rem 1rem;
  background-color: var(--secondary-bg);
}

.stream-container {
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background-color: var(--secondary-bg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.stream-embed {
  width: 100%;
  height: 100%;
  display: block;
}

/* Add this to your existing media queries */
@media (max-width: 768px) {
  .stream-container {
    max-width: 100%;
    margin: 0 1rem;
  }
}

.nav-islive {
  display: flex;
  align-items: left;
  margin-left: 0;
  background: rgba(83, 252, 24, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(83, 252, 24.3);
}

.nav-islive a {
  color: #53fc18;
  /* Bright red color */
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-islive a:hover {
  color: #44ff00;
  /* Lighter red on hover */
}

.nav-islive a span {
  font-size: 0.8rem;
  color: #53fc18;
  /* Match the icon color */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.nav-islive i {
  font-size: 1rem;
}

.nav-islive svg {
  width: 15px;
  height: 15px;
}

/* Add animation */
@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.nav-islive {
  animation: pulse 2s infinite;
}

.leaderboard-section {
  padding: 6rem 1rem;
  background-color: var(--secondary-bg);
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)),
    url("/assets/bg2.png");
  background-size: cover;
  background-position: center center; /* Add this line */
  background-repeat: no-repeat;
}

/* Countdown Styles */
.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.countdown-item span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  background: var(--nav-bg);
  padding: 1rem;
  border-radius: 8px;
  min-width: 80px;
  text-align: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.countdown-item label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Top Winners Styles */
.top-winners {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  margin: 4rem 0;
  padding: 0 1rem;
}

.winner-card {
  background: var(--nav-bg);
  border-radius: 16px;
  padding: 2rem;
  width: 280px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.winner-card:hover {
  transform: translateY(-10px);
}

.winner-card.gold {
  background: linear-gradient(145deg, var(--nav-bg), rgba(255, 215, 0, 0.1));
  transform: translateY(-20px) scale(1.1);
  z-index: 2;
}

.winner-card.silver {
  background: linear-gradient(145deg, var(--nav-bg), rgba(192, 192, 192, 0.1));
}

.winner-card.bronze {
  background: linear-gradient(145deg, var(--nav-bg), rgba(205, 127, 50, 0.1));
}

/* Animation for top 3 winner cards */
@keyframes flyInBottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flyInBottomGold {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(-20px) scale(1.1);
  }
}

.winner-card {
  opacity: 0;
  animation: flyInBottom 0.8s ease forwards;
}

.winner-card.silver {
  animation-delay: 0.2s;
}

.winner-card.gold {
  animation: flyInBottomGold 0.8s ease forwards;
  animation-delay: 0.4s;
}

.winner-card.bronze {
  animation-delay: 0.6s;
}

/* Animation for table sections */
@keyframes flyInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.leaderboard-table tr {
  opacity: 0;
  animation: flyInRight 0.5s ease forwards;
}

/* Add staggered delays for table rows */
.leaderboard-table tr:nth-child(1) {
  animation-delay: 0.8s;
}
.leaderboard-table tr:nth-child(2) {
  animation-delay: 0.9s;
}
.leaderboard-table tr:nth-child(3) {
  animation-delay: 1s;
}
.leaderboard-table tr:nth-child(4) {
  animation-delay: 1.1s;
}
.leaderboard-table tr:nth-child(5) {
  animation-delay: 1.2s;
}
.leaderboard-table tr:nth-child(6) {
  animation-delay: 1.3s;
}
.leaderboard-table tr:nth-child(7) {
  animation-delay: 1.4s;
}

.place-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.medal {
  font-size: 3rem;
  /* margin: 1rem 0; */
}

.medal img {
  width: 100px;
}

.username {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.stats {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.wagered,
.prize {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.value {
  color: var(--text-primary);
  font-weight: 600;
}

/* Leaderboard Table Styles */
.leaderboard-table-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--nav-bg);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid var(--border-color);
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard-table th {
  text-align: left;
  padding: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border-color);
}

.leaderboard-table td {
  padding: 1rem;
  color: var(--text-primary);
}

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

/* Mobile Responsiveness */
@media (max-width: 968px) {
  .top-winners {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .winner-card {
    width: 100%;
    max-width: 320px;
  }

  .winner-card.gold {
    transform: none;
    order: -1;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown-item span {
    font-size: 1.8rem;
    min-width: 60px;
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .countdown {
    flex-wrap: wrap;
  }

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

  .leaderboard-table {
    min-width: 600px;
  }
}

/* Leaderboard Table Styles */
.leaderboard-table-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--nav-bg);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid var(--border-color);
  overflow-x: auto;
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard-table th {
  text-align: left;
  padding: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border-color);
}

.leaderboard-table td {
  padding: 1rem;
  color: var(--text-primary);
}

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

/* Mobile Table Adjustments */
@media (max-width: 768px) {
  .leaderboard-table {
    width: 100%;
    min-width: unset;
  }

  .leaderboard-table th:first-child,
  .leaderboard-table td:first-child {
    display: none;
  }

  .leaderboard-table th,
  .leaderboard-table td {
    padding: 1rem 0.5rem;
  }

  .leaderboard-table th:not(:first-child),
  .leaderboard-table td:not(:first-child) {
    width: 33.33%;
  }

  /* Make username column slightly bigger */
  .leaderboard-table th:nth-child(2),
  .leaderboard-table td:nth-child(2) {
    width: 40%;
  }

  /* Adjust wagered and prize columns */
  .leaderboard-table th:nth-child(3),
  .leaderboard-table td:nth-child(3),
  .leaderboard-table th:nth-child(4),
  .leaderboard-table td:nth-child(4) {
    width: 30%;
    text-align: right;
  }
}

/* Smaller screens */
@media (max-width: 480px) {
  .leaderboard-table th,
  .leaderboard-table td {
    padding: 0.75rem 0.25rem;
    font-size: 0.9rem;
  }
}

.rewards-section {
  padding: 6rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.bonus-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.bonus-title i {
  color: var(--primary-blue);
}

.bonus-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.rewards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem;
  justify-content: center;
}

.reward-card {
  width: calc(25% - 1.125rem);
  min-width: 250px;
}

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

/* Modify the reward-card class to include the animation */
.reward-card {
  /* Keep existing styles */
  background-color: var(--secondary-bg);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  animation: flyIn 0.6s ease forwards;
}

/* Add staggered delay for each card */
.reward-card:nth-child(1) {
  animation-delay: 0.1s;
}
.reward-card:nth-child(2) {
  animation-delay: 0.2s;
}
.reward-card:nth-child(3) {
  animation-delay: 0.3s;
}
.reward-card:nth-child(4) {
  animation-delay: 0.4s;
}
.reward-card:nth-child(5) {
  animation-delay: 0.5s;
}
.reward-card:nth-child(6) {
  animation-delay: 0.6s;
}
.reward-card:nth-child(7) {
  animation-delay: 0.7s;
}
.reward-card:nth-child(8) {
  animation-delay: 0.8s;
}
.reward-card:nth-child(9) {
  animation-delay: 0.9s;
}
.reward-card:nth-child(10) {
  animation-delay: 1s;
}
.reward-card:nth-child(11) {
  animation-delay: 1.1s;
}

.reward-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
}

.reward-content {
  position: relative;
  z-index: 1;
}

.reward-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reward-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.reward-prize {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4ade80;
  margin-bottom: 0.5rem;
}

.wager-requirement {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.wager-amount {
  color: var(--text-primary);
  font-weight: bold;
}

.rewards-claim-section {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  border-top: 1px solid var(--border-color);
  /* Add animation properties */
  opacity: 0;
  animation: flyIn 0.6s ease forwards;
  animation-delay: 1.8s; /* Starts after all cards have finished */
}

/* Keep existing flyIn animation keyframes and other styles */
.claim-reward-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.claim-reward-btn:hover {
  background-color: var(--hover-blue);
  transform: translateY(-2px);
}

.claim-reward-btn i {
  font-size: 1.2rem;
}

.eligibility-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Add this to style.css */
.gamble-aware {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.gamble-aware-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.gamble-aware-link {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.gamble-aware-link:hover {
  color: var(--hover-blue);
}

.gamble-aware-icon {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  color: white;
  min-width: 180px;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn i {
  font-size: 1.2rem;
}

.leaderboard-btn {
  background-color: var(--primary-blue);
  color: white;
}

.leaderboard-btn:hover {
  background-color: var(--hover-blue);
}

.rewards-btn {
  background-color: var(--primary-blue);
}

.rewards-btn:hover {
  background-color: var(--hover-blue);
}

.signup-btn {
  background-color: var(--primary-blue);
  color: white;
}

.signup-btn:hover {
  background-color: var(--hover-blue);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    padding: 0 1rem;
  }

  .hero-btn {
    width: 100%;
  }
}

/* Hero content animations */
.hero h1 {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero p {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.hero-btn {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.leaderboard-btn {
  animation-delay: 0.6s;
}

.rewards-btn {
  animation-delay: 0.8s;
}

.signup-btn {
  animation-delay: 1s;
}

/* Add the fadeInUp keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.float-img {
  position: absolute;
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: 0;
  will-change: transform;
  animation: popIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Pop-in animations with different delays */
.float-1 {
  top: 15%;
  left: 15%;
  animation: popIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    float-1 6s ease-in-out infinite;
  animation-delay: 0.2s, 0.8s; /* Delay float until pop-in completes */
}

.float-2 {
  top: 20%;
  right: 15%;
  animation: popIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    float-2 8s ease-in-out infinite;
  animation-delay: 0.4s, 1s;
}

.float-3 {
  bottom: 25%;
  left: 20%;
  animation: popIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    float-3 7s ease-in-out infinite;
  animation-delay: 0.6s, 1.2s;
}

.float-4 {
  bottom: 20%;
  right: 20%;
  animation: popIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    float-4 9s ease-in-out infinite;
  animation-delay: 0.8s, 1.4s;
}

/* Pop-in animation */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(100px);
  }
  70% {
    transform: scale(1.1) translateY(-10px);
  }
  100% {
    opacity: 0.8;
    transform: scale(1) translateY(0);
  }
}

/* Floating animations */
@keyframes float-1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-20px) rotate(5deg) scale(1.05);
  }
}

@keyframes float-2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-25px) rotate(-3deg) scale(1.03);
  }
}

@keyframes float-3 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-15px) rotate(3deg) scale(1.02);
  }
}

@keyframes float-4 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-30px) rotate(-5deg) scale(1.04);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .float-img {
    width: 80px;
    height: 80px;
  }

  .float-1 {
    top: 10%;
    left: 5%;
  }

  .float-2 {
    top: 15%;
    right: 5%;
  }

  .float-3 {
    bottom: 15%;
    left: 10%;
  }

  .float-4 {
    bottom: 15%;
    right: 10%;
  }
}
