/* ===== GLOBAL ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
font-family: 'Monda', sans-serif;  background-color: #f4f4f4;
  
}


.site-header {
  width: 100%;
  background: #eef1f5;
  display: flex;
  justify-content: center;
}

.header-bg {
  width: 92%;
  height: 70px;

  background: #12359f;

   clip-path: polygon(4% 0, 96% 0, 100% 0, 97% 100%, 3% 100%, 0 0);


  display: flex;
  align-items: center;

  padding-left: 50px;
  box-sizing: border-box;
}

.header-logo img {
  width: 180px;
  display: block;
}

/* fallback if path() not supported */
@supports not (clip-path: path("M 0 0 L 1 1")) {
  .header-bg {
    height: 90px;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    clip-path: polygon(4% 0, 96% 0, 100% 0, 97% 100%, 3% 100%, 0 0);
  }
}

@media (max-width: 768px) {
  .header-bg {
    width: 100%;
    height: 60px;

    padding-left: 22px;

    clip-path: polygon(
      14px 0,
      calc(100% - 14px) 0,
      100% 0,
      calc(100% - 18px) 100%,
      18px 100%,
      0 0
    );

    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }

  .header-logo img {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .header-bg {
    height: 54px;
    padding-left: 16px;
  }

  .header-logo img {
    width: 108px;
  }
}

/* ===== FEATURED GAMES SECTION ===== */
.featured-games {
  padding: 30px 60px;
}

/* HEADER FLEX */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* RIGHT SIDE BUTTON */
.section-right {
  display: flex;
  align-items: flex-start;
}

/* VIEW ALL BUTTON */
.view-all {
  padding: 8px 14px;
  background: #000000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
  white-space: nowrap;
}

.view-all:hover {
  background: #000000;
}

/* TITLE */
.featured-games .section-title {
  font-size: 26px;
  font-weight: 700;
  color: #000000;
}


@media (max-width: 768px) {
  .featured-games {
    padding: 5px 5px;
  }

  .section-header {
    gap: 10px;
  }

  .section-right {
    align-self: flex-end;
  }

  .featured-games .section-title {
    font-size: 20px;
  }

  

}
/* ================= CATEGORY SECTION ================= */

.category-section {
  width: 100%;
  background: #f4f4f4;
  box-sizing: border-box;
  overflow: hidden;
}

.category-grid {
  width: 100%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;

  box-sizing: border-box;
}

/* ================= CARD ================= */

.category-card {
  width: 100%;
  min-width: 0;
  min-height: 92px;

  background: #f5f6fa;
  border-radius: 14px;

  padding: 14px 16px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  gap: 14px;

  text-decoration: none;
  color: #000;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.25s ease;
}

.category-card:hover {
  transform: translateY(-2px);
}

/* ================= ICON ================= */

.category-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
}

.category-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ================= CONTENT ================= */

