* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --header-h: 70px;
  /* your fixed header height */
}

/* Sticky footer layout */
html,
body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  /* full screen on mobile too */
}

body {
  font-family: 'Roboto', sans-serif;
  background: #1a001f;
  color: white;
}

/* ===== Header (desktop unchanged) ===== */
header {
  background: #000;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1101;
}

body {
  padding-top: var(--header-h);
}

.logo img {
  height: 80px;
}

.site-nav {
  display: flex;
}

.site-nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.header-buttons{
  display: flex;
  align-items: center;
  gap: 12px;                         /* use gap instead of margins */
  flex: 0 0 auto;                    /* don't grow/shrink weirdly */
  white-space: nowrap;               /* keep text on one line */
}

.header-buttons a {
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

.download-btn {
  background: #f2c45f;
  color: #000;
}

.register-btn {
  background: #00cc66;
  color: #fff;
  position: relative;
  animation: regPulseSoft 1.8s ease-in-out infinite;
  box-shadow: 0 8px 16px rgba(0,0,0,.18);
  filter: none;
}

.register-btn i {
  margin-right: 6px;
}

/* smaller, subtler glow */
.register-btn{
  --g-soft:   rgba(0, 230, 140, .40);
  --g-strong: rgba(0, 230, 140, .65);

  box-shadow:
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 10px 18px rgba(0,0,0,.20),
    0 0 20px var(--g-soft);                 /* was 28px */

  filter: drop-shadow(0 0 8px var(--g-soft))  /* was 10px */
          drop-shadow(0 0 14px var(--g-soft));/* was 18px */
}

@keyframes regPulseSoft{
  0%,100%{
    transform: scale(1);
    box-shadow:
      0 0 0 1px rgba(255,255,255,.12) inset,
      0 10px 18px rgba(0,0,0,.20),
      0 0 20px var(--g-soft);
    filter: drop-shadow(0 0 8px var(--g-soft))
            drop-shadow(0 0 14px var(--g-soft));
  }
  50%{
    transform: scale(1.05); /* was 1.06 */
    box-shadow:
      0 0 0 1px rgba(255,255,255,.14) inset,
      0 12px 22px rgba(0,0,0,.24),
      0 0 24px var(--g-strong);            /* was 48px */
    filter: drop-shadow(0 0 5px var(--g-strong)) /* was 14px */
            drop-shadow(0 0 10px var(--g-strong));/* was 24px */
  }
}

/* hover: match the reduced peak */
.register-btn:hover{
  box-shadow:
    0 0 0 1px rgba(255,255,255,.14) inset,
    0 12px 22px rgba(0,0,0,.24),
    0 0 34px var(--g-strong);
  filter: drop-shadow(0 0 10px var(--g-strong))
          drop-shadow(0 0 18px var(--g-strong));
}



/* Hamburger button (hidden on desktop) */
.hamburger {
  display: none;
  width: 34px;
  height: 28px;
  padding: 0;
  margin-right: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3.5px;
  border-radius: 3px;
  background: #fff;
}

.hamburger span+span {
  margin-top: 6px;
}

/* ===== Mobile layout ===== */
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 768px) {
  header {
    padding: 12px 16px;
  }

  .logo img {
    height: 60px;
  }

  /* show burger, hide desktop nav */
  .hamburger {
    display: block;
    order: -1;
  }

  /* put at far left */
  .site-nav {
    display: none;
  }

  /* pill buttons like screenshot */
  .header-buttons a {
    padding: 6px 14px;
    border-radius: 24px;
    font-size: 14px;
  }

  /* mobile drawer */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 76%;
    max-width: 320px;
    background: #111;
    color: #fff;
    padding: 80px 20px 20px;
    /* leave room for header */
    display: flex;
    flex-direction: column;
    gap: 14px;
    transform: translateX(-100%);
    transition: transform .25s ease;
    z-index: 9999;
  }

  .mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 999;
  }

  /* open state */
  body.menu-open .mobile-menu {
    transform: translateX(0);
  }

  body.menu-open .menu-backdrop {
    display: block;
  }
}

/* Prevent scroll when menu open */
body.menu-open {
  overflow: hidden;
}


