body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(100deg, rgb(252, 205, 239) 0%, rgb(252, 117, 246) 100%);
    display: flex;
    justify-content: center;
}

.container {
    width: 620px;
    max-width: 100%;
    padding: 20px 10px;
}

.card {
    background: #eee;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    overflow: hidden;
}

.card-title {
    text-align: center;
    font-weight: bold;
    font-size: 25px;
}

.hero {
    padding: 10px;
}

.banner {
    width: 100%;
    display: block;
    border-radius: 8px;
    margin-top: 15px;
}

.banner:first-of-type {
    margin-top: 10px;
}

.btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    margin: 10px;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    font-weight: bold;
}

.wa-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.download-box {
    padding: 10px;
}

.download-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    margin-bottom: 8px;
}

.download-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.android {
    background: #79b24c;
}

.ios {
    background: #d62f2f;
}

.article {
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.article h2 {
    font-size: 18px;
    margin-top: 15px;
}

.article h3 {
    font-size: 16px;
    margin-top: 15px;
}

.login-img {
    width: 100%;
    border-radius: 5px;
}

.info-card {
    padding: 15px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-header img {
    width: 50px;
}

.rating {
    font-size: 12px;
    color: #888;
}

.info-table {
    margin-top: 15px;
    font-size: 14px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #ddd;
}

.footer {
    text-align: center;
    font-size: 12px;
    padding: 10px;
    color: #777;
}

/* HERO card needs positioning so hamburger can sit inside */
.card.hero{
  position:relative;
}

/* Hamburger button */
.hamburger-btn{
  position:absolute;
  top:25px;
  left:5px;

  width:44px;
  height:44px;
  border:0;
  border-radius:10px;
  cursor:pointer;

  display:flex;
  flex-direction:column;     /* IMPORTANT */
  align-items:center;
  justify-content:center;
  gap:5px;                   /* spacing between lines */
  padding:0;
}

.hamburger-btn span{
  display:block;             /* IMPORTANT */
  width:22px;
  height:3px;
  background:#222;
  border-radius:2px;
  line-height:0;
}

/* Slide menu */
.side-menu{
  position:fixed;
  top:0;
  left:0;
  height:100vh;
  width:280px;
  background:#ffffff;
  box-shadow: 10px 0 30px rgba(0,0,0,.25);
  transform:translateX(-105%);
  transition:transform .25s ease;
  z-index:9999;
  padding:12px;
}

.side-menu a{
  display:block;
  padding:12px 10px;
  text-decoration:none;
  color:#222;
  font-weight:600;
  border-radius:10px;
}

.side-menu a:hover{
  background:#f2f2f2;
}

.menu-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 6px 12px;
  border-bottom:1px solid #eee;
  margin-bottom:10px;
}

.menu-title{
  font-weight:800;
  font-size:16px;
}

.menu-close{
  border:0;
  background:#f2f2f2;
  width:36px;
  height:36px;
  border-radius:10px;
  cursor:pointer;
  font-size:18px;
}

/* Overlay */
.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  z-index:9998;
}

/* Open state */
.side-menu.is-open{
  transform:translateX(0);
}

body.menu-lock{
  overflow:hidden;
}

/* ===========================
   GAME LIST EXPLORER â€“ GLASS (matches current website)
=========================== */
.game-explorer-section {
    margin-top: 28px;
    color: var(--text);
}

.game-explorer-container {
    /* margin: 0 auto;
    padding: 22px 18px 20px;
    border-radius: 28px;

    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);

    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 22px 70px rgba(20, 30, 60, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.65);
    position: relative;
    overflow: hidden; */
}

.game-explorer-container::before {
    content: "";
    position: absolute;
    inset: -80px;
    background:
        radial-gradient(620px 260px at 18% 18%, rgba(155, 120, 255, .14), transparent 60%),
        radial-gradient(620px 260px at 85% 35%, rgba(120, 200, 255, .12), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .14), transparent 55%);
    pointer-events: none;
}

.game-explorer-container>* {
    position: relative;
}

/* ===========================
     CONTROLS (Search + Filter)
  =========================== */
.game-explorer-controls {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
    justify-content: space-between;
}

.game-search-wrapper {
    flex: 1 1 260px;
}

.game-search-input {
    padding: 12px 14px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.40);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);

    color: rgba(11, 16, 32, .86);
    font-size: var(--text-base, 14px);
    outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.game-search-input::placeholder {
    color: rgba(11, 16, 32, .45);
}

.game-search-input:focus {
    border-color: rgba(255, 255, 255, 0.70);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.70),
        0 18px 40px rgba(20, 30, 60, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.52);
}

.game-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.game-filter-btn {
    border-radius: 999px;
    padding: 10px 12px;
    font-size: var(--text-sm, 13px);
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.34);
    color: rgba(11, 16, 32, .78);

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.game-filter-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.44);
    border-color: rgba(255, 255, 255, 0.70);
}

