:root {
  --primary: #FFD700;
  --dark: #000000;
  --light: #ffffff;
  --dark-opacity: rgba(0, 0, 0, 0.8);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  min-height: 100vh;
  color: var(--light);
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.267)),
    url('/static/img/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.navbar {
  padding: 1rem 0;
  background: var(--dark-opacity);
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.nav-link {
  color: var(--light);
  font-size: 1.2rem;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  padding: 4rem 0;
  text-align: center;
  /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)); */
  background: var(--dark-opacity);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.hero-title .highlight {
  color: var(--primary);
}

.game-card {
  position: relative;
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.game-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

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

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

.steps-section {
  padding: 4rem 0;
  background: var(--dark-opacity);
}

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

.steps-title .highlight {
  color: var(--primary);
}

.step-card {
  /* background: rgba(255, 255, 255, 0.05); */
  /* border-radius: 15px; */
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 10% 95%, 0% 100%);
  cursor: pointer;
}

.step-card:hover {
  transform: translateY(-5px);
  /* background: rgba(255, 255, 255, 0.1); */
  background: linear-gradient(to top, rgba(255, 217, 0, 0.61), rgba(0, 0, 0, 0.973));
  border-color: var(--primary);
}


.step-card:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 217, 0, 0.15);
  filter: blur(20px);
  z-index: -1;
}



.step-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-icon img {
  width: 45px;
  height: 45px;
  color: var(--dark);
}

.step-number {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.step-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.step-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

footer {
  background: var(--dark-opacity);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  color: var(--light);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.payment-methods img {
  width: 30%;
  height: auto;
  color: var(--primary);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.social-icons {
  margin: 1.5rem 0;
}

.social-icons a {
  color: var(--primary);
  font-size: 1.2rem;
  margin: 0 0.5rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .navbar-brand {
    margin: 1rem 0;
  }

  .step-card {
    margin-bottom: 1rem;
  }
}

.game-card {
  flex-basis: 200px;
}


.coin {
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #ffd700, #daa520);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  animation: fall linear infinite;
  z-index: -2;
}


@keyframes fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
  }

  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}

.badge-container {
    top: 15px;
    right: 15px;
    z-index: 3;
}

.new-badge,
.promo-badge,
.best-selling-badge {
    background: #ff4500;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

/* Discord */
.discord-badge {
    position: fixed;
    top: 500px;
    right: 14px;
    width: 248px;
    height: 60px;
    background: #FFD700;
    border-radius: 4px;
    box-shadow: 0 0 5px gray;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: right 0.3s;
    font-family: sans-serif;
    overflow: hidden;
}

.discord-badge a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
    width: 100%;
    padding: 10px;
}

.discord-badge img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    filter: grayscale(100%);
}

.discord-badge span {
    font-size: 14px;
    font-weight: bold;
}

.discord-badge {
    right: -186px;
}

.discord-badge:hover {
    right: 14px;
}