/* Hero Section */
.hero {
  background: url('/assets/cover-background2.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 350px 160px;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  min-height: 600px;
  z-index: 1;
}

.hero-content {
  max-width: 50%;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #f2c45f;
  font-size: 36px;
  margin-bottom: 10px;
  padding-top: 40px;
  text-transform: uppercase;
}

.hero p {
  max-width: 500px;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero a {
  color: #bde1ff;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.hero-buttons .btn {
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.btn-telegram {
  background: #1da1f2;
  color: white;
}

.btn i {
  margin-right: 5px;
}

/* ---------- TABLET & MOBILE ---------- */
@media (max-width: 768px) {
  /* Hero stacks and has normal spacing */
  .hero {
    background: url('/assets/cover-background2-dark.jpg');
    background-position: 70% 50%;
    padding: 32px 16px 56px;
    min-height: auto;
    flex-direction: column;
    justify-content: center;
    text-align: center;

  }

  .hero-content {
    max-width: 100%;
    text-align: left;
  }

  .hero h1 {
    font-size: 26px;
    margin-top: 25px;
    margin-bottom: 6px;
    text-align: center;
  }

  .hero p {
    max-width: none;
    font-size: 14px;
    margin: 0 auto 12px;
    line-height: 1.6;
    text-align: justify;
  }

  .hero-buttons {
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero-buttons .btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}

/* Default (desktop/tablet): show full text, hide links */
.toggle-link{ display:none; }

/* Mobile-only behavior */
@media (max-width: 768px){
  .hero-intro{ margin-bottom: 10px; }

  /* Clamp only the span so the link can remain inline */
  .hero-intro .clamp{
    display: -webkit-box;
    -webkit-line-clamp: 2;              /* show 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Hide the rest until expanded */
  .hero-more{ display: none; }

  /* Inline link style */
  .toggle-link{
    display: inline;
    white-space: nowrap;
    margin-left: .25em;
    font-weight: 700;
    font-size: 13px;
    color: #f2c45f;
    text-decoration: none;
  }
  .toggle-link:hover{ text-decoration: underline; }

  /* Add ellipsis before "Read more" */
  .more-link::before{ content: "… "; }

  /* Expanded state: show second paragraph, un-clamp first, swap links */
  .hero.is-expanded .hero-intro .clamp{
    -webkit-line-clamp: unset;
    display: inline;
  }
  .hero.is-expanded .hero-more{ display: block; }
  .hero.is-expanded .more-link{ display: none; }
  .hero.is-expanded .less-link{ display: inline; }
}


/* === Game Section (unchanged) === */
.game-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: -60px;
  padding: 0 20px 60px;
  position: relative;
  z-index: 2;


}

/* Hide the old placeholder bar */
.cloud-icon {
  display: none;
}

/* ---- IMAGE CARDS ---- */
.game-card {
  --bg: none;
  /* set per card below */
  width: 200px;
  height: 340px;
  /* fixed height for nice crops */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  /* centers the text */
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.18);
}

/* background image */
.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg) center/cover no-repeat;
  filter: saturate(1.05) contrast(1.02);
}

/* dark veil for text readability */
.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .55));
}

/* centered label */
.game-card-content {
  position: relative;
  /* above image */
  z-index: 1;
}

.game-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
}

/* optional arrow on the Explore card */
.explore-arrow {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
}

/* ---- Set images per category ---- */
.game-card.fishing {
  --bg: url('/assets/pussy888-fishing.jpg');
}

.game-card.table {
  --bg: url('/assets/pussy888-card-and-table.jpg');
}

.game-card.arcade {
  --bg: url('/assets/pussy888-arcade.jpg');
}

.game-card.slot {
  --bg: url('/assets/pussy888-slot.jpg');
}

.game-card.explore {
  --bg: linear-gradient(to bottom, #f2c45f, #4a7903);
}

.stretched-link {
  text-decoration: none;
  color: white;
}

/* keep the desktop overlap only on wide screens */
@media (min-width: 769px) {
  .game-section {
    margin-top: -60px;
    /* pull cards up over hero */
    position: relative;
    z-index: 2;
  }
}

/* Smaller game cards on mobile */
@media (max-width: 768px) {
  .game-section {
    display: grid !important;
    /* ensure grid on mobile */
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    /* narrower columns */
    gap: 8px;
    padding: 0 10px 20px;
    margin-top: 16px;
    position: static;
    z-index: auto;
  }

  .game-card {
    width: 100%;
    height: auto;
    /* override the desktop 340px */
    aspect-ratio: 3 / 4;
    /* shorter card (was ~3/5.6) */
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .12);
  }

  .game-card h3 {
    font-size: 12px;
    line-height: 1.2;
  }

  .explore-arrow {
    font-size: 14px;
  }
}

/* Hidden by default; shown only on mobile */
.game-section-m{ display: none; }

/* ===== Mobile only ===== */
@media (max-width: 768px){
  /* Hide the existing grid section on mobile */
  .game-section{ display: none !important; }

  /* Show the new carousel */
  .game-section-m{
    display: block;
    margin-top: 16px;
    padding: 0 10px 20px;
    position: relative;
  }

  /* Track: horizontal snap-scroller */
  .gm-track{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 72%;           /* visible width per card (tweak 65–80%) */
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 40px;                /* space for arrows */
    -webkit-overflow-scrolling: touch;
  }
  .gm-track::-webkit-scrollbar{ height: 8px; }
  .gm-track::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,.15); border-radius: 10px;
  }

  /* Cards */
  .mcard{
    --bg: none;
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.2;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg) center/cover no-repeat;
    box-shadow: 0 3px 8px rgba(0,0,0,.16);
    scroll-snap-align: center;
    color: #fff;
    text-decoration: none;
  }
  .mcard::after{
    content:"";
    position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.5));
  }
  .mcard .label{
    position: absolute; inset: 0;
    display: grid; place-items: center;
    text-align: center;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.2;
    padding: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,.6);
    z-index: 1;
  }
  .mcard .arrow{
    position: absolute; bottom: 10px; right: 12px;
    font-size: 18px; font-weight: 700; z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,.6);
  }

  /* Explore: gradient background instead of image */
  .mcard.explore{
    background: linear-gradient(to bottom, #f2c45f, #4a7903);
  }
  .mcard.explore::after{
    background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.18));
  }
  .mcard.explore .label, .mcard.explore .arrow{
    color:#1a1a1a; text-shadow:none;
  }

  /* Arrows */
  .gm-nav{
    display: block;
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 34px; height: 34px;
    border: 0; border-radius: 50%;
    background: #222; color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,.45);
    z-index: 3;
  }
  .gm-nav.prev{ left: 6px; }
  .gm-nav.next{ right: 6px; }
}

