/* ============================================================
   the-app-playojo.com — PlayOJO Ireland
   Prefix: ta-
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; color: #1a1f4f; background: #fff; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; line-height: 1.25; }
h1, h2, h3, p, li, blockquote, td, th { overflow-wrap: anywhere; word-break: break-word; }

/* ROOT */
:root {
  --ta-purple-dark: #1a1f4f;
  --ta-purple: #7b2cbf;
  --ta-purple-light: #3d1184;
  --ta-green: #00a651;
  --ta-yellow: #ffd000;
  --ta-white: #fff;
  --ta-bg: #f6f4fb;
  --ta-border: #e0d6f5;
  --ta-text: #1a1f4f;
  --ta-text-muted: #5a5f8a;
  --ta-radius: 12px;
  --ta-shadow: 0 4px 24px rgba(123,44,191,.12);
  --container: 1240px;
}

/* CONTAINER */
.ta-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 760px) { .ta-container { padding-inline: 20px; } }

/* TOPBAR */
.ta-topbar {
  background: var(--ta-purple-dark);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
}
.ta-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px 16px;
  flex-wrap: wrap;
  padding: 7px 0;
}
.ta-topbar__sep { opacity: .4; }
.ta-topbar a { color: rgba(255,255,255,.85); text-decoration: underline; }
@media (max-width: 639px) { .ta-topbar { font-size: 11px; } .ta-topbar__inner { gap: 4px 10px; } }

/* HEADER */
.ta-header { background: var(--ta-purple); position: sticky; top: 0; z-index: 50; }
.ta-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.ta-header__logo { flex-shrink: 0; display: flex; align-items: center; min-width: 0; }
.ta-header__logo img { height: 38px; width: auto; max-width: 140px; object-fit: contain; }
@media (min-width: 760px) { .ta-header__logo img { height: 44px; max-width: none; } }

.ta-header__search {
  display: flex;
  flex: 1;
  min-width: 0;
  max-width: 130px;
}
@media (min-width: 760px) { .ta-header__search { max-width: none; } }
.ta-header__search input {
  width: 100%;
  padding: 7px 14px;
  border-radius: 20px;
  border: none;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  transition: background .2s;
}
.ta-header__search input::placeholder { color: rgba(255,255,255,.6); }
.ta-header__search input:focus { background: rgba(255,255,255,.28); }
@media (min-width: 760px) { .ta-header__search input { font-size: 13.5px; } }

.ta-header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.ta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s, box-shadow .15s;
}
.ta-btn:hover { opacity: .88; }
.ta-btn--login { background: var(--ta-green); color: #fff; }
.ta-btn--register { background: var(--ta-yellow); color: var(--ta-purple-dark); }
.ta-btn--lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }
@media (min-width: 760px) {
  .ta-btn { padding: 10px 20px; font-size: 13.5px; letter-spacing: .04em; }
  .ta-header__actions { gap: 10px; }
}
@media (max-width: 479px) {
  .ta-header__actions .ta-btn--login { display: inline-flex; padding: 7px 10px; font-size: 11px; }
  .ta-btn { padding: 7px 10px; font-size: 11px; }
}

.ta-header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.ta-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s;
}
@media (min-width: 1024px) { .ta-header__burger { display: none; } }

/* SUBNAV */
.ta-subnav {
  background: #fff;
  border-bottom: 1px solid var(--ta-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ta-subnav::-webkit-scrollbar { display: none; }
.ta-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  min-width: max-content;
  margin-inline: auto;
  max-width: var(--container);
  padding-inline: 16px;
}
.ta-subnav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ta-text);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.ta-subnav a:hover, .ta-subnav a.is-active {
  color: var(--ta-purple);
  border-bottom-color: var(--ta-purple);
}
.ta-subnav a svg { width: 15px; height: 15px; flex-shrink: 0; }

/* HERO */
.ta-hero {
  background: linear-gradient(135deg, var(--ta-purple-light) 0%, var(--ta-purple) 100%);
  color: #fff;
  padding-block: 64px 56px;
}
.ta-hero__inner { min-width: 0; max-width: 680px; }
.ta-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ta-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}
.ta-hero__lead { font-size: 17px; opacity: .9; margin-bottom: 32px; max-width: 560px; }
.ta-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 639px) {
  .ta-hero { padding-block: 36px 44px; }
  .ta-hero__lead { font-size: 16px; }
  .ta-hero__ctas .ta-btn--lg { padding: 13px 18px; font-size: 13.5px; width: 100%; }
}

