/* Category Page Styles */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.category-item {
  background: #fff;
  border-radius: 8px;
  padding: 20px 32px;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-bottom: 8px;
}
.category-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 32px 0 16px 0;
}
.category-games {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .category-list {
    gap: 10px;
  }
  .category-item {
    padding: 12px 16px;
    font-size: 1rem;
  }
}


.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
.category-card {
  background: linear-gradient(120deg, #232b4d 60%, #3c4fff 100%);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(60,76,255,0.10);
  display: flex;
  align-items: center;
  padding: 18px 20px;
  gap: 18px;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
.category-card img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 2px 8px rgba(60,76,255,0.10);
}
.category-info h4 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.category-info p {
  margin: 0 0 10px 0;
  font-size: 1rem;
  color: #e0e7ff;
}
.category-card .btn {
  padding: 6px 18px;
  font-size: 0.98rem;
  background: #ff9800;
  color: #fff;
  border-radius: 6px;
  margin-top: 4px;
}
.category-card.action {
  background: linear-gradient(120deg, #ff3c6f 60%, #ff9800 100%);
}
.category-card.adventure {
  background: linear-gradient(120deg, #1e2a78 60%, #3c4fff 100%);
}
.category-card.puzzle {
  background: linear-gradient(120deg, #6f3cff 60%, #ff3c6f 100%);
}
.category-card.racing {
  background: linear-gradient(120deg, #00c3ff 60%, #1e2a78 100%);
}
.category-card.strategy {
  background: linear-gradient(120deg, #ff9800 60%, #6f3cff 100%);
}
.category-card.sport {
  background: linear-gradient(120deg, #8bc543 60%, #ad3cab 100%);
}
.category-card.other {
  background: linear-gradient(120deg, #bf5bf1 60%, #e8b28c 100%);
}
.category-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(60,76,255,0.18);
}

@media (max-width: 900px) {
  .hero-content {
    margin-left: 16px;
  }
  .events-grid, .news-list, .partners-list {
    flex-direction: column;
    gap: 16px;
  }
  .leaderboard {
    padding: 16px 8px;
  }
  .category-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 180px;
    font-size: 1.3rem;
    border-radius: 10px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .games-grid {
    gap: 12px;
  }
  .section-title {
    font-size: 1.1rem;
    margin: 24px 0 10px 0;
  }
  .category-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .category-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 10px;
    gap: 10px;
  }
  .category-card img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
  }
}


.more-btn-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  font-family: inherit;
  font-size: 15px;
}

button.learn-more {
  font-weight: 600;
  color: #e88d14;
  text-transform: uppercase;
  padding: 1.25em 2em;
  background: #ad1b02;
  border: 2px solid #f3be26;
  border-radius: 0.75em;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: background 150ms cubic-bezier(0, 0, 0.58, 1),
  -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1),
  background 150ms cubic-bezier(0, 0, 0.58, 1),
  -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
}

button.learn-more::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f3be26;
  border-radius: inherit;
  -webkit-box-shadow: 0 0 0 2px #b18597, 0 0.625em 0 0 #ffe3e2;
  box-shadow: 0 0 0 2px #b18597, 0 0.625em 0 0 #ffe3e2;
  -webkit-transform: translate3d(0, 0.75em, -1em);
  transform: translate3d(0, 0.75em, -1em);
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1),
  box-shadow 150ms cubic-bezier(0, 0, 0.58, 1),
  -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1),
  -webkit-box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}

button.learn-more:hover {
  background: #ffe9e9;
  -webkit-transform: translate(0, 0.25em);
  transform: translate(0, 0.25em);
}

button.learn-more:hover::before {
  -webkit-box-shadow: 0 0 0 2px #b18597, 0 0.5em 0 0 #ffe3e2;
  box-shadow: 0 0 0 2px #b18597, 0 0.5em 0 0 #ffe3e2;
  -webkit-transform: translate3d(0, 0.5em, -1em);
  transform: translate3d(0, 0.5em, -1em);
}

button.learn-more:active {
  background: #ffe9e9;
  -webkit-transform: translate(0em, 0.75em);
  transform: translate(0em, 0.75em);
}

button.learn-more:active::before {
  -webkit-box-shadow: 0 0 0 2px #b18597, 0 0 #ffe3e2;
  box-shadow: 0 0 0 2px #b18597, 0 0 #ffe3e2;
  -webkit-transform: translate3d(0, 0, -1em);
  transform: translate3d(0, 0, -1em);
}