/* Set images per category (reuse your assets) */
.mcard.fishing { --bg: url('/assets/pussy888-fishing.jpg'); }
.mcard.table   { --bg: url('/assets/pussy888-card-and-table.jpg'); }
.mcard.arcade  { --bg: url('/assets/pussy888-arcade.jpg'); }
.mcard.slot    { --bg: url('/assets/pussy888-slot.jpg'); }


/* About Section */
.about-section {
  background-color: #4a1a0a;
  /* deep brown background */
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.about-content {
  max-width: 1300px;
  margin: 0 auto 40px;
}

.about-content h4 {
  font-size: 18px;
  color: #fff0c0;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 28px;
  color: #f2c45f;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.6;
}

.about-content strong {
  font-weight: bold;
  color: #fff;
}

.about-content li {
  font-size: 14px;
}

.about-image img {
  width: 40%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .about-image img {
    width: 100%;
  }
}

/* ===== Trust / Curacao Section ===== */
.trust-section {
  position: relative;
  isolation: isolate;
  padding: 60px 5%;
  background: url('/assets/curacao-bridge.jpg') center/cover no-repeat;
}

/* dark desaturated overlay like the screenshot */
.trust-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .8);
  /* charcoal veil */
  mix-blend-mode: multiply;
  z-index: 0;
}

.trust-wrap {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: center;
}

/* left badge card */
.trust-badge {
  width: 100%;
  max-width: 360px;
  display: block;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  padding: 18px;
}

/* right copy */
.trust-right h2 {
  font-size: 32px;
  line-height: 1.25;
  color: #f2c45f;
  /* gold title like screenshot */
  margin: 0 0 16px;
  font-weight: 800;
}

.trust-right p {
  color: rgba(255, 255, 255, .92);
  line-height: 1.7;
  font-size: 14px;
}

.trust-right strong {
  color: #fff;
  text-decoration: underline;
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .trust-wrap {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .trust-badge {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .trust-section {
    padding: 40px 6%;
  }

  .trust-right h2 {
    font-size: 24px;
  }

  .trust-right p {
    font-size: 14px;
  }
}

/* === Feature Section === */
.feature-rows {
  background: #4b160f;
  /* deep brown background */
  padding: 80px 7%;
}

.feature-row {
  display: grid;
  grid-template-columns: 40% 60%;
  /* image 40% / text 60% */
  align-items: center;
  gap: 40px;
  margin-bottom: 120px;
  max-width: 1300px;
  margin: 0 auto;
}

.feature-row.reverse {
  padding-top: 70px;
  grid-template-columns: 60% 40%;
  /* text 60% / image 40% */
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-row.reverse .feature-copy {
  order: 1;
}

/* image card */
.feature-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

/* text */
.feature-copy h3 {
  color: #f2c45f;
  font-size: 28px;
  line-height: 1.3;
  margin: 0 0 14px;
  font-weight: 800;
}

.feature-copy p {
  color: #ffffff;
  opacity: .92;
  line-height: 1.7;
  font-size: 14px;
}

.feature-copy li {
  font-size: 14px;
  line-height: 1.7;
}

/* responsive */
@media (max-width: 820px) {

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    /* stack on mobile */
    margin-bottom: 70px;
  }

  .feature-row.reverse .feature-media {
    order: 0;
  }

  .feature-copy h3 {
    font-size: 22px;
  }
}

/* ===== Fishing Gameplay Promo ===== */
.fishing-promo {
  background: #4b160f;
  /* deep brown like the page */
  padding-top: 70px;
  text-align: center;
}

.fishing-promo h2 {
  color: #f2c45f;
  /* gold heading */
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 18px;
  font-weight: 800;
}

.fishing-promo p {
  max-width: 980px;
  margin: 0 auto 28px;
  color: #ffffff;
  opacity: .95;
  line-height: 1.5;
  font-size: 14px;
}

.fishing-promo p strong {
  color: #fff;
  text-decoration: underline;
}

/* voucher row */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  justify-items: center;
  margin: 0px auto 20px;
}

.ticket {
  display: block;
  width: 100%;
  max-width: 260px;
  /* matches screenshot width */
  border: 6px solid #152b46;
  /* dark navy border */
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
  transition: transform .18s ease, box-shadow .18s ease;
}

.ticket img {
  display: block;
  width: 100%;
  height: auto;
}

.ticket:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .45);
}