/* BREADCRUMBS */
.ta-breadcrumbs { padding-block: 10px; font-size: 13px; color: var(--ta-text-muted); }
.ta-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; list-style: none; margin: 0; padding: 0; }
.ta-breadcrumbs li + li::before { content: '/'; margin-right: 4px; opacity: .5; }
.ta-breadcrumbs a { color: var(--ta-purple); }

/* SECTIONS */
section { padding-block: 48px; }
section + section { padding-top: 0; }
.ta-section__head { margin-bottom: 28px; }
.ta-section__head h2 { font-size: clamp(20px, 3vw, 28px); margin-bottom: 8px; }
.ta-section__head p { color: var(--ta-text-muted); font-size: 15px; }

/* CONTENT SECTION */
.ta-content h2 { font-size: clamp(20px, 3vw, 26px); margin-bottom: 16px; color: var(--ta-purple-dark); }
.ta-content p { margin-bottom: 14px; color: var(--ta-text); }
.ta-content ul { margin: 14px 0 14px 20px; list-style: disc; }
.ta-content ul li { margin-bottom: 6px; }
.ta-content blockquote {
  border-left: 4px solid var(--ta-purple);
  padding: 16px 20px;
  background: var(--ta-bg);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--ta-purple-dark);
  margin: 20px 0;
}

/* TABLE */
.ta-table-wrap { overflow-x: auto; margin: 20px 0; }
.ta-table-wrap table { width: 100%; min-width: 380px; border-collapse: collapse; font-size: 14px; }
.ta-table-wrap th {
  background: var(--ta-purple);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.ta-table-wrap td { padding: 10px 14px; border-bottom: 1px solid var(--ta-border); }
.ta-table-wrap tr:last-child td { border-bottom: none; }
.ta-table-wrap tr:nth-child(even) td { background: var(--ta-bg); }

/* ============================================================
   OFFERS LISTING
   ============================================================ */
.ta-offers { padding-block: 48px; }
.ta-offers__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
.ta-offers__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ta-border);
  border-radius: var(--ta-radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.ta-offers__card:hover { box-shadow: var(--ta-shadow); }
.ta-offers__card--top {
  border-color: var(--ta-yellow);
  border-width: 2px;
  padding-top: 36px;
}
.ta-offers__card * { pointer-events: none; }
.ta-offers__overlay-link, .ta-offers__review-link { pointer-events: auto !important; cursor: pointer; }
.ta-offers__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  font-size: 0;
  color: transparent;
}
.ta-offers__card > *:not(.ta-offers__overlay-link) { position: relative; z-index: 2; }

/* ribbon */
.ta-offers__ribbon {
  position: absolute !important;
  top: 30px;
  right: -44px;
  width: 175px;
  transform: rotate(45deg);
  background: var(--ta-yellow);
  color: var(--ta-purple-dark);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 0;
  text-align: center;
  z-index: 4;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ta-offers__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 16px;
  text-align: center;
}
.ta-offers__logo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: var(--ta-bg);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ta-border);
}
.ta-offers__logo img { width: 80px; height: 80px; object-fit: contain; }
.ta-offers__meta { min-width: 0; display: flex; flex-direction: column; align-items: center; }
.ta-offers__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ta-purple-dark);
  margin-bottom: 6px;
}
.ta-offers__stars { color: #f5a623; font-size: 14px; display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.ta-offers__rating-num { font-weight: 700; color: var(--ta-text); font-size: 13px; }
.ta-offers__tags { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; }
.ta-offers__tag {
  background: var(--ta-bg);
  color: var(--ta-purple);
  border: 1px solid var(--ta-border);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.ta-offers__tag--top { background: var(--ta-yellow); color: var(--ta-purple-dark); border-color: var(--ta-yellow); }

.ta-offers__bottom {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ta-offers__bonus-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ta-purple);
  text-align: center;
}
.ta-offers__usps {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  align-items: center;
}
.ta-offers__usp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ta-text);
}
.ta-offers__usp::before { content: '✓'; color: var(--ta-green); font-weight: 700; flex-shrink: 0; }

.ta-offers__social-proof {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ta-purple);
}
.ta-offers__timer {
  background: var(--ta-bg);
  border-radius: 8px;
  padding: 8px 16px;
  text-align: center;
  font-size: 12px;
  color: var(--ta-text-muted);
  width: 100%;
}
.ta-offers__timer-digits {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ta-purple-dark);
  letter-spacing: .06em;
}