.game-filter-btn.active {
    border-color: rgba(255, 255, 255, 0.78);
    background:
        radial-gradient(520px 240px at 18% 20%, rgba(155, 120, 255, .14), transparent 60%),
        radial-gradient(520px 240px at 85% 35%, rgba(120, 200, 255, .12), transparent 60%),
        rgba(255, 255, 255, 0.44);
    color: rgba(11, 16, 32, .86);
}

/* ===========================
     META INFO
  =========================== */
.game-explorer-meta {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    align-items: center;
    justify-content: space-between;
    font-size: var(--text-sm, 13px);
}

.game-count-label {
    font-weight: 700;
    color: rgba(11, 16, 32, .78);
}

.game-hint-label {
    color: rgba(11, 16, 32, .55);
}

/* ===========================
     CARDS GRID
  =========================== */
.game-cards-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.game-card {
    border-radius: 18px;
    padding: 14px 14px 14px;

    background: rgba(255, 255, 255, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 18px 50px rgba(20, 30, 60, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.65);

    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 110px;
    justify-content: space-between;

    transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.game-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 22px 62px rgba(20, 30, 60, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.70);
}

.game-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.game-name {
    font-size: var(--text-base, 14px);
    font-weight: 850;
    color: rgba(11, 16, 32, .90);
    line-height: 1.25;
}

.game-type-pill {
    font-size: var(--text-xs, 12px);
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.10em;

    background: rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: rgba(11, 16, 32, .70);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

/* tags */
.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.game-tag {
    font-size: var(--text-xs, 12px);
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 750;

    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.50);
    color: rgba(11, 16, 32, .70);

    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.game-tag--lucky {
    background: rgba(120, 230, 170, 0.18);
    border-color: rgba(120, 230, 170, 0.35);
}

.game-tag--hot {
    background: rgba(255, 122, 47, 0.16);
    border-color: rgba(255, 122, 47, 0.35);
}

.game-tag--popular {
    background: rgba(120, 200, 255, 0.16);
    border-color: rgba(120, 200, 255, 0.35);
}

.game-card-footer {
    font-size: var(--text-sm, 13px);
    line-height: 1.55;
    color: rgba(11, 16, 32, .62);
}

/* ===========================
     SHOW MORE BTN
  =========================== */
.game-explorer-actions {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

.show-more-btn {
    border-radius: 999px;
    padding: 12px 16px;
    font-size: var(--text-sm, 13px);
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.40);
    color: rgba(11, 16, 32, .82);

    box-shadow: 0 18px 44px rgba(20, 30, 60, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.65);
    transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.show-more-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.48);
    border-color: rgba(255, 255, 255, 0.75);
}

/* disclaimer */
.game-explorer-disclaimer {
    margin-top: 14px;
    font-size: var(--text-sm, 13px);
    color: rgba(11, 16, 32, .55);
}

/* ===========================
     RESPONSIVE
  =========================== */
@media (max-width: 768px) {
    .game-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .game-filter-wrapper {
        justify-content: flex-start;
    }
}

/* prevent padding/border from causing overflow */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* make sure article never spills outside card */
.article {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* responsive table wrapper */
.article-table-box {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin: 16px 0;
    border-radius: 8px;
}

/* table */
.article-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    background: #f3f3f3;
    table-layout: fixed;
}

.article-table th,
.article-table td {
    padding: 14px 12px;
    text-align: left;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.7;
    color: #222;
    border-bottom: 1px solid #d9d9d9;
    word-break: break-word;
}

.article-table th {
    font-weight: 700;
    background: #efefef;
}

.article-table tbody tr:last-child td {
    border-bottom: none;
}

/* mobile */
@media (max-width: 768px) {
    .article-table {
        min-width: 480px;
    }

    .article-table th,
    .article-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .article-table {
        min-width: 430px;
    }
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 20px;
    width: 100%;
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    background: #f3f3f3;
    border: 1px solid #dddddd;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.step-text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: #222;
    text-align: center;
    white-space: nowrap;
}

.process-arrow {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    color: #d96adf; /* soft pink-purple to match your site */
    flex: 0 0 auto;
}

/* tablet / small desktop */
@media (max-width: 768px) {
    .process-flow {
        gap: 8px;
    }

    .process-step {
        padding: 9px 12px;
        min-height: 40px;
    }

    .step-text {
        font-size: 13px;
        white-space: normal;
    }
}

/* mobile: stack vertically */
@media (max-width: 480px) {
    .process-flow {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .process-step {
        width: 100%;
    }

    .process-arrow {
        align-self: center;
        transform: rotate(90deg);
    }

    .step-text {
        white-space: normal;
    }
}