/* CTA */
.fp-cta {
  display: inline-block;
  margin-top: 6px;
  background: #f2c45f;
  /* gold button */
  color: #1b1b1b;
  padding: 12px 28px;
  border-radius: 24px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(242, 196, 95, .35);
  transition: transform .18s ease, background .18s ease;
}

.fp-cta:hover {
  background: #e2b026;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .fishing-promo {
    padding: 0px;
  }

  .fishing-promo h2 {
    font-size: 26px;
  }

  .ticket-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Fishing Gameplay Banner ===== */
.fish-banner {
  position: relative;
  isolation: isolate;
  min-height: 480px;
  padding: 84px 6%;
  background: url('/assets/cta-background.jpg') left center / cover no-repeat;

  /* center the inner block vertically */
  display: flex;
  align-items: center;
  /* vertical centering */
}

/* dark veil for readability */
.fish-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 20, .55);
  z-index: 0;
}

.fish-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  /* text block width like shot */
  margin-left: auto;
  /* push to the right side */
  color: #e9eef2;
}

.fish-inner h2 {
  color: #f2c45f;
  /* gold title */
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 12px;
}

.fish-inner p {
  opacity: .95;
  margin: 0 0 16px;
  font-size: 14px;
}

/* buttons */
.fish-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  color: #fff;
}

.btn-pill.wa {
  background: #25d366;
}

.btn-pill.tg {
  background: #1da1f2;
}

.btn-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px
}

/* === Footer Section === */
.site-footer {
  background: #151515;
  color: #d7d7d7;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top grid */
.site-footer .footer-wrap:first-of-type {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  /* brand | links | pay */
  gap: 36px;
  align-items: start;
  padding-bottom: 18px;
}

/* vertical dividers like screenshot */
.footer-col {
  padding: 8px 24px;
  position: relative;
}

.footer-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, .08);
}

/* Brand block */
.ft-logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
}

.ft-small {
  font-size: 13px;
  color: #bfbfbf;
  margin: 6px 0;
}

.ft-small.label {
  margin-top: 12px;
}

.reg-logos {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 8px 0 12px;
}

.reg-logos img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;

}

.social .ft-small {
  margin-right: 6px;
}

.social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #232323;
  color: #eaeaea;
  font-size: 13px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  text-decoration: none;
}

.social a:hover {
  transform: translateY(-2px);
  background: #2c2c2c;
  color: #fff;
}

/* Links */
.ft-title {
  color: #e9e9e9;
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 16px;
}

.links-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ft-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-list li {
  margin: 8px 0;
  font-size: 14px;
}

.ft-list a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
}

.ft-list a:hover {
  color: #ffffff;
}


/* Payment methods */
.footer-pay .pay-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.pay-logos img {
  height: 26px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) brightness(1.1);
  opacity: .9;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 18px;
}

.copy {
  text-align: center;
  font-size: 12px;
  color: #b9b9b9;
  padding: 10px 0 16px;
}



/* Responsive */
@media (max-width: 980px) {
  .site-footer .footer-wrap:first-of-type {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col {
    padding: 0;
  }

  .footer-col::after {
    display: none;
  }

  .links-split {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}


/* ===== Game Page ===== */

/* ===== Game Hero ===== */
.game-hero {
  position: relative;
  min-height: 48vh;
  display: grid;
  place-items: center;
  padding: 80px 20px;
  overflow: clip;
  isolation: isolate;
}

/* Background: image -> blur -> dark veil */
.game-hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('/assets/pussy888-game-dark.png') center/cover no-repeat;
  z-index: -2;
  filter: blur(2px) saturate(1.05);
  transform: scale(1.03);
  /* hide blur edges */
}

.game-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .25), rgba(0, 0, 0, .55) 60%, rgba(0, 0, 0, .75));
  z-index: -1;
}

.game-hero__inner {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  color: #dfe7ef;
}

.game-hero__title {
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 4.2vw, 40px);
  line-height: 1.15;
  color: #ffd36e;
  /* warm gold like screenshot */
  text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
  margin: 0 0 0;
  letter-spacing: .2px;
  margin-bottom: 10px;
}

.game-hero__sub {
  margin: 0 auto 24px;
  font-size: clamp(12px, 1.6vw, 14px);
  line-height: 1.7;
  color: #e7eef6;
  opacity: .95;
}

.game-hero__sub a {
  color: #bde1ff;
  text-decoration: none;
  border-bottom: 1px dotted rgba(189, 225, 255, .55);
}

.game-hero__sub a:hover {
  opacity: .9;
}

/* Buttons row */
.game-hero__cta {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

/* Base button */
.btn {
  --pad-x: 18px;
  --pad-y: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  backdrop-filter: saturate(1.1);
}

.btn i {
  font-size: 16px;
}

/* WhatsApp button */
.btn-wa {
  background: #25D366;
  color: #ffffff;
}

.btn-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, .35);
}

/* Telegram button */
.btn-tg {
  background: #229ED9;
  color: #ffffff;
}