.ta-offers__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  position: relative;
  z-index: 3;
}
.ta-offers__cta {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: var(--ta-yellow);
  color: var(--ta-purple-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.ta-offers__review-link {
  font-size: 13px;
  color: var(--ta-purple);
  text-decoration: underline;
  position: relative;
  z-index: 3;
}
.ta-offers__urgency {
  font-size: 11px;
  color: var(--ta-text-muted);
  text-align: center;
  padding: 0 20px 14px;
}
.ta-offers__aggregate { text-align: center; margin-top: 20px; font-size: 14px; color: var(--ta-text-muted); }

/* divider */
.ta-offers__divider { width: 100%; height: 1px; background: var(--ta-border); margin-block: 4px; }

/* ============================================================
   SLOTS LISTING
   ============================================================ */
.ta-slots { padding-block: 48px; background: var(--ta-bg); }
.ta-slots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 600px) { .ta-slots__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .ta-slots__grid { grid-template-columns: repeat(6, 1fr); gap: 16px; } }

.ta-slots__grid > div {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--ta-border);
  background: var(--ta-purple-dark);
}
.ta-slots__grid > div:hover { box-shadow: 0 6px 20px rgba(123,44,191,.22); }

.ta-slots__tile {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  aspect-ratio: auto;
  border-radius: 0;
}
.ta-slots__tile img { width: 100%; height: 100%; object-fit: cover; }

.ta-slots__top-row,
.ta-slots__meta-row,
.ta-slots__overlay,
.ta-slots__play-icon { pointer-events: none; }

.ta-slots__top-row {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px;
  z-index: 3;
}
.ta-slots__hot {
  background: #ff3b3b;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ta-slots__rtp-badge {
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.ta-slots__meta-row {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(26,31,79,.92) 0%, transparent 100%);
  padding: 28px 8px 8px;
  z-index: 3;
}
.ta-slots__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ta-slots__info { display: flex; gap: 6px; align-items: center; }
.ta-slots__vol, .ta-slots__maxwin {
  font-size: 9px;
  color: rgba(255,255,255,.75);
}

.ta-slots__overlay {
  position: absolute;
  inset: 0;
  background: rgba(123,44,191,.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .2s;
  z-index: 4;
  padding: 10px;
}
.ta-slots__grid > div:hover .ta-slots__overlay { opacity: 1; }
.ta-slots__overlay-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  text-align: center;
}
.ta-slots__play-icon {
  width: 36px;
  height: 36px;
  background: var(--ta-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ta-slots__play-icon svg { width: 14px; height: 14px; color: var(--ta-purple-dark); }
.ta-slots__overlay-rtp { font-size: 10px; color: rgba(255,255,255,.8); }

.ta-slots__more { text-align: center; margin-top: 24px; }

/* ============================================================
   AUTHOR
   ============================================================ */
.ta-author { padding-block: 48px; }
.ta-author__card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--ta-bg);
  border-radius: var(--ta-radius);
  padding: 28px;
  max-width: 100%;
  margin-inline: 0;
}
.ta-author__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--ta-purple);
}
.ta-author__info h3 { font-size: 18px; margin-bottom: 4px; }
.ta-author__role { font-size: 13px; color: var(--ta-purple); font-weight: 600; margin-bottom: 10px; }
.ta-author__bio { font-size: 14px; color: var(--ta-text-muted); margin-bottom: 12px; }
.ta-author__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ta-purple);
  font-weight: 600;
  text-decoration: underline;
}
.ta-author__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  background: var(--ta-purple);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
@media (max-width: 599px) {
  .ta-author__card { flex-direction: column; align-items: center; text-align: center; }
}

/* FAQ */
.ta-faq { padding-block: 48px; }
.ta-faq__list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 10px; }
.ta-faq details {
  border: 1px solid var(--ta-border);
  border-radius: 10px;
  overflow: hidden;
}
.ta-faq summary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ta-purple-dark);
}
.ta-faq summary::after { content: '+'; font-size: 20px; color: var(--ta-purple); }
.ta-faq details[open] summary::after { content: '−'; }
.ta-faq__answer { padding: 0 20px 16px; font-size: 14px; color: var(--ta-text-muted); }

