/* ============================================================
   /style.css — page styles
   Independent of WP theme. Only new components +
   minimum theme fixes (logo, sports menu).
   Class prefixes: .wf- (footer), .wplay-listing__ (listing).
   ============================================================ */

html, body { overflow-x: hidden; }

/* ============================================================
   RESPONSIVE CONTENT IMAGES
   Large marketing images (banners, illustrations) must not
   stretch beyond their container.
   ============================================================ */
.benefits__item-img img,
.head-section img.banner,
section.content > p > img,
section.content > img,
.banner-section__img img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
.benefits__item-img {
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
}
/* Content paragraph images — center and cap width */
section.content p img[src*="/img/"] {
    max-width: 80%;
    margin: 16px auto;
    height: auto;
}
@media (max-width: 768px) {
    section.content p img[src*="/img/"] { max-width: 100%; }
}

/* ============================================================
   CRITICAL THEME FIXES (minimum)
   ============================================================ */

/* Theme original logo 1049×432 — breaks header without size cap */
.header__logo img {
    max-width: 160px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Header action buttons (Regístrate / Iniciar sesión) */
.header-btns {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.header-btns a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .02em;
    transition: transform .18s, box-shadow .18s, filter .18s, background .18s, color .18s;
    white-space: nowrap;
    line-height: 1;
}
.header-btns a:first-child {
    background: linear-gradient(180deg, #2faa42 0%, #259035 100%);
    color: #fff !important;
    box-shadow: 0 3px 10px rgba(47,170,66,.35);
}
.header-btns a:first-child:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(47,170,66,.5);
}
.header-btns a:last-child {
    border: 1px solid #2faa42;
    color: #4be35f !important;
    background: transparent;
    padding: 7px 15px;
}
.header-btns a:last-child:hover {
    background: rgba(47,170,66,.14);
    color: #fff !important;
    border-color: #4be35f;
}

/* Sports menu: remove white gap between header and banner.
   All other section styling (bg, padding, text) left to WP theme. */
.head-section .main__menu {
    margin-top: 0;
    padding-top: 0;
}

/* ============================================================
   MOBILE MENU TRIGGER (burger icon)
   Styled as 3-line icon that animates to X when body has
   `.mobile-menu-open` class.
   ============================================================ */
.header-mobile__menu {
    cursor: pointer;
    z-index: 1001;
}
@media (max-width: 1100px) {
    .header-mobile__menu {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        position: relative;
    }
    .header-mobile__menu-icon,
    .header-mobile__menu-icon::before,
    .header-mobile__menu-icon::after {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform .25s ease, top .25s ease, background-color .25s ease;
    }
    .header-mobile__menu-icon { position: relative; }
    .header-mobile__menu-icon::before,
    .header-mobile__menu-icon::after {
        content: '';
        position: absolute;
        left: 0;
    }
    .header-mobile__menu-icon::before { top: -7px; }
    .header-mobile__menu-icon::after  { top:  7px; }
    body.mobile-menu-open .header-mobile__menu-icon { background: transparent; }
    body.mobile-menu-open .header-mobile__menu-icon::before { top: 0; transform: rotate(45deg); }
    body.mobile-menu-open .header-mobile__menu-icon::after  { top: 0; transform: rotate(-45deg); }
}
@media (min-width: 1101px) {
    .header-mobile__menu { display: none; }
}

/* ============================================================
   MOBILE MENU — standalone overlay (injected by JS)
   Completely isolated from WP theme styles.
   ============================================================ */
@keyframes mm-fade {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.mm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: linear-gradient(180deg, rgba(5,15,25,.98) 0%, rgba(5,10,18,.98) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 76px 20px 40px;
    overflow-y: auto;
    display: none;
}
.mm-overlay.is-open {
    display: block;
    animation: mm-fade .22s ease;
}
body.mobile-menu-open .mm-overlay { display: block; animation: mm-fade .22s ease; }
body.mobile-menu-open { overflow: hidden; }

.mm-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 2px solid #2faa42;
}
.mm-list li {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.mm-list li::before, .mm-list li::after {
    content: none !important;
    display: none !important;
}
.mm-list a {
    display: flex;
    align-items: center;
    padding: 16px 8px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color .2s, padding-left .2s;
}
.mm-list a:hover,
.mm-list a:active,
.mm-list a:focus {
    color: #4be35f;
    padding-left: 14px;
}

.mm-auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.mm-auth a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .18s, filter .18s, background .2s;
}
.mm-auth .mm-primary {
    background: linear-gradient(180deg, #2faa42 0%, #259035 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(47,170,66,.35);
}
.mm-auth .mm-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.mm-auth .mm-outline {
    border: 1px solid #2faa42;
    color: #4be35f;
    background: transparent;
}
.mm-auth .mm-outline:hover { background: rgba(47,170,66,.14); color: #fff; }

@media (min-width: 1101px) {
    .mm-overlay { display: none !important; }
    body.mobile-menu-open .mm-overlay { display: none !important; }
}

/* Hero bg (utility class, applied inline) */
.head-section--bg {
    background: url(https://wplayapuestases.co/wp-content/uploads/2025/02/1920x425.png) no-repeat bottom center;
    background-size: cover;
}

/* Inline sport icon */
.sport-svg { display: inline-block; vertical-align: middle; }

/* Welcome links */
.welcome-link { color: inherit; text-decoration: none; }
.welcome-link:hover { color: #2faa42; }

/* Slot listing wrapper */
.wrap--slots { padding: 20px 0 40px; }

/* Green accent in section headings */
.color-title { color: #2faa42; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
    padding: 14px 15px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.breadcrumbs__item { display: inline-flex; align-items: center; }
.breadcrumbs__item a { color: #2faa42; text-decoration: none; transition: color .2s; }
.breadcrumbs__item a:hover { color: #4be35f; }
.breadcrumbs__item[aria-current] { color: rgba(255,255,255,.85); }
.breadcrumbs__sep { color: rgba(255,255,255,.35); }
@media (max-width: 768px) { .breadcrumbs { display: none; } }

/* ============================================================
   CASINO LISTING (.wplay-listing__*)
   ============================================================ */
.wplay-listing { margin: 24px 0 36px; }
/* Reset theme li styles (they'd break our grid/flex) */
.wplay-listing ul, .wplay-listing ol {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.wplay-listing__list > li,
.wplay-listing__usp > li,
.wplay-listing__tags > li {
    display: block !important;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    position: relative !important;
}
/* Neutralize theme dashes, then our own ::before/::after take over where declared */
.wplay-listing__list > li::before,
.wplay-listing__list > li::after {
    content: none !important;
    display: none !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
}
.wplay-listing__list { display:grid; gap:18px; }
.wplay-listing__item {
    position:relative; background:#1a1f2b;
    border:1px solid rgba(255,255,255,.06);
    border-radius:16px; padding:18px 20px; color:#fff;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.wplay-listing__item:hover {
    transform: translateY(-2px);
    border-color: rgba(47,170,66,.35);
    box-shadow: 0 10px 26px rgba(0,0,0,.28);
}
.wplay-listing__item--top1 {
    background: linear-gradient(180deg, #1e2534 0%, #1a1f2b 100%);
    border: 2px solid #2faa42;
    box-shadow: 0 8px 26px rgba(47,170,66,.22);
}
.wplay-listing__item--top1::before {
    content: ''; position: absolute; inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(47,170,66,.5), transparent 55%);
    opacity: .35; pointer-events: none; z-index: -1;
}
.wplay-listing__ribbon {
    position: absolute; top: -1px; right: 20px;
    padding: 6px 12px; border-radius: 0 0 10px 10px;
    background: #2faa42; color: #fff;
    font-size: 11px; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(47,170,66,.4);
}
@media (min-width: 900px) {
    .wplay-listing__list > li.wplay-listing__item {
        display: grid !important;
        grid-template-columns: 180px 1fr 220px;
        grid-template-areas: "logo header right" "logo bonus right" "logo usps right";
        align-items: center; column-gap: 24px; row-gap: 8px;
    }
    .wplay-listing__list > li.wplay-listing__item--top1 {
        grid-template-areas: "logo header right" "logo social right" "logo bonus right" "logo usps right";
    }
    .wplay-listing__social-row { grid-area: social; }
}

.wplay-listing__left { display: flex; flex-direction: column; gap: 10px; align-items: center; }
@media (min-width: 900px) { .wplay-listing__left { grid-area: logo; } }
.wplay-listing__logo {
    width: 140px; height: 70px; border-radius: 12px;
    background: #0f1421; display: flex;
    align-items: center; justify-content: center;
    padding: 10px; border: 1px solid rgba(255,255,255,.05);
}
.wplay-listing__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.wplay-listing__tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.wplay-listing__tag {
    display: inline-flex; padding: 4px 10px;
    font-size: 10px; font-weight: 700;
    letter-spacing: .05em; text-transform: uppercase;
    border-radius: 999px;
    background: rgba(255,255,255,.06); color: #c6d0e4;
}
.wplay-listing__tag--top { background: rgba(255,193,77,.14); color: #ffc14d; }
.wplay-listing__tag--exclusive { background: rgba(163,96,255,.14); color: #b48cff; }
.wplay-listing__tag--new { background: rgba(47,170,66,.14); color: #4be35f; }

.wplay-listing__header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
@media (min-width: 900px) { .wplay-listing__header { grid-area: header; } }
.wplay-listing__name { margin: 0; font-size: 28px; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.wplay-listing__rating { display: inline-flex; align-items: center; gap: 6px; font-size: 22px; font-weight: 700; color: #fff; }
.wplay-listing__rating-star { color: #ffc14d; font-size: .95em; }

.wplay-listing__social {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 14px;
    background: rgba(255,84,84,.12);
    border-radius: 20px;
    font-size: 13px; font-weight: 600; color: #ffb0b0;
    margin-top: 4px; width: fit-content;
}
.wplay-listing__social-fire { animation: pulse-fire 2s infinite ease-in-out; }
@keyframes pulse-fire { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.15);opacity:.8;} }
.wplay-listing__social-count { color: #fff; font-weight: 800; font-variant-numeric: tabular-nums; }
.wplay-listing__social-row { margin: -2px 0 2px; }

.wplay-listing__bonus {
    margin: 4px 0; padding: 12px 16px;
    background: rgba(47,170,66,.08);
    border-left: 3px solid #2faa42;
    border-radius: 10px;
    font-size: 17px; font-weight: 600; line-height: 1.4;
    color: #e8f5eb;
}
@media (min-width: 900px) { .wplay-listing__bonus { grid-area: bonus; } }

.wplay-listing__usp { display: flex !important; flex-wrap: wrap; gap: 8px 18px; }
@media (min-width: 900px) { .wplay-listing__usp { grid-area: usps; } }
.wplay-listing__usp > li {
    position: relative !important;
    display: list-item !important;
    padding-left: 22px !important;
    font-size: 13px; color: #b8c2d8; line-height: 1.4;
    background: none !important;
    width: auto !important;
    margin: 0 !important;
}
.wplay-listing__usp > li::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important; top: 3px !important;
    width: 14px !important; height: 14px !important;
    border-radius: 50%;
    background: #2faa42 !important;
}
.wplay-listing__usp > li::after {
    content: '✓' !important;
    display: block !important;
    position: absolute !important;
    left: 2px !important; top: 1px !important;
    color: #fff; font-size: 10px; font-weight: 800;
    line-height: 14px; width: 14px !important; height: auto !important;
    text-align: center; background: none !important;
}

.wplay-listing__right {
    display: flex; flex-direction: column; justify-content: center; align-items: stretch;
    gap: 10px; margin-top: 14px;
}
@media (min-width: 900px) { .wplay-listing__right { grid-area: right; margin-top: 0; align-self: center; } }
.wplay-listing__cta {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 14px 18px; border-radius: 12px;
    background: linear-gradient(180deg, #2faa42 0%, #259035 100%);
    color: #fff; font-size: 16px; font-weight: 800;
    text-decoration: none; text-transform: uppercase; letter-spacing: .03em;
    box-shadow: 0 6px 18px rgba(47,170,66,.35);
    transition: transform .15s, filter .15s, box-shadow .2s;
}
.wplay-listing__cta:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(47,170,66,.48); }
.wplay-listing__cta:active { transform: scale(.98); }
.wplay-listing__urgency { text-align: center; font-size: 12px; color: #c6d0e4; }
.wplay-listing__urgency-label { display: block; font-weight: 700; color: #fff; margin-bottom: 4px; }
.wplay-listing__timer { display: inline-flex; align-items: center; gap: 4px; }
.wplay-listing__timer-label { color: #ff6b6b; font-weight: 700; margin-right: 4px; font-size: 11px; }
.wplay-listing__timer-box {
    display: inline-block; min-width: 26px; padding: 3px 6px;
    background: #c93a3a; border-radius: 4px; color: #fff;
    font-size: 12px; font-weight: 800;
    font-family: ui-monospace, monospace;
    text-align: center; font-variant-numeric: tabular-nums;
}
.wplay-listing__timer-sep { color: #ff6b6b; font-weight: 800; }
.wplay-listing__review { text-align: center; font-size: 12px; color: #c6d0e4; text-decoration: underline; transition: color .2s; }
.wplay-listing__review:hover { color: #4be35f; }

@media (max-width: 768px) {
    .wplay-listing__left { align-items: center; }
    .wplay-listing__header { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
    .wplay-listing__social { margin: 0 auto; }
    .wplay-listing__usp { justify-content: center; }
}
@media (max-width: 480px) {
    .wplay-listing__item { padding: 14px 14px 16px; }
    .wplay-listing__name { font-size: 22px; }
    .wplay-listing__rating { font-size: 18px; }
    .wplay-listing__bonus { font-size: 14px; padding: 10px 12px; }
    .wplay-listing__cta { font-size: 14px; padding: 12px 14px; }
}

/* ============================================================
   SLOT LISTING — color accents only (brand green)
   ============================================================ */
.slot-listing-block { --accent: #2faa42; }
.slot-listing-block .overlay-btn { background: #2faa42; box-shadow: 0 4px 18px rgba(47,170,66,.45); }
.slot-listing-block .card:hover .play { background: #2faa42; box-shadow: 0 3px 10px rgba(47,170,66,.30); }
.slot-listing-block .card.in-focus .play { background: #2faa42; box-shadow: 0 2px 8px rgba(47,170,66,.35); }
.slot-listing-block .st-v.rtp { color: #4be35f; }

/* ============================================================
   RATING NOTE
   ============================================================ */
.wplay-rating-note {
    text-align: center; margin: 24px 0 0; padding: 14px 16px;
    background: rgba(47,170,66,.1);
    border: 1px solid rgba(47,170,66,.3);
    border-radius: 10px; font-size: 16px; color: #fff;
}
.wplay-rating-note b { color: #4be35f; }
.wplay-rating-note span { color: rgba(255,255,255,.75); font-size: 13px; font-weight: 400; }

/* ============================================================
   RELATED LINKS
   ============================================================ */
.related-links {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px 24px;
    list-style: none !important;
    padding: 0 !important;
    margin: 16px 0 0 !important;
}
.related-links > li {
    display: list-item !important;
    position: relative !important;
    padding-left: 16px !important;
    margin: 0 !important;
    width: auto !important;
    float: none !important;
    background: none !important;
}
.related-links > li::before {
    content: '›' !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important; top: auto !important;
    width: auto !important; height: auto !important;
    color: #2faa42 !important;
    background: none !important;
    font-weight: 800;
}
.related-links > li::after { content: none !important; display: none !important; }
.related-links a { color: #2faa42; text-decoration: none; transition: color .2s; }
.related-links a:hover { color: #1e8035; text-decoration: underline; }

/* ============================================================
   AUTHOR BLOCK
   ============================================================ */
.author-block {
    display: flex; gap: 24px; align-items: flex-start;
    background: rgba(47,170,66,.04);
    border-left: 4px solid #2faa42;
    border-radius: 12px; padding: 24px; margin: 32px 0;
}
.author-block__photo {
    width: 96px; height: 96px; border-radius: 50%;
    object-fit: cover; border: 3px solid #2faa42; flex-shrink: 0;
}
.author-block__info h4 { font-size: 20px; font-weight: 800; margin: 0 0 4px; }
.author-block__info h4 a:hover { color: #2faa42; }
.author-block__role {
    display: block; font-size: 11px; color: #2faa42;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: 10px;
}
.author-block__info p { margin: 0 0 12px; line-height: 1.65; font-size: 14px; }
.author-block__license {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(47,170,66,.1);
    border: 1px solid rgba(47,170,66,.3);
    border-radius: 8px; padding: 7px 14px; font-size: 12px;
    text-decoration: none; color: inherit;
}
.author-block__license strong { color: #2faa42; }
@media (max-width: 640px) { .author-block { flex-direction: column; } }

/* ============================================================
   WPLAY FOOTER (.wf-*) — fully isolated from WP theme
   ============================================================ */
.wf {
    background: linear-gradient(180deg, #081625 0%, #050f1a 100%);
    color: #fff;
    margin-top: 60px;
    position: relative;
    font-family: Rubik, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.wf *, .wf *::before, .wf *::after { box-sizing: border-box; }
.wf ul, .wf ol {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.wf li {
    display: list-item !important;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    position: static !important;
}
.wf li::before, .wf li::after {
    content: none !important;
    display: none !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
}
.wf a { text-decoration: none; }
.wf__container { max-width: 1260px; margin: 0 auto; padding: 48px 20px 24px; }

/* ====== CTA bar ====== */
.wf-cta {
    background: linear-gradient(135deg, #2faa42 0%, #1e8035 100%);
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(47,170,66,.25);
    position: relative;
    overflow: hidden;
}
.wf-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.15), transparent 60%);
    pointer-events: none;
}
.wf-cta__inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.wf-cta__text { color: #fff; line-height: 1.4; }
.wf-cta__text strong { display: block; font-size: 20px; font-weight: 800; letter-spacing: -.01em; }
.wf-cta__text span { display: block; font-size: 14px; opacity: .9; margin-top: 2px; }
.wf-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: #1e8035;
    font-weight: 800;
    font-size: 15px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .03em;
    box-shadow: 0 6px 18px rgba(0,0,0,.2);
    transition: transform .2s, box-shadow .2s;
}
.wf-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.3);
}

/* ====== Top: about + nav ====== */
.wf-top {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 2.5fr);
    gap: 48px;
    margin-bottom: 36px;
    align-items: start;
}
.wf-about { display: flex; flex-direction: column; gap: 16px; max-width: 340px; }
.wf-about__logo { display: inline-block; }
.wf-about__logo img {
    max-width: 160px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.wf-about__desc {
    color: rgba(255,255,255,.7);
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}
.wf-about__desc strong { color: #4be35f; font-weight: 700; }

.wf-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.wf-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: .02em;
}
.wf-badge--license { background: rgba(47,170,66,.12); border: 1px solid rgba(47,170,66,.35); color: #4be35f; }
.wf-badge--age {
    background: rgba(231,76,60,.15); border: 1px solid rgba(231,76,60,.45);
    color: #ff7b72; width: 38px; height: 28px;
    justify-content: center; padding: 0; border-radius: 50%;
}
.wf-badge--ssl { background: rgba(43,127,255,.12); border: 1px solid rgba(43,127,255,.35); color: #6ba6ff; }

.wf-social { display: flex; gap: 10px; margin-top: 4px; }
.wf-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.8);
    transition: background .2s, color .2s, transform .2s;
}
.wf-social a:hover {
    background: #2faa42;
    color: #fff;
    transform: translateY(-2px);
}

/* ====== Nav columns ====== */
.wf-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    min-width: 0;
}
.wf-nav__col { min-width: 0; }
.wf-nav__title {
    font-size: 13px;
    font-weight: 800;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #4be35f;
    position: relative;
    padding-bottom: 8px;
}
.wf-nav__title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 24px;
    height: 2px;
    background: #2faa42;
    border-radius: 2px;
}
.wf-nav__list li { margin-bottom: 8px; }
.wf-nav__list a {
    display: inline-block;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,.72);
    transition: color .2s, padding-left .2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.wf-nav__list a:hover {
    color: #4be35f;
    padding-left: 4px;
}

/* ====== Payments ====== */
.wf-pay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 20px;
    background: rgba(255,255,255,.02);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: 24px;
    border-radius: 10px;
}
.wf-pay__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.5);
    flex-shrink: 0;
}
.wf-pay__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.wf-pay__list li { display: inline-flex; align-items: center; }
.wf-pay__list img {
    height: 22px;
    width: auto;
    object-fit: contain;
    padding: 3px 6px;
    border-radius: 4px;
    display: block;
}
.wf-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 5px;
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .05em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}
.wf-chip--nequi { background: #6c2ea9; }
.wf-chip--pse { background: #0052a0; }
.wf-chip--banco { background: #fedb00; color: #1e1e1e; }
.wf-chip--efecty { background: #cc0000; }

/* ====== Responsible ====== */
.wf-responsible {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255,255,255,.03);
    border-left: 3px solid #2faa42;
    border-radius: 8px;
    margin-bottom: 20px;
}
.wf-responsible__age {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ff7b72;
    background: rgba(231,76,60,.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #ff7b72;
}
.wf-responsible p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,.7);
}
.wf-responsible strong { color: #fff; }
.wf-responsible a { color: #4be35f; text-decoration: underline; }
.wf-responsible a:hover { color: #fff; }

/* ====== Bottom ====== */
.wf-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.wf-bottom__policy {
    margin: 0;
    font-size: 12px;
    color: rgba(255,255,255,.5);
}
.wf-bottom__links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.wf-bottom__links li { display: inline-flex; }
.wf-bottom__links a {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    transition: color .2s;
}
.wf-bottom__links a:hover { color: #4be35f; }

/* ====== Responsive footer ====== */
@media (max-width: 900px) {
    .wf-top { grid-template-columns: 1fr; gap: 32px; }
    .wf-nav { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
    .wf__container { padding: 32px 16px 16px; }
    .wf-cta__inner { flex-direction: column; text-align: center; gap: 12px; }
    .wf-cta__btn { width: 100%; justify-content: center; }
    .wf-about { align-items: center; text-align: center; max-width: 100%; }
    .wf-about__desc { text-align: center; }
    .wf-badges, .wf-social { justify-content: center; }
    .wf-pay { flex-direction: column; align-items: stretch; text-align: center; }
    .wf-pay__label { text-align: center; }
    .wf-pay__list { justify-content: center; }
    .wf-bottom { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
    .wf-bottom__links { justify-content: center; }
}
@media (max-width: 400px) {
    .wf-nav { grid-template-columns: 1fr; gap: 20px; }
    .wf-nav__col { text-align: center; }
    .wf-nav__title::after { left: 50%; transform: translateX(-50%); }
}

/* ============================================================
   TEXT LINKS in content (readable on dark bg)
   ============================================================ */
section.content p a,
section.content ul li a,
section.content ol li a,
.main p a,
.main li a,
.content p a {
    color: #4be35f !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}
section.content p a:hover,
section.content ul li a:hover,
section.content ol li a:hover,
.main p a:hover,
.main li a:hover,
.content p a:hover {
    color: #ffffff !important;
}
/* Links in casino description (below title) */
.casino-description a,
.casino-description p a {
    color: #4be35f !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.casino-description a:hover,
.casino-description p a:hover { color: #ffffff !important; }