.btn-tg:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(34, 158, 217, .35);
}

/* Spacing tweak for very small screens */
@media (max-width: 430px) {
  .btn {
    --pad-x: 14px;
    --pad-y: 10px;
    font-size: 14px;
  }

  .game-hero {
    min-height: 50vh;
    padding: 40px 16px;
  }
}

/* Optional: constrain hero below your fixed header if any */
body>header+.game-hero {
  scroll-margin-top: 80px;
}

/* ===== Top Picks (match screenshot) ===== */
.top-picks {
  background: #4b0e09;
  /* deep maroon */
  padding: 70px 5%;
  color: #fff;
}

.tp-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  /* left grid ~520, right fluid */
  gap: 56px;
  align-items: start;
}

/* Left grid */
.tp-grid {
  display: grid;
  grid-template-columns: repeat(2, 200px);
  /* was repeat(2, 1fr) */
  gap: 16px;
  /* tighter spacing */
  justify-content: center;
  /* center the grid in its container */
  align-content: center;
  height: 100%;
}

/* Card must be the positioning context */
.tp-card {
  position: relative;
  /* <-- key fix */
  display: block;
  text-decoration: none;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #3b0703, #120302);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
  transition: transform .18s ease, box-shadow .18s ease;
}

.tp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .45);
}

/* Image fills the square */
.tp-card img {
  display: block;
  /* remove alt-text layout quirks */
  width: 100%;
  aspect-ratio: 1 / 1;
  /* square tiles */
  object-fit: cover;
  filter: contrast(1.02) saturate(1.05);
  border-radius: 18px;
}

/* Badge pinned to bottom-left of the tile (not full width) */
.tp-card span {
  position: absolute;
  left: 10px;
  /* <-- instead of inset */
  bottom: 10px;
  /* <-- instead of inset */
  background: linear-gradient(180deg, #2b2b2b, #0d0d0d);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .2px;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .35);
  pointer-events: none;
  /* clicks go to the card */
}

/* remove blue link color/underline on the card */
.tp-card:link,
.tp-card:visited {
  color: inherit;
  text-decoration: none;
}


.tp-copy {
  display: flex;
  flex-direction: column;
  align-items: left;
  /* center horizontally */
  justify-content: center;
  /* center vertically */
  text-align: left;
  /* center text */
  height: 100%;
  /* fill the column height */
}


/* Right copy area */
.tp-copy h2 {
  margin: 6px 0 18px;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: .6px;
  color: #f2bc36;
  /* gold */
}

.tp-copy p {
  color: #e9e1d2;
  line-height: 1.15;
  margin: 0 0 22px;
}

.tp-copy li {
  color: #e9e1d2;
  line-height: 1.15;
}

/* Gold pill button */
.btn-gold {
  display: inline-block;
  background: #e9b23a;
  color: #2a1a00;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(233, 178, 58, .35);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  width: fit-content;
  /* ✅ shrink to text */

}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(233, 178, 58, .45);
}

/* Responsive */
@media (max-width: 980px) {
  .tp-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tp-grid {
    max-width: 520px;
  }
}