/* RELATED LINKS */
.ta-related { padding-block: 32px; }
.ta-related h3 { font-size: 16px; margin-bottom: 14px; }
.ta-related__list { display: flex; flex-wrap: wrap; gap: 8px; }
.ta-related__list a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--ta-bg);
  border: 1px solid var(--ta-border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ta-purple);
  transition: background .15s;
}
.ta-related__list a:hover { background: var(--ta-purple); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.ta-footer { background: var(--ta-purple-dark); color: rgba(255,255,255,.8); padding: 56px 0 0; }
.ta-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ta-footer__brand { grid-column: 1 / -1; }
@media (min-width: 600px) { .ta-footer__top { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 900px) {
  .ta-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 22px; }
  .ta-footer__brand { grid-column: auto; }
}

.ta-footer__logo { height: 70px; width: auto; object-fit: contain; margin-bottom: 14px; }
.ta-footer__tagline { font-size: 13px; opacity: .7; margin-bottom: 16px; max-width: 260px; }
.ta-footer__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.ta-footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .15s;
}
.ta-footer__social:hover { background: var(--ta-purple); }
.ta-footer__social svg { width: 16px; height: 16px; fill: currentColor; }

.ta-footer__col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ta-yellow);
  margin-bottom: 12px;
}
.ta-footer__col ul { display: flex; flex-direction: column; gap: 7px; }
.ta-footer__col a { font-size: 13px; opacity: .75; transition: opacity .15s; }
.ta-footer__col a:hover { opacity: 1; }

.ta-footer__bottom {
  padding-block: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.ta-footer__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}
.ta-footer__pay-item {
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  height: 32px;
}
.ta-footer__pay-item img { height: 20px; width: auto; object-fit: contain; }

.ta-footer__rg {
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 12px;
  opacity: .7;
  line-height: 1.7;
  margin-bottom: 20px;
}
.ta-footer__rg strong { color: #fff; }

.ta-footer__copy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  opacity: .55;
}
.ta-footer__legal-links { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.ta-footer__legal-links a:hover { opacity: 1; color: var(--ta-yellow); }

@media (max-width: 599px) {
  .ta-footer { padding: 28px 0 16px; font-size: 12px; }
  .ta-footer__col h4 { font-size: 11px; margin-bottom: 6px; }
  .ta-footer__col ul { gap: 4px; }
  .ta-footer__col a { font-size: 12px; }
  .ta-footer__logo { height: 50px; margin-bottom: 10px; }
  .ta-footer__tagline { font-size: 12px; margin-bottom: 10px; }
  .ta-footer__pay-item img { height: 16px; }
}

/* MOBILE MENU OVERLAY */
.ta-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ta-purple-dark);
  z-index: 100;
  flex-direction: column;
  overflow-y: auto;
}
.ta-nav-overlay.is-open { display: flex; }
.ta-nav-overlay__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ta-nav-overlay__logo { height: 38px; width: auto; display: block; margin: 0 auto; }
.ta-nav-overlay__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}
.ta-nav-overlay__links { padding: 20px; display: flex; flex-direction: column; gap: 4px; }
.ta-nav-overlay__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  color: rgba(255,255,255,.85);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: background .15s;
}
.ta-nav-overlay__links a:hover { background: rgba(255,255,255,.08); color: #fff; }
.ta-nav-overlay__actions { padding: 0 20px 24px; display: flex; flex-direction: column; gap: 10px; }
.ta-nav-overlay__actions .ta-btn { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }

/* FAB — mobile sticky CTA */
.ta-fab {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 95;
  padding: 18px 38px;
  background: var(--ta-yellow);
  color: var(--ta-purple-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(255,208,0,.45), 0 2px 8px rgba(0,0,0,.5);
  transition: background .15s, transform .15s;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 260px;
  max-width: calc(100% - 28px);
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
}
.ta-fab::after { content: "▶"; font-size: 11px; }
.ta-fab:hover { transform: translate(-50%, -2px); }
@media (max-width: 979px) { .ta-fab { display: inline-flex; } }
@media (max-width: 480px) { .ta-fab { padding: 16px 32px; font-size: 15px; min-width: 220px; } }
@media (max-width: 979px) { .ta-footer { padding-bottom: 84px; } }

/* IMAGE RULES */
article img, section.content img, main p img {
  display: block;
  max-width: 720px;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  margin: 24px auto;
  border-radius: var(--ta-radius);
}
header img { max-height: 48px; width: auto; object-fit: contain; }
.ta-author__photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }

/* SITEMAP PAGE */
.ta-sitemap__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.ta-sitemap__card {
  background: var(--ta-bg);
  border: 1px solid var(--ta-border);
  border-radius: 10px;
  padding: 16px;
  transition: border-color .15s;
}
.ta-sitemap__card:hover { border-color: var(--ta-purple); }
.ta-sitemap__card a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ta-purple);
  display: block;
  margin-bottom: 4px;
}
.ta-sitemap__card p { font-size: 12px; color: var(--ta-text-muted); }
.ta-sitemap__group { margin-bottom: 36px; }
.ta-sitemap__group h2 { font-size: 18px; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--ta-border); }
