.footer .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .brand__logo {
  height: 28px;
  width: auto;
  display: block;
}

.footer .brand__name {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}



/* ==========================================
   SCROLL FIX (mobile Safari / iOS)
   Ensures page can scroll normally
========================================== */
html, body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
}
body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ==========================================
   MOBILE CONVERSION MODE (PRO)
   Added: 2026-02-19
========================================== */

@media (max-width: 1024px) {
  .container,
  .main,
  .wrap,
  .page {
    padding: 0 14px;
  }
}

@media (max-width: 768px) {
  body { padding-bottom: 84px; }

  /* HERO */
  #heroLeft { padding: 24px 16px; }
  #heroHeadline { font-size: 22px; line-height: 1.3; }
  #heroSub { font-size: 14px; margin-top: 6px; }

  /* GRID -> 1 column */
  #offersGrid,
  #gamesGrid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  /* Card spacing */
  .card { border-radius: 18px; overflow: hidden; }
  .card__body { padding: 16px; }
  .card__title { font-size: 16px; font-weight: 700; }
  .bonus { font-size: 14px; }
  .rating { font-size: 13px; }

  /* Buttons */
  .btn { min-height: 48px; font-size: 16px; font-weight: 800; }
  .card__actions { flex-direction: column; gap: 10px; }
  .btn--mini { width: 100%; }

  /* SEO text: keep, but shorten on mobile */
  .seo-text { max-height: 220px; overflow: hidden; position: relative; }
  .seo-text::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 70px;
    background: linear-gradient(to bottom, rgba(15,18,32,0), #0f1220);
    pointer-events: none;
  }

  /* Sticky CTA */
  .mobile-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #0f1220;
    padding: 14px 16px;
    box-shadow: 0 -6px 25px rgba(0,0,0,0.5);
    z-index: 9999;
  }

  .mobile-cta__btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 0;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 900;
    background: linear-gradient(135deg,#22c55e,#16a34a);
    color: #fff;
    text-decoration: none;
    transform: translateZ(0);
  }

  .mobile-cta__btn:active { transform: scale(0.98); }

  /* Gentle pulse (conversion-friendly, not spammy) */
  @keyframes ctaPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
  }

  .mobile-cta__btn { animation: ctaPulse 2.8s ease-in-out infinite; }
}