@media (max-width: 520px) {
  .tp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .tp-card span {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* ===== Popular Panel (matches screenshot) ===== */
.popular-panel {
  background: #4b0e09;
  /* maroon page background */
  padding: 40px 5% 80px;
}

/* inner rounded card */
.pp-box {
  margin: 0 auto;
  background: #0f151a;
  /* near-black panel */
  border-radius: 28px;
  padding: 28px 36px 34px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
  max-width: 1300px;
}

/* title */
.pp-title {
  text-align: center;
  margin: 4px 0 18px;
  font-weight: 900;
  font-size: clamp(22px, 3.2vw, 34px);
  color: #f2c24d;
  /* gold */
  letter-spacing: .3px;
}

/* paragraph */
.pp-desc {
  margin: 0 auto 18px;
  color: #eaf2ff;
  line-height: 1.65;
  font-size: clamp(14px, 1.6vw, 16px);
  text-align: center;
  /* like the screenshot */
}

/* grid of small square icons */
.pp-grid {
  display: grid;
  grid-template-columns: repeat(6, 120px);
  /* was repeat(6, 1fr) */
  gap: 16px;
  /* tighter spacing */
  justify-content: center;
  /* center within container */
}

.pp-item {
  display: block;
  aspect-ratio: 1/1;
  /* perfect square */
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(120% 120% at 20% 15%, #2a2a2a, #121212);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .45), inset 0 0 0 1px rgba(255, 255, 255, .06);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.pp-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.pp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* responsive */
@media (max-width: 980px) {
  .pp-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 760px) {
  .pp-box {
    padding: 22px 20px 26px;
    border-radius: 22px;
  }

  .pp-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .pp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

/* ===== 12-card High Payout Section ===== */
.payouts-12 {
  background: #4b0e09;
  /* maroon page bg */
  padding: 44px 5% 70px;
}

.p12-wrap {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.p12-title {
  margin: 0 0 14px;
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 40px);
  color: #f2c24d;
  /* gold */
  letter-spacing: .3px;
}

.p12-desc {
  max-width: 920px;
  margin: 0 auto 26px;
  color: #eef6ff;
  line-height: 1.65;
  font-size: clamp(14px, 1.6vw, 16px);
}

.payouts-12 {
  text-align: center;
  font-size: 12px;
}

/* Grid: 6 columns x 2 rows on desktop */
.p12-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:22px;
  justify-items:stretch;          /* cards fill their cell */
  /* optional page padding */
  /* padding: 0 10px; */
}

@media (max-width: 768px) {
  .p12-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Card */
.p12-card{
  --rtpH: 44px;                   /* RTP bar height (desktop) */
  display:flex;
  flex-direction:column;
  gap:12px;
  width:100%;
  background: linear-gradient(180deg,#4b0e09,#2a0504);
  border-radius:14px;
  padding:14px;                   /* red margin around poster + bar */
  box-shadow:
    0 14px 32px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.06);
  overflow:hidden;
  text-decoration: none;
  color: inherit;
}

.p12-card img{
  left: 0;                                  /* no 8px inset */
  right: 0;
  top: 0;
  bottom: var(--rtpH);                      /* only leave space for the bar */
  width: 100%;
  height: calc(100% - var(--rtpH));
  object-fit: contain;                      /* keep whole image visible */
  background: transparent;                  /* remove letterbox tint */
  border-radius: 10px 10px 0 0;             /* match card edges above bar */
}

/* RTP red bar pinned to bottom, not overlapping image */
.p12-card .rtp{
  height:var(--rtpH);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background: linear-gradient(180deg,#b0191e 0%,#8f1317 100%);
  color:#fff;
  font-weight:800;
  font-size:14px;
  letter-spacing:.2px;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.09),
    0 6px 18px rgba(0,0,0,.35);
  /* keep text crisp on scaled screens */
  -webkit-font-smoothing:antialiased;
}


@media (max-width: 420px) {
  .p12-card {
    --rtpH: 30px;
  }

  /* smaller bar on tiny screens */
}

/* ===== Play Demo (matches screenshot) ===== */
.demo-panel {
  background: #4b0e09;
  /* page maroon */
  padding: 50px 5%;
}

.demo-box {
  max-width: 1300px;
  margin: 0 auto;
  background: #121212;
  /* dark card */
  border-radius: 16px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 520px 1fr;
  /* img left, text right */
  gap: 28px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

.demo-left img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
}

.demo-right {
  text-align: center;
  color: #fff;
}

.demo-title {
  margin: 0 0 14px;
  font-weight: 900;
  font-size: clamp(20px, 2.6vw, 26px);
  color: #f2c24d;
  /* gold */
  letter-spacing: .2px;
}

/* grey rounded chip with text */
.demo-cred {
  display: inline-block;
  background: #2d2d2d;
  color: #fff;
  padding: 16px 22px;
  border-radius: 14px;
  width: 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.demo-line {
  font-weight: 800;
  font-size: 14px;
  line-height: 1.9;
}

.demo-line b {
  margin-right: 6px;
}

/* Responsive stack */
@media (max-width: 900px) {
  .demo-box {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .demo-cred {
    min-width: 0;
    width: 100%;
  }
}

/* ===== Gameplay (matches screenshot) ===== */
.gp-section {
  background: #000;
  /* black strip */
  padding: 48px 5% 64px;
  color: #fff;
}

.gp-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 560px 1fr;
  /* video | copy */
  gap: 180px;
  align-items: center;
}

/* Video */
.gp-video {
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(#e8f6ff, #d8eefc);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .45);
}

.gp-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* left column */
.gp-icon {
  width: 56px;
  height: 56px;
  border-radius: 0px;
  display: block;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .45);
  margin-bottom: 10px;
  object-fit: cover;
}

.gp-title {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: clamp(22px, 3.2vw, 36px);
  color: #f2c24d;
  /* gold */
  letter-spacing: .2px;
}

.gp-desc {
  max-width: 560px;
  line-height: 1.7;
  color: #e8eef5;
  margin: 0 0 16px;
}

.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  /* tight pill */
  border-radius: 999px;
  background: #e9b23a;
  color: #2a1a00;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 10px 24px rgba(233, 178, 58, .35);
  transition: transform .18s ease, box-shadow .18s ease;
}

.gp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(233, 178, 58, .45);
}

@media (max-width: 900px) {
  .gp-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== Fishing Gameplay (video left, text right) ===== */
.fp-section {
  background: #4b0e09;
  padding: 48px 5% 64px;
  color: #fff;
}

.fp-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 44px;
  align-items: center;
  grid-template-areas: "left right";
}

/* Video */
.fp-video {
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(#e8f6ff, #d8eefc);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .45);
}

.fp-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Right column */
.fp-icon {
  width: 56px;
  height: 56px;
  border-radius: 0px;
  display: block;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .45);
  margin-bottom: 10px;
  object-fit: cover;
}

.fp-title {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: clamp(22px, 3.2vw, 36px);
  color: #f2c24d;
  /* gold */
  letter-spacing: .2px;
}

.fp-desc {
  line-height: 1.7;
  color: #e8eef5;
  margin: 0 0 16px;
}

/* Small pill button that hugs text */
.fp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  /* tight pill */
  border-radius: 999px;
  background: #e9b23a;
  color: #2a1a00;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 10px 24px rgba(233, 178, 58, .35);
  transition: transform .18s ease, box-shadow .18s ease;
}

.fp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(233, 178, 58, .45);
}

.fp-left {
  grid-area: left;
}

.fp-right {
  grid-area: right;
}

/* Responsive */
@media (max-width: 768px) {
  .fp-wrap {
    grid-template-columns: 2fr;
    gap: 28px;
    grid-template-areas:
      "right"
      "left";
  }
}

/* ===== Download page ===== */

/* ===== APK card ===== */
.apk-sec {
  background: #4b0e09;
  /* page maroon */
  padding: 42px 5% 70px;
  color: #fff;
}

.apk-card {
  max-width: 1080px;
  margin: 0 auto;
  background: #1a1a1a;
  /* dark panel */
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  padding: 26px 30px 32px;
}

/* header */
.apk-header {
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
}

.apk-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .45);
}