.category-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.category-info h3 {
  margin: 0 0 7px;

  font-family: "Monda", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;

  color: #000;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 58px;
  height: 24px;
  padding: 0 10px;

  border: 1px solid #000;
  border-radius: 999px;

  font-family: "Monda", sans-serif;
  font-size: 12px;
  font-weight: 700;

  color: #000;
  background: #fff;
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {
  .category-section {
    padding: 24px 12px;
  }

  .category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }

  .category-card {
    min-height: 82px;
    padding: 10px 8px;
    gap: 8px;
  }

  .category-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .category-info h3 {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .category-go {
    min-width: 45px;
    height: 22px;
    font-size: 10px;
    padding: 0 6px;
  }
}

/* ================= MOBILE - 3 GRID ================= */

@media (max-width: 600px) {
  .category-section {
    padding: 5px 5px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-card {
    min-height: 80px;
    padding: 8px;

    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

    gap: 8px;
    text-align: left;
  }

  .category-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .category-info {
    flex: 1;
    min-width: 0;
    align-items: flex-start;
  }

  .category-info h3 {
    width: 100%;

    font-size: 12px;
    margin-bottom: 4px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .category-go {
    min-width: 42px;
    height: 18px;

    padding: 0 6px;

    font-size: 9px;
    line-height: 1;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 380px) {
  .category-section {
    padding: 16px 8px;
  }

  .category-grid {
    gap: 8px;
  }

  .category-card {
    min-height: 72px;
    padding: 7px;
    gap: 6px;
  }

  .category-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .category-info h3 {
    font-size: 10px;
  }

  .category-go {
    min-width: 38px;
    height: 17px;
    font-size: 8px;
    padding: 0 5px;
  }
}

.online-games-section {
  width: 100%;
  background: #eef1f5;
  box-sizing: border-box;
}

.online-games-grid {
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 10px;
}

.online-game-card {
  position: relative;
  min-width: 0;
  text-decoration: none;
  color: #111;
}

.online-game-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: #ddd;
}

.online-game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.online-rating {
  position: absolute;
  top: 6px;
  right: 6px;

  background: #2e3b4dab;
  color: #fff;
  border-radius: 999px;

  padding: 3px 5px;
  font-size: 8px; 
  font-weight: 700;

  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.online-rating::before {
  content: "★";
  color: #ffcc00;
  font-size: 8px;
}

.online-game-title {
  display: block;
  margin-top: 8px;

  font-family: "Monda", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1400px) {
  .online-games-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .online-games-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .online-games-section {
    padding: 18px 0px;
  }

  .online-games-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .online-game-title {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .online-games-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .online-rating {
    font-size: 9px;
    padding: 2px 6px;
  }

  .online-game-title {
    font-size: 11px;
  }
}
/* ================= EDITOR CHOICE SECTION ================= */
/* ================= EDITOR CHOICE SECTION ================= */



/* ================= GRID ================= */

.editor-choice-grid {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 10px;
}

/* ================= CARD ================= */

.editor-card {
  background: #f8fafc;
  border: 1px solid #d8dee6;
  border-radius: 10px;

  padding: 14px 18px;

  display: flex;
  align-items: center;
  gap: 16px;

  text-decoration: none;
  color: #111;

  transition: 0.2s ease;
}

.editor-card:hover {
  transform: translateY(-2px);
}

/* ================= ICON ================= */

.editor-icon {
  width: 78px;
  height: 78px;

  border-radius: 8px;
  overflow: hidden;

  flex-shrink: 0;
}

.editor-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= INFO ================= */

.editor-info {
  flex: 1;
  min-width: 0;
}

.editor-title {
  display: block;

  font-family: "Monda", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.editor-category {
  display: block;

  margin-top: 6px;

  font-size: 15px;
  font-weight: 500;
  color: #8b6b35;
}

/* ================= RIGHT COLUMN ================= */

.editor-actions {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;

  gap: 12px;

  flex-shrink: 0;
}

/* ================= RATING ================= */

.editor-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.editor-rating span {
  color: #ffb800;
  font-size: 16px;
  line-height: 1;
}

.editor-rating span.empty {
  color: #a9a9a9;
}

/* ================= GET BUTTON ================= */

.editor-get {
  background: #0037a8;
  color: #fff;

  min-width: 52px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  font-family: "Monda", sans-serif;
  font-size: 15px;
  font-weight: 700;

  line-height: 1;
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {
  .editor-choice-grid {
    gap: 14px;
  }

  .editor-card {
    padding: 12px;
    gap: 12px;
  }

  .editor-icon {
    width: 65px;
    height: 65px;
  }

  .editor-title {
    font-size: 15px;
  }

  .editor-category {
    font-size: 13px;
  }

  .editor-rating span {
    font-size: 14px;
  }

  .editor-get {
    min-width: 48px;
    height: 28px;
    font-size: 13px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .editor-choice-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .editor-card {
    padding: 10px;
    gap: 10px;
  }

  .editor-icon {
    width: 60px;
    height: 60px;
  }

  .editor-title {
    font-size: 14px;
  }

  .editor-category {
    font-size: 12px;
  }

  .editor-actions {
    gap: 8px;
  }

  .editor-rating span {
    font-size: 12px;
  }

  .editor-get {
    min-width: 44px;
    height: 26px;
    font-size: 12px;
  }
}


.wrapper {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 18px 50px;
  box-sizing: border-box;
}

.wrapper .entry {
  font-family: "Monda", sans-serif;
  color: #777;
  font-size: 15px;
  line-height: 1.7;
}

/* MAIN PAGE TITLE */
.wrapper .entry > h3:first-child {
  text-align: center;
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

/* SECTION HEADINGS */
.wrapper .entry h3 {
  margin: 30px 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  text-decoration: underline;
}

/* PARAGRAPHS */
.wrapper .entry p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #777;
}

/* STRONG TEXT */
.wrapper .entry strong {
  color: #555;
  font-weight: 700;
}

/* LISTS */
.wrapper .entry ul {
  margin: 8px 0 22px;
  padding-left: 48px;
}

.wrapper .entry ul li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  font-weight: 700;
}

/* MOBILE */
@media (max-width: 768px) {
  .wrapper {
    padding: 16px 14px 36px;
  }

  .wrapper .entry {
    font-size: 13px;
    line-height: 1.65;
  }

  .wrapper .entry > h3:first-child {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .wrapper .entry h3 {
    font-size: 16px;
    margin: 24px 0 10px;
  }

  .wrapper .entry p {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .wrapper .entry ul {
    padding-left: 28px;
  }

  .wrapper .entry ul li {
    font-size: 12px;
    line-height: 1.6;
  }
}
/* ================= FOOTER BASE ================= */

.site-footer {
  background: #011447;
  color: #fff;
  border-top: 1px solid #011447;
  padding: 24px 16px 28px;
  text-align: center;
  margin-top: 10px;
}

.footer-inner {
  max-width: 950px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
}

.footer-logo img {
  width: 125px;
  height: auto;
  display: block;
}

.footer-logo span {
  font-size: 12px;
  letter-spacing: 7px;
  font-weight: 700;
  color: #fff;
}

.footer-disclaimer {
  max-width: 780px;
  margin: 0 auto 24px;
  color: #9b9b9b;
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  max-width: 540px;
  margin: 0 auto;
  background: #FFF4E01A;
  border-radius: 999px;
  padding: 12px 22px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.footer-links a {
  position: relative;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.footer-links a::before {
  content: "•";
  margin-right: 8px;
  color: #fff;
}

.footer-links a:hover {
  color: #ff5d00;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 22px 14px 26px;
  }

  .footer-logo img {
    width: 115px;
  }

  .footer-disclaimer {
    font-size: 13px;
    line-height: 1.6;
  }

  .footer-links {
    max-width: 100%;
    border-radius: 18px;
    padding: 14px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .footer-links a {
    font-size: 13px;
  }
}

.ads-tips {
  color: #999;
  font-size: 12px;
}

.ads {
  margin: 20px 0;
}
.ad-300x250 {
  max-width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-ad {
}
