@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&display=swap");
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.top-ads {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
}
.top-ads .inner {
  width: 100%;
  height: 100%;
}

.page-wrapper {
  width: 100%;
  min-height: 100vh;
  background-color: #f5f7fb;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-wrapper {
  width: 100%;
  margin: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  max-width: 384px;
}

.heading-wrapper {
  text-align: center;
  margin-bottom: 20px;
}
.heading-wrapper .heading-text {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  text-transform: capitalize;
}
@media (min-width: 640px) {
  .heading-wrapper .heading-text {
    font-size: 18px;
  }
}
.heading-wrapper .heading-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  /* sm:grid-cols-2 (default) */
}
@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Category card */
.category-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.category-card:hover {
  border-color: #2563eb;
}
.category-card span {
  font-size: 16px;
  line-height: 1;
}

.search-box {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843)), 0 1px 2px -1px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843));
  margin-bottom: 24px;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0;
  font-size: 14px;
  color: #000000;
  background: transparent;
}

.game-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.game-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843)), 0 1px 2px -1px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843));
  transition: box-shadow 0.2s ease;
}
.game-card:hover {
  box-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843)), 0 2px 4px -2px var(--tw-shadow-color, rgba(0, 0, 0, 0.1019607843));
}
.game-card a {
  text-decoration: none;
}

/* Image wrapper */
.game-image {
  position: relative;
  aspect-ratio: 1/1;
}
.game-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Body */
.game-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
}

/* Info section */
.game-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Title */
.game-title {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Meta */
.game-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #6b7280;
}

.users {
  display: flex;
  align-items: center;
}
.users svg {
  margin-right: 4px;
  color: #00c950;
}

.users-count {
  font-weight: 700;
  color: #22c55e;
}

/* Entry */
.entry {
  display: flex;
  align-items: center;
  font-weight: 700;
}
.entry svg {
  margin: 0.25rem;
}

/* Play button */
.play-btn {
  width: 100%;
  padding: 12px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #00d7d9;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.play-btn:hover {
  background-color: lab(77.8288% -44.0734 -14.1405 / 0.9);
}
.play-btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.loading {
  grid-column: span 2/span 2;
  width: 100%;
}

.ad-block {
  grid-column: span 2/span 2;
  width: 100%;
  margin: 16px 0;
}

.footer-ad-wrapper {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}
.footer-ad-wrapper .footer-inner {
  width: 100%;
  height: 100%;
}

.about-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

/* Title */
.about-title {
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

/* Section */
.about-section {
  margin-bottom: 16px;
}

/* Section heading */
.about-heading {
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

/* Paragraph */
.about-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.625;
}

/* Link */
.about-link {
  display: block;
  margin-top: 8px;
  text-align: center;
  font-weight: 600;
  color: #00d7d9;
  text-decoration: none;
}

.no-data {
  grid-column: span 2/span 2;
  text-align: center;
  font-size: 16px;
  color: #6b7280;
}/*# sourceMappingURL=style.css.map */