.apk-headtxt {
  line-height: 1.2;
}

.apk-title {
  font-size: clamp(20px, 2.8vw, 24px);
  font-weight: 900;
  margin: 0 0 4px;
}

.apk-dev {
  color: #cfd6df;
  font-size: 14px;
}

.apk-ver {
  color: #9aa4af;
  font-size: 13px;
  margin-top: 2px;
}

.apk-stars {
  color: #ffc94d;
  margin-top: 6px;
  font-size: 16px;
}

/* smaller on mobile */
@media (max-width: 768px) {
  .apk-stars {
    font-size: 12px;
  }
}

.apk-stars .fa-star-half-stroke {
  margin-left: 2px;
}

/* green download button */
.apk-btn {
  margin-left: auto;
  background: #00ab52;
  /* exact green */
  color: #08190e;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 171, 82, .35);
  transition: transform .15s ease, box-shadow .15s ease;
}

.apk-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 171, 82, .45);
}

.apk-sep {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin: 16px 0 18px;
}

/* stats */
.apk-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.apk-stat i {
  color: #a6b1bc;
  margin-bottom: 6px;
  font-size: 18px;
}

.apk-stat small {
  display: block;
  color: #a6b1bc;
  font-size: 12px;
  letter-spacing: .2px;
}

.apk-stat b {
  display: block;
  margin-top: 2px;
  font-size: 18px;
  font-weight: 900;
  color: #f2f5f8;
}

/* carousel */
.apk-subttl {
  margin: 12px 0 10px;
  font-size: 18px;
}

.apk-carousel {
  position: relative;
  margin-bottom: 22px;
}

.apk-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 34px;
  /* space for arrows */
}

.apk-track::-webkit-scrollbar {
  height: 8px;
}

.apk-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .15);
  border-radius: 10px;
}

.apk-track img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  scroll-snap-align: start;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .4);
  background: #0f151a;
}

/* arrows */
.apk-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #222;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .45);
}

.apk-nav.prev {
  left: 6px;
}

.apk-nav.next {
  right: 6px;
}

/* specs table and descriptions */
.apk-specs {
  margin-top: 10px;
}

.apk-specs h3 {
  margin: 16px 0 10px;
  font-size: 20px;
}

.apk-table {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}

.apk-table .row {
  display: grid;
  grid-template-columns: 260px 1fr;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.apk-table .row:first-child {
  border-top: 0;
}

.apk-table span {
  color: #cfd6df;
}

.apk-table b {
  color: #fff;
  font-weight: 800;
}

.apk-specs p {
  color: #e6ecf6;
  line-height: 1.7;
  margin: 0 0 16px;
  font-size: 14px;
}

.apk-specs li {
  color: #e6ecf6;
  line-height: 1.7;
  margin: 0 0 16px;
  font-size: 14px;
}

/* responsive */
@media (max-width: 860px) {
  .apk-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .apk-table .row {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
}

@media (max-width: 560px) {
  .apk-header {
    align-items: flex-start;
  }

  .apk-btn {
    margin-top: 8px;
  }

  .apk-track img {
    height: 140px;
  }
}

/* ===== Reviews (inside .apk-card) ===== */
.apk-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.rv-card {
  background: #ffffff;
  color: #0f1113;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.rv-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.rv-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eee6dc;
  /* soft beige like shot */
  display: grid;
  place-items: center;
}

.rv-avatar i {
  color: #000;
  font-size: 18px;
}

.rv-meta {
  line-height: 1.15;
}

.rv-name {
  font-weight: 800;
}

.rv-stars {
  color: #ffc94d;
  font-size: 12px;
  margin-top: 2px;
}

.rv-date {
  color: #8d96a2;
  font-size: 12px;
  margin-top: 2px;
}

.rv-text {
  margin: 0;
  color: #2a2f35;
  line-height: 1.6;
  font-size: 14px;
}

/* responsive */
@media (max-width: 980px) {
  .apk-reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .apk-reviews {
    grid-template-columns: 1fr;
  }
}

/* ===== Bonus ===== */
.bonus-sec {
  background: #4b0e09;
  /* page maroon */
  padding: 48px 5% 72px;
  color: #fff;
}

.bonus-sec p {
  font-size: 14px;
}

.bonus-box {
  max-width: 1040px;
  margin: 0 auto;
  background: #121212;
  /* outer panel */
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  padding: 28px 34px 34px;
}

.bn-title {
  text-align: center;
  margin: 0 0 8px;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 34px);
  color: #f2c24d;
  /* gold */
}

.bn-sep {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
  margin: 10px 0 18px;
}

/* bonus card */
.bn-card {
  background: #2a2a2a;
  /* inner block */
  border-radius: 18px;
  padding: 22px 22px 22px 26px;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  /* img | text | button */
  gap: 24px;
  align-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.bn-card+.bn-card {
  margin-top: 26px;
}

.bn-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

.bn-content h3 {
  margin: 0 0 8px;
  font-weight: 900;
  color: #f2c24d;
  font-size: 22px;
}

.bn-content p {
  margin: 0;
  line-height: 1.7;
  color: #e9eef6;
}

/* claim button */
.bn-btn {
  display: inline-block;
  background: #e9b23a;
  color: #2a1a00;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 10px 24px rgba(233, 178, 58, .35);
  transition: transform .15s ease, box-shadow .15s ease;
}

.bn-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(233, 178, 58, .45);
}

/* info blocks under cards */
.bn-info {
  margin-top: 34px;
  padding: 24px 26px;
}

.bn-info h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.bn-info p {
  margin: 0 0 22px;
  line-height: 1.7;
  color: #e6ecf6;
}

/* responsive */
@media (max-width: 900px) {
  .bn-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .bn-btn {
    justify-self: start;
  }
}

/* ===== Others ===== */
.others-sec {
  background: #4b0e09;
  padding: 36px 5% 80px;
  color: #fff;
}

.others-wrap {
  max-width: 980px;
  margin: 0 auto;
}

/* Breadcrumb */
.others-breadcrumb {
  font-size: 14px;
  color: #d6cdc6;
  margin-top: 25px;
  margin-bottom: 14px;
}

.others-breadcrumb a {
  color: #e9e1d9;
  text-decoration: none;
}

.others-breadcrumb a:hover {
  text-decoration: underline;
}

.others-breadcrumb .sep {
  margin: 0 6px;
  opacity: .75;
}

/* Headings */
.others-title {
  margin: 0 0 14px;
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 40px);
  color: #f2c24d;
  letter-spacing: .2px;
}

.others-content h2 {
  margin: 22px 0 10px;
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 26px);
  color: #f2c24d;
}

/* Body */
.others-content p {
  color: #f0ece8;
  line-height: 1.75;
  margin: 0 0 16px;
  max-width: 980px;
  font-size: 14px;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  /* tighter spacing */
  justify-items: center;
  margin: 40px auto;
  /* center grid */
  max-width: 1000px;
  /* narrower than full section */
  padding: 0 5%;
  /* side padding only for images */
}

/* Voucher image box */
.ticket img {
  max-width: 220px;
  /* keep vouchers consistent */
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform .2s;
}

.ticket:hover img {
  transform: translateY(-6px);
}

@media (max-width: 768px) {
  .ticket-grid {
    grid-template-columns: repeat(2, 2fr);
    /* 2 per row on mobile */
    gap: 15px;
  }
}

a {
  color: #70beff;
}

/* Target Galaxy Z Fold 5 portrait (very narrow ~344px) */
@media only screen and (max-width: 360px) {
  .hamburger {
    width: 26px;       /* smaller button area */
    height: 22px;
    margin-right: 6px; /* reduce spacing */
  }

  .hamburger span {
    width: 22px;       /* shorter lines */
    height: 3px;       /* thinner lines */
  }

  .hamburger span+span {
    margin-top: 4px;   /* tighter gap */
  }

  .header-buttons a {
    font-size: 12px;      /* smaller text */
    padding: 5px 12px;    /* smaller pill size */
    border-radius: 18px;  /* keep rounded look */
  }
}

ul,
li {
  list-style-position: inside;
  padding-left: 0;
  margin-left: 1em;
}

li {
  text-indent: -1em;
  line-height: 1.6;
}

/* Galaxy Z Fold 5 fix (≤360px width) */
@media only screen and (max-width: 360px) {
  /* App title */
  .apk-header h2 {
    font-size: 14px;
  }

  /* Subtitle (e.g. Pussy888 Official) */
  .apk-header p {
    font-size: 12px;
  }

  /* Download button (slightly bigger now) */
  .apk-header .apk-btn {
    font-size: 13px;       /* bump up text */
    padding: 6px 14px;     /* bigger button */
    border-radius: 18px;
  }

  /* Stars rating (smaller) */
  .fa-solid, .fas {
    font-size: 8px;
}
}
