:root {
    --navy: #07111f;
    --navy-card: #101d2e;
    --navy-soft: #17263a;
    --page: #f4f6f8;
    --card: #ffffff;
    --amber: #f4b52e;
    --amber-dark: #d58d05;
    --teal: #17a2a4;
    --teal-dark: #0c7779;
    --heading: #142033;
    --body: #4d5968;
    --muted-dark: #aeb8c5;
    --line: #dce2e8;
    --line-dark: rgba(255, 255, 255, 0.14);
    --danger: #bb3c3c;
    --container: 1200px;
    --reading: 760px;
    --radius: 16px;
    --button-radius: 8px;
    --shadow: 0 18px 50px rgba(7, 17, 31, 0.12);
    --shadow-strong: 0 24px 70px rgba(0, 0, 0, 0.28);
}

/* Category card media: local responsive thumbnails with reserved aspect ratio. */
.dafabet-card-media {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 0 16px;
    background: #111827;
}
.dafabet-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sport-card-media,
.game-card-media { position: relative; }
.sport-card { position: relative; }
.sport-card__marker { position: absolute; right: 18px; top: 18px; z-index: 2; }
.game-card__media .dafabet-card-media { margin: 0; border-radius: 12px; }
.game-card__media .game-card-media img { min-height: 100%; }
@media (max-width: 767px) {
    .dafabet-card-media { margin-bottom: 14px; }
    .sport-card__marker { right: 14px; top: 14px; }
}

/* Keep the legacy sports icon as a small label below the image; it must not
 * cover the card thumbnail. */
.sport-card__marker {
    position: static;
    display: inline-grid;
    width: 34px;
    min-height: 34px;
    margin: 14px 18px 0;
    place-items: center;
    border-radius: 10px;
    background: #14243a;
}
.sport-card__marker .ui-icon {
    width: 20px;
    height: 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    background: var(--page);
    color: var(--body);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button,
a,
summary {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--heading);
    font-family: "Arial Narrow", "Roboto Condensed", ui-sans-serif, system-ui, sans-serif;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.8rem, 5.2vw, 4.75rem);
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(2.2rem, 3.6vw, 3.45rem);
}

h3 {
    font-size: 1.35rem;
}

.site-container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section-space {
    padding-block: 92px;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    transform: translateY(-150%);
    border-radius: 6px;
    background: var(--amber);
    color: var(--navy);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.ui-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: var(--button-radius);
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.15;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    box-shadow: 0 10px 26px rgba(7, 17, 31, 0.14);
}

.button-small {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.86rem;
}

.button-large {
    min-height: 54px;
    padding-inline: 24px;
}

.button-accent {
    background: var(--amber);
    color: var(--navy);
}

.button-accent:hover {
    background: #ffd05d;
}

.button-quiet {
    border-color: var(--line);
    background: transparent;
    color: var(--heading);
}

.button-quiet:hover {
    border-color: var(--teal);
    color: var(--teal-dark);
}

.button-dark-outline {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.button-dark-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.button-navy {
    background: var(--navy);
    color: #fff;
}

.button-navy:hover {
    background: var(--navy-soft);
}

.button-teal {
    background: var(--teal);
    color: #fff;
}

.button-teal:hover {
    background: var(--teal-dark);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal-dark);
    font-weight: 800;
}

.text-link .ui-icon,
.quick-card small .ui-icon,
.sport-card a .ui-icon,
.game-card a .ui-icon,
.fact-panel > a .ui-icon,
.mobile-safety-link .ui-icon,
.payment-warning a .ui-icon {
    width: 17px;
    height: 17px;
    transition: transform 180ms ease;
}

.text-link:hover .ui-icon,
.quick-card:hover small .ui-icon,
.sport-card a:hover .ui-icon,
.game-card a:hover .ui-icon,
.fact-panel > a:hover .ui-icon,
.mobile-safety-link:hover .ui-icon,
.payment-warning a:hover .ui-icon {
    transform: translateX(4px);
}

.top-notice {
    min-height: 38px;
    display: flex;
    align-items: center;
    background: #030a13;
    color: #d7dee7;
    font-size: 0.74rem;
    font-weight: 650;
    letter-spacing: 0.02em;
}

.top-notice__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.top-notice i {
    padding-inline: 5px;
    color: var(--amber);
    font-style: normal;
}

.top-notice__reviewed {
    flex: 0 0 auto;
    color: var(--muted-dark);
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(7, 17, 31, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 7px 22px rgba(7, 17, 31, 0.04);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: min-height 220ms ease;
}

.site-header.is-scrolled .header-inner {
    min-height: 62px;
}

.site-branding,
.brand-text-link,
.footer-wordmark {
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    color: var(--navy);
    line-height: 1;
}

.site-branding .custom-logo-link {
    display: block;
    line-height: 0;
}

.site-branding .custom-logo {
    max-width: 148px;
    max-height: 42px;
}

.brand-word,
.footer-wordmark > span {
    font-family: "Arial Narrow", Impact, sans-serif;
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.brand-word::after,
.footer-wordmark > span::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 3px;
    border-radius: 50%;
    background: var(--amber);
}

.brand-context,
.footer-wordmark small {
    margin-top: 5px;
    color: var(--teal-dark);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.21em;
}

.custom-logo,
.custom-logo-link img,
.site-branding img,
.brand-logo img,
.footer-brand img {
    width: auto;
    max-width: 180px;
    height: auto;
    max-height: 56px;
    object-fit: contain;
}

.desktop-nav {
    min-width: 0;
    flex: 1 1 auto;
}

.primary-menu,
.mobile-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.5vw, 24px);
}

.primary-menu a {
    position: relative;
    display: block;
    padding: 7px 0;
    color: #344053;
    font-size: 0.86rem;
    font-weight: 750;
    white-space: nowrap;
}

.primary-menu a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--teal);
    transition: transform 180ms ease;
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.mobile-explore,
.menu-toggle,
.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    background-color: var(--navy);
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, #000, transparent 68%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -190px;
    bottom: -290px;
    width: 690px;
    height: 690px;
    border: 92px solid rgba(23, 162, 164, 0.15);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 580px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
    align-items: center;
    gap: clamp(45px, 6vw, 88px);
    padding-block: 60px;
}

.eyebrow,
.section-kicker {
    margin-bottom: 14px;
    color: var(--teal-dark);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--amber);
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--amber);
}

.hero-copy h1 {
    max-width: 730px;
    margin-bottom: 25px;
    color: #fff;
    font-size: clamp(3rem, 4.6vw, 4.4rem);
}

.hero-dek {
    max-width: 680px;
    margin-bottom: 28px;
    color: #cbd4df;
    font-size: 1.08rem;
    line-height: 1.68;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 28px 0 16px;
    padding: 0;
    color: #dce4ed;
    font-size: 0.79rem;
    font-weight: 750;
    list-style: none;
}

.trust-inline li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.trust-inline .ui-icon {
    width: 16px;
    height: 16px;
    color: var(--amber);
}

.hero-disclaimer {
    max-width: 640px;
    margin-bottom: 0;
    color: var(--muted-dark);
    font-size: 0.72rem;
    line-height: 1.5;
}

.hero-visual {
    position: relative;
    min-height: 450px;
}

.hero-image-frame {
    position: absolute;
    top: 18px;
    right: 4px;
    width: min(92%, 470px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px 28px 70px 28px;
    background: var(--navy-card);
    box-shadow: var(--shadow-strong);
}

.hero-image-frame::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(to top, rgba(7,17,31,.72), transparent);
}

.hero-image {
    width: 100%;
    aspect-ratio: 4 / 4.2;
    object-fit: cover;
}

.visual-card,
.visual-safety {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(16, 29, 46, 0.95);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.visual-card {
    width: 165px;
    padding: 13px 16px;
    border-radius: 12px;
}

.visual-card span {
    display: block;
    margin-bottom: 4px;
    color: var(--amber);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.visual-card strong {
    font-size: 0.82rem;
}

.visual-card--cricket {
    top: 55px;
    left: -20px;
}

.visual-card--football {
    top: 147px;
    right: -30px;
}

.visual-card--casino {
    bottom: 57px;
    left: -33px;
}

.visual-safety {
    right: 18px;
    bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
}

.visual-safety .ui-icon {
    width: 17px;
    height: 17px;
    color: var(--teal);
}

.quick-access {
    position: relative;
    z-index: 3;
    padding-block: 52px 34px;
    background: #fff;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading h2 {
    max-width: 760px;
}

.section-heading > p,
.section-heading--split > p {
    max-width: 540px;
}

.section-heading--compact {
    margin-bottom: 22px;
}

.section-heading--compact h2 {
    margin-bottom: 0;
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.section-heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.section-heading--split h2,
.section-heading--split p {
    margin-bottom: 0;
}

.section-heading--centered {
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
}

.section-heading--centered h2 {
    margin-inline: auto;
}

.quick-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.quick-card {
    min-width: 0;
    display: flex;
    min-height: 230px;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.quick-card:nth-child(2),
.quick-card:nth-child(4) {
    background: #f7fafb;
}

.quick-card:hover {
    border-color: rgba(23, 162, 164, 0.55);
    box-shadow: 0 16px 35px rgba(7, 17, 31, 0.1);
}

.quick-card__icon {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 30px;
    place-items: center;
    border-radius: 10px;
    background: var(--navy);
    color: var(--amber);
}

.quick-card__icon .ui-icon {
    width: 21px;
    height: 21px;
}

.quick-card strong {
    margin-bottom: 7px;
    color: var(--heading);
    font-size: 1rem;
}

.quick-card > span:not(.quick-card__icon) {
    color: var(--body);
    font-size: 0.78rem;
    line-height: 1.55;
}

.quick-card small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 16px;
    color: var(--teal-dark);
    font-weight: 800;
}

.brand-overview {
    background: var(--page);
}

.overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.68fr);
    align-items: start;
    gap: clamp(55px, 8vw, 105px);
}

.overview-copy h2 {
    margin-bottom: 28px;
}

.overview-copy p {
    margin-bottom: 19px;
}

.fact-panel {
    position: sticky;
    top: 95px;
    overflow: hidden;
    border-top: 5px solid var(--amber);
    border-radius: var(--radius);
    background: #e9edf1;
    box-shadow: 0 16px 38px rgba(7, 17, 31, 0.08);
}

.fact-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(7, 17, 31, 0.1);
}

.fact-panel__head span {
    color: var(--heading);
    font-weight: 850;
}

.fact-panel__head strong {
    color: var(--teal-dark);
    font-size: 0.7rem;
}

.fact-panel dl {
    margin: 0;
}

.fact-panel dl div {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 18px;
    padding: 15px 24px;
    border-bottom: 1px solid rgba(7, 17, 31, 0.08);
}

.fact-panel dt {
    color: #566273;
    font-size: 0.78rem;
    font-weight: 750;
}

.fact-panel dd {
    margin: 0;
    color: var(--heading);
    font-size: 0.82rem;
    font-weight: 750;
    line-height: 1.45;
}

.fact-panel > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 24px;
    background: #fff;
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 850;
}

.sports-section {
    background: #fff;
}

.sports-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(500px, 0.95fr);
    gap: 22px;
}

.cricket-feature {
    overflow: hidden;
    border-radius: 20px;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow);
}

.cricket-feature__media {
    position: relative;
}

.cricket-feature__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(to top, var(--navy), transparent);
}

.cricket-feature__media .section-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.media-label {
    position: absolute;
    z-index: 1;
    top: 18px;
    left: 18px;
    padding: 7px 11px;
    border-radius: 5px;
    background: var(--amber);
    color: var(--navy);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.cricket-feature__body {
    padding: 16px 30px 30px;
}

.cricket-feature__body h3 {
    margin-bottom: 19px;
    color: #fff;
    font-size: clamp(1.65rem, 2.3vw, 2.25rem);
}

.feature-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 16px;
    margin: 0 0 24px;
    padding: 0;
    color: #d0d9e3;
    font-size: 0.8rem;
    list-style: none;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.feature-checklist .ui-icon {
    width: 16px;
    height: 16px;
    color: var(--amber);
}

.cricket-feature .text-link {
    color: var(--amber);
}

.sports-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.sport-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.sport-card:hover {
    border-color: var(--teal);
    box-shadow: 0 14px 32px rgba(7, 17, 31, 0.09);
}

.sport-card__image {
    width: 100%;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
}

.sport-card > div {
    padding: 16px 18px 18px;
}

.sport-card h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.sport-card p {
    margin-bottom: 10px;
    font-size: 0.76rem;
    line-height: 1.55;
}

.sport-card a,
.game-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal-dark);
    font-size: 0.72rem;
    font-weight: 850;
}

.section-note {
    margin: 28px 0 0;
    padding: 16px 20px;
    border-left: 4px solid var(--amber);
    background: #f5f7f9;
    color: #5a6676;
    font-size: 0.78rem;
}

.games-section {
    background: #e9edf1;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.game-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 8px 24px rgba(7, 17, 31, 0.06);
    transition: box-shadow 180ms ease;
}

.game-card:hover {
    box-shadow: 0 20px 42px rgba(7, 17, 31, 0.12);
}

.game-card__media {
    position: relative;
    overflow: hidden;
}

.game-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: opacity 180ms ease;
}

.game-card:hover .game-card__image {
    opacity: 0.9;
}

.game-card__media > span {
    position: absolute;
    right: 14px;
    bottom: 12px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--amber);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 900;
}

.game-card__body {
    padding: 22px 23px 24px;
}

.game-card h3 {
    margin-bottom: 11px;
    font-size: 1.38rem;
}

.game-card p {
    margin-bottom: 14px;
    font-size: 0.82rem;
    line-height: 1.6;
}

.game-card small {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    color: #8a4d15;
    font-size: 0.69rem;
    font-weight: 800;
}

.game-card small .ui-icon {
    width: 15px;
    height: 15px;
}

.game-tags {
    margin-bottom: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    color: #687485;
    font-size: 0.67rem;
    font-weight: 700;
}

.mobile-section {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
}

.mobile-section::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 42%;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b1727;
}

.mobile-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: clamp(60px, 9vw, 120px);
}

.mobile-visual {
    position: relative;
    justify-self: center;
    width: min(100%, 440px);
}

.mobile-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 44px 44px 18px 18px;
    box-shadow: var(--shadow-strong);
}

.mobile-visual__badge {
    position: absolute;
    right: -44px;
    bottom: 44px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: #fff;
    color: var(--body);
    box-shadow: var(--shadow);
}

.mobile-visual__badge .ui-icon {
    color: var(--teal);
}

.mobile-visual__badge span {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
    line-height: 1.35;
}

.mobile-visual__badge strong {
    color: var(--heading);
    font-size: 0.78rem;
}

.section-kicker--dark {
    color: var(--amber);
}

.mobile-copy h2 {
    color: #fff;
}

.mobile-feature-list {
    margin-block: 32px;
    border-top: 1px solid var(--line-dark);
}

.mobile-feature-list article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-dark);
}

.mobile-feature-list article > span {
    color: var(--amber);
    font-family: "Arial Narrow", sans-serif;
    font-size: 0.74rem;
    font-weight: 900;
}

.mobile-feature-list h3 {
    margin-bottom: 4px;
    color: #fff;
    font-size: 1.1rem;
}

.mobile-feature-list p {
    margin-bottom: 0;
    color: #bcc7d4;
    font-size: 0.78rem;
    line-height: 1.58;
}

.account-section {
    background: #fff;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.account-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
}

.account-card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 7px;
    background: var(--amber);
}

.account-card--register {
    background: #f4fbfb;
}

.account-card--register::before {
    background: var(--teal);
}

.account-card__head {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 24px;
}

.account-card__head > span {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: var(--amber);
}

.account-card--register .account-card__head > span {
    background: var(--teal);
    color: #fff;
}

.account-card__head small {
    color: var(--teal-dark);
    font-size: 0.63rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.account-card h3 {
    margin: 3px 0 0;
    font-size: 1.7rem;
}

.account-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 24px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.account-card li {
    position: relative;
    padding-left: 18px;
    color: #586474;
    font-size: 0.8rem;
    line-height: 1.5;
}

.account-card li::before {
    content: "";
    position: absolute;
    top: 0.6em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
}

.account-card--register li::before {
    background: var(--teal);
}

.payments-section {
    background: var(--page);
}

.payment-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: center;
    gap: 65px;
    margin-bottom: 35px;
}

.payment-heading h2 {
    margin-bottom: 16px;
}

.payment-heading p:last-child {
    max-width: 680px;
    margin-bottom: 0;
}

.payment-heading__image {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    border-radius: 70px 14px 14px 14px;
    box-shadow: var(--shadow);
}

.method-caption {
    margin-bottom: 14px;
    color: #647081;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 40px;
}

.payment-methods > div {
    display: flex;
    min-height: 96px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 8px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    text-align: center;
}

.payment-methods span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 8px;
    background: #e9f5f5;
    color: var(--teal-dark);
    font-size: 0.65rem;
    font-weight: 900;
}

.payment-methods strong {
    color: var(--heading);
    font-size: 0.7rem;
    line-height: 1.25;
}

.payment-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-block: 1px solid var(--line);
}

.payment-steps article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 15px;
    padding: 27px 28px;
    border-right: 1px solid var(--line);
}

.payment-steps article:last-child {
    border-right: 0;
}

.payment-steps article > span {
    color: var(--teal-dark);
    font-family: "Arial Narrow", sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
}

.payment-steps h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.payment-steps ul {
    margin: 0;
    padding-left: 18px;
    font-size: 0.78rem;
}

.payment-warning {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
    padding: 19px 22px;
    border-left: 5px solid var(--danger);
    border-radius: 10px;
    background: #fff1f1;
}

.payment-warning > .ui-icon {
    width: 30px;
    height: 30px;
    color: var(--danger);
}

.payment-warning p {
    margin-bottom: 0;
    color: #5a3030;
    font-size: 0.79rem;
}

.payment-warning p strong {
    display: block;
    color: #7f2525;
}

.payment-warning a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #7f2525;
    font-size: 0.73rem;
    font-weight: 850;
}

.safety-section {
    background: #fff;
}

.safety-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(50px, 8vw, 105px);
}

.safety-visual {
    position: relative;
}

.safety-image {
    width: 100%;
    aspect-ratio: 4 / 4.5;
    object-fit: cover;
    border-radius: 18px 90px 18px 18px;
}

.url-check {
    position: absolute;
    right: -28px;
    bottom: 34px;
    min-width: 240px;
    padding: 15px 20px;
    border-left: 4px solid var(--teal);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.url-check span {
    display: block;
    color: var(--teal-dark);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.url-check strong {
    color: var(--heading);
    font-size: 0.76rem;
}

.safety-copy h2 {
    max-width: 680px;
}

.safety-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-block: 30px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.safety-points article {
    padding: 20px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.safety-points h3 {
    margin-bottom: 7px;
    font-size: 1.08rem;
}

.safety-points p {
    margin-bottom: 0;
    font-size: 0.77rem;
    line-height: 1.55;
}

.responsible-section {
    background: #e9edf1;
}

.responsible-inner {
    padding-block: 8px;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.responsible-grid > div {
    display: flex;
    min-height: 145px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 12px;
    border-radius: 12px;
    background: #fff;
    color: var(--heading);
    text-align: center;
}

.responsible-grid span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid #cdd6de;
    border-radius: 50%;
    color: var(--teal-dark);
}

.responsible-grid strong {
    font-size: 0.76rem;
    line-height: 1.35;
}

.responsible-link {
    width: max-content;
    margin: 28px auto 0;
}

.brand-guide-section {
    background: #fff;
}

.brand-guide-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1.46fr);
    align-items: start;
    gap: clamp(55px, 8vw, 110px);
}

.brand-guide-intro {
    position: sticky;
    top: 95px;
}

.brand-guide-intro h2 {
    font-size: clamp(2.2rem, 3vw, 3.15rem);
}

.brand-guide-intro > p:not(.section-kicker) {
    font-size: 0.86rem;
}

.brand-guide-image {
    width: 100%;
    margin-top: 28px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px 50px 14px 14px;
}

.brand-guide-content,
.page-article-content {
    max-width: var(--reading);
    color: #3f4b5b;
}

.wp-content h2 {
    margin: 54px 0 17px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-size: clamp(1.7rem, 2.5vw, 2.3rem);
}

.wp-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.wp-content h3 {
    margin: 32px 0 12px;
    font-size: 1.38rem;
}

.wp-content p,
.wp-content li {
    font-size: 1rem;
    line-height: 1.78;
}

.wp-content p {
    margin-bottom: 20px;
}

.wp-content ul,
.wp-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.wp-content a {
    color: var(--teal-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wp-content blockquote,
.wp-content .editorial-note {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--amber);
    background: #f3f5f7;
    color: #4c5867;
}

.faq-section {
    border-top: 1px solid var(--line);
    background: var(--page);
}

.faq-layout {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    align-items: start;
    gap: clamp(45px, 7vw, 90px);
}

.faq-heading {
    position: sticky;
    top: 96px;
}

.faq-heading h2 {
    font-size: clamp(2.2rem, 3vw, 3.1rem);
}

.faq-heading > p:not(.section-kicker) {
    font-size: 0.86rem;
}

.faq-heading .button {
    margin-top: 10px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.faq-item {
    align-self: start;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.faq-item summary {
    display: grid;
    min-height: 86px;
    grid-template-columns: 30px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    color: var(--heading);
    font-size: 0.83rem;
    font-weight: 850;
    line-height: 1.38;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary > span {
    color: var(--teal-dark);
    font-size: 0.68rem;
}

.faq-item summary i {
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid #bec8d1;
    border-radius: 50%;
}

.faq-item summary i::before,
.faq-item summary i::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 4px;
    width: 8px;
    height: 1px;
    background: var(--heading);
}

.faq-item summary i::after {
    transform: rotate(90deg);
    transition: transform 180ms ease;
}

.faq-item[open] summary i::after {
    transform: rotate(0);
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--line);
}

.faq-item > div {
    padding: 17px 18px 19px 58px;
}

.faq-item p {
    margin-bottom: 0;
    color: #596576;
    font-size: 0.76rem;
    line-height: 1.65;
}

.site-footer {
    padding-top: 72px;
    background: var(--navy);
    color: #c4ced9;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(160px, 0.75fr));
    gap: 52px;
    padding-bottom: 55px;
}

.footer-wordmark {
    margin-bottom: 22px;
    color: #fff;
}

.footer-wordmark small {
    color: var(--amber);
}

.footer-brand p {
    max-width: 350px;
    color: #aeb8c5;
    font-size: 0.82rem;
    line-height: 1.65;
}

.editorial-contact {
    display: inline-flex;
    flex-direction: column;
    padding-left: 14px;
    border-left: 2px solid var(--teal);
    color: #aeb8c5;
    font-size: 0.68rem;
}

.editorial-contact strong {
    color: #fff;
    font-size: 0.8rem;
}

.footer-group {
    display: block;
}

.footer-group summary {
    margin-bottom: 18px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 850;
    cursor: default;
    list-style: none;
}

.footer-group summary::-webkit-details-marker {
    display: none;
}

.footer-group ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-group a {
    color: #aeb8c5;
    font-size: 0.76rem;
    transition: color 180ms ease;
}

.footer-group a:hover {
    color: var(--amber);
}

.footer-legal {
    display: grid;
    grid-template-columns: 1.2fr 1.1fr auto;
    gap: 35px;
    padding-block: 22px;
    border-top: 1px solid var(--line-dark);
}

.footer-legal p {
    margin: 0;
    color: #8e9aaa;
    font-size: 0.66rem;
    line-height: 1.55;
}

.back-to-top {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 44px;
    height: 44px;
    transform: translateY(90px);
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    opacity: 0;
    background: var(--teal);
    color: #fff;
    box-shadow: 0 10px 28px rgba(7, 17, 31, 0.24);
    cursor: pointer;
    transition: transform 200ms ease, opacity 200ms ease, background-color 180ms ease;
}

.back-to-top.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.back-to-top:hover {
    background: var(--teal-dark);
}

.back-to-top .ui-icon {
    width: 20px;
    height: 20px;
}

/* Inner pages and archive views */
.page-hero,
.listing-hero {
    padding-block: 76px;
    background: var(--navy);
    color: #cbd5e0;
}

.page-hero__inner,
.listing-hero .site-container {
    max-width: 940px;
}

.page-hero h1,
.listing-hero h1 {
    max-width: 850px;
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.page-hero p:not(.section-kicker),
.listing-hero p {
    max-width: 720px;
    margin-bottom: 0;
}

.breadcrumbs {
    display: flex;
    gap: 9px;
    margin-bottom: 24px;
    color: #9ba8b8;
    font-size: 0.72rem;
}

.breadcrumbs a:hover {
    color: var(--amber);
}

.page-context-band {
    padding-block: 42px;
    background: #fff;
}

.page-context-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.page-context-grid article {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.page-context-grid article > span {
    color: var(--teal-dark);
}

.page-context-grid h2 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.page-context-grid p {
    margin-bottom: 0;
    font-size: 0.75rem;
    line-height: 1.55;
}

.page-article-section {
    padding-block: 76px 100px;
    background: var(--page);
}

.page-article-content {
    margin-inline: auto;
    padding: clamp(28px, 5vw, 64px);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 34px rgba(7, 17, 31, 0.07);
}

.listing-section {
    min-height: 48vh;
    padding-block: 72px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.content-card,
.empty-state {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.content-card__meta {
    margin-bottom: 10px;
    color: var(--teal-dark);
    font-size: 0.68rem;
    font-weight: 850;
    text-transform: uppercase;
}

.content-card h2 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.content-card p {
    font-size: 0.82rem;
}

.empty-state {
    grid-column: 1 / -1;
    max-width: 720px;
}

.empty-state h2 {
    font-size: 2rem;
}

.error-hero {
    min-height: 65vh;
    display: grid;
    place-items: center;
    padding-block: 80px;
    background: var(--navy);
    color: #cbd5df;
    text-align: center;
}

.error-hero .site-container {
    max-width: 760px;
}

.error-code {
    margin-bottom: -20px;
    color: rgba(244, 181, 46, 0.16);
    font-family: "Arial Narrow", sans-serif;
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 900;
    line-height: 0.8;
}

.error-hero h1 {
    color: #fff;
}

.error-hero .hero-actions {
    justify-content: center;
}

.search-form {
    max-width: 620px;
    margin-top: 28px;
}

.search-form label {
    display: block;
    margin-bottom: 7px;
    color: #cbd5df;
    font-size: 0.74rem;
    font-weight: 800;
}

.search-form > div {
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: #fff;
}

.search-form input {
    min-width: 0;
    flex: 1 1 auto;
    padding: 12px 16px;
    border: 0;
    color: var(--heading);
}

.search-form button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    border: 0;
    background: var(--amber);
    color: var(--navy);
    font-weight: 850;
    cursor: pointer;
}

.search-form button .ui-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 1120px) {
    .header-inner {
        gap: 16px;
    }

    .primary-menu {
        gap: 12px;
    }

    .primary-menu a {
        font-size: 0.79rem;
    }

    .header-actions .button-quiet {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
        gap: 42px;
    }

    .sports-layout {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
    }

    .quick-card {
        padding: 18px;
    }

    .quick-card__icon {
        margin-bottom: 22px;
    }
}

@media (max-width: 980px) {
    .desktop-nav,
    .header-actions {
        display: none;
    }

    .header-inner {
        min-height: 68px;
    }

    .site-branding {
        margin-right: auto;
    }

    .mobile-explore,
    .menu-toggle {
        display: inline-flex;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 19px;
        height: 2px;
        background: var(--navy);
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
        position: fixed;
        z-index: -1;
        top: 68px;
        right: 0;
        left: 0;
        display: block;
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        border-top: 1px solid var(--line);
        background: #fff;
        box-shadow: 0 20px 50px rgba(7, 17, 31, 0.14);
    }

    .mobile-menu[hidden] {
        display: none;
    }

    .mobile-menu .site-container {
        padding-block: 16px 22px;
    }

    .mobile-menu-list a,
    .mobile-menu .primary-menu a {
        display: block;
        padding: 13px 5px;
        border-bottom: 1px solid var(--line);
        color: var(--heading);
        font-size: 0.95rem;
        font-weight: 800;
    }

    .mobile-menu .primary-menu {
        display: block;
    }

    .mobile-safety-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 13px;
        padding: 13px 15px;
        border-radius: 8px;
        background: var(--navy);
        color: #fff;
        font-size: 0.84rem;
        font-weight: 800;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 350px;
    }

    .hero-copy h1 {
        font-size: clamp(2.65rem, 5vw, 3.6rem);
    }

    .quick-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .quick-card:nth-child(4),
    .quick-card:nth-child(5) {
        min-height: 205px;
    }

    .overview-grid,
    .brand-guide-shell,
    .faq-layout {
        gap: 50px;
    }

    .sports-layout {
        grid-template-columns: 1fr;
    }

    .sports-mini-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .sport-card > div {
        padding: 13px;
    }

    .game-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mobile-grid,
    .safety-grid {
        gap: 50px;
    }

    .account-card ul {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .responsible-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .faq-layout {
        grid-template-columns: 270px minmax(0, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.2fr repeat(3, 0.75fr);
        gap: 30px;
    }
}

@media (max-width: 780px) {
    .site-container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section-space {
        padding-block: 60px;
    }

    .top-notice__inner {
        width: 100%;
        overflow-x: auto;
        padding-inline: 16px;
        scrollbar-width: none;
        white-space: nowrap;
    }

    .top-notice__inner::-webkit-scrollbar {
        display: none;
    }

    .top-notice__reviewed {
        display: none;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 42px;
        padding-block: 48px 58px;
    }

    .hero-copy h1 {
        font-size: clamp(2.125rem, 10vw, 2.4rem);
        line-height: 1.06;
    }

    .hero-dek {
        font-size: 0.98rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .trust-inline {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-image-frame {
        right: 3%;
        width: 88%;
    }

    .hero-image {
        aspect-ratio: 4 / 3.8;
    }

    .visual-card {
        width: 145px;
    }

    .visual-card--cricket {
        left: 0;
    }

    .visual-card--football {
        right: 0;
    }

    .visual-card--casino {
        bottom: 35px;
        left: 0;
    }

    .quick-access {
        padding-block: 42px;
    }

    .quick-track {
        width: calc(100% + 16px);
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 2px 16px 18px 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .quick-track::-webkit-scrollbar {
        display: none;
    }

    .quick-card,
    .quick-card:nth-child(4),
    .quick-card:nth-child(5) {
        width: 78vw;
        min-width: 78vw;
        min-height: 220px;
        scroll-snap-align: start;
    }

    .section-heading--split {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .overview-grid,
    .mobile-grid,
    .safety-grid,
    .brand-guide-shell,
    .faq-layout,
    .payment-heading {
        grid-template-columns: 1fr;
    }

    .fact-panel,
    .brand-guide-intro,
    .faq-heading {
        position: static;
    }

    .sports-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mobile-section::before {
        width: 100%;
        height: 42%;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-grid {
        gap: 54px;
    }

    .mobile-visual {
        width: min(88%, 430px);
    }

    .mobile-image {
        aspect-ratio: 4 / 4.2;
    }

    .mobile-visual__badge {
        right: -8%;
    }

    .account-grid {
        grid-template-columns: 1fr;
    }

    .payment-heading__image {
        order: -1;
        border-radius: 50px 12px 12px 12px;
    }

    .payment-steps {
        grid-template-columns: 1fr;
    }

    .payment-steps article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .payment-steps article:last-child {
        border-bottom: 0;
    }

    .payment-warning {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .payment-warning a {
        grid-column: 2;
    }

    .safety-visual {
        width: min(88%, 470px);
        margin-inline: auto;
    }

    .url-check {
        right: -8%;
    }

    .brand-guide-intro {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 180px;
        gap: 20px;
    }

    .brand-guide-intro .section-kicker,
    .brand-guide-intro h2 {
        grid-column: 1;
    }

    .brand-guide-intro > p:not(.section-kicker) {
        grid-column: 1;
    }

    .brand-guide-image {
        grid-column: 2;
        grid-row: 1 / 5;
        height: 100%;
        margin-top: 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-legal {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .page-context-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    body {
        font-size: 16px;
    }

    .site-container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section-space {
        padding-block: 54px;
    }

    h2 {
        font-size: 2rem;
    }

    .top-notice {
        min-height: 36px;
        font-size: 0.64rem;
    }

    .header-inner,
    .site-header.is-scrolled .header-inner {
        min-height: 62px;
    }

    .brand-word,
    .footer-wordmark > span {
        font-size: 1.25rem;
    }

    .brand-context,
    .footer-wordmark small {
        font-size: 0.5rem;
    }

    .custom-logo,
    .custom-logo-link img,
    .site-branding img,
    .brand-logo img,
    .footer-brand img {
        max-width: 140px;
        max-height: 44px;
    }

    .mobile-explore {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 0.74rem;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .mobile-menu {
        top: 62px;
        max-height: calc(100vh - 62px);
    }

    .hero-grid {
        padding-top: 42px;
    }

    .hero-copy h1 {
        font-size: 2.2rem;
    }

    .hero-dek {
        line-height: 1.6;
    }

    .hero-visual {
        min-height: 335px;
    }

    .visual-card {
        width: 125px;
        padding: 10px 12px;
    }

    .visual-card--cricket {
        top: 33px;
    }

    .visual-card--football {
        top: 108px;
    }

    .visual-card--casino {
        bottom: 28px;
    }

    .visual-safety {
        right: 3px;
        font-size: 0.66rem;
    }

    .quick-card,
    .quick-card:nth-child(4),
    .quick-card:nth-child(5) {
        width: 82vw;
        min-width: 82vw;
    }

    .overview-copy p {
        font-size: 0.96rem;
    }

    .fact-panel dl div {
        grid-template-columns: 0.9fr 1.1fr;
        padding-inline: 18px;
    }

    .sports-mini-grid {
        gap: 12px;
    }

    .sport-card p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }

    .game-grid {
        gap: 12px;
    }

    .game-card__body {
        padding: 15px 14px 17px;
    }

    .game-card h3 {
        font-size: 1.05rem;
    }

    .game-card p {
        display: -webkit-box;
        overflow: hidden;
        font-size: 0.72rem;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }

    .game-card small,
    .game-tags {
        font-size: 0.6rem;
    }

    .game-card__media > span {
        width: 28px;
        height: 28px;
    }

    .mobile-visual {
        width: 88%;
    }

    .mobile-visual__badge,
    .url-check {
        right: -9%;
    }

    .mobile-feature-list article {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .section-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .section-actions .button {
        width: 100%;
    }

    .account-card {
        padding: 25px 22px 27px;
    }

    .account-card__head {
        align-items: flex-start;
    }

    .account-card h3 {
        font-size: 1.4rem;
    }

    .payment-methods {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 7px;
    }

    .payment-methods > div {
        min-height: 82px;
        padding-inline: 3px;
    }

    .payment-methods strong {
        font-size: 0.6rem;
    }

    .payment-steps article {
        padding-inline: 10px;
    }

    .payment-warning {
        padding: 16px;
    }

    .safety-points {
        grid-template-columns: 1fr;
    }

    .responsible-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .responsible-grid > div {
        min-height: 132px;
    }

    .brand-guide-intro {
        display: block;
    }

    .brand-guide-image {
        height: auto;
        margin-top: 24px;
    }

    .wp-content p,
    .wp-content li {
        font-size: 0.98rem;
    }

    .faq-item summary {
        min-height: 76px;
        padding: 14px;
    }

    .faq-item > div {
        padding: 15px 14px 17px 54px;
    }

    .footer-grid {
        display: block;
    }

    .footer-brand {
        margin-bottom: 34px;
    }

    .footer-group {
        border-top: 1px solid var(--line-dark);
    }

    .footer-group summary {
        position: relative;
        margin: 0;
        padding: 16px 24px 16px 0;
        cursor: pointer;
    }

    .footer-group summary::after {
        content: "+";
        position: absolute;
        top: 13px;
        right: 2px;
        color: var(--amber);
        font-size: 1.2rem;
    }

    .footer-group[open] summary::after {
        content: "−";
    }

    .footer-group ul {
        padding-bottom: 18px;
    }

    .footer-legal {
        padding-bottom: 72px;
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
        width: 42px;
        height: 42px;
    }

    .page-hero,
    .listing-hero {
        padding-block: 55px;
    }

    .page-hero h1,
    .listing-hero h1 {
        font-size: 2.45rem;
    }

    .page-context-grid article {
        padding: 18px;
    }

    .page-article-section {
        padding-block: 46px 64px;
    }

    .page-article-content {
        padding: 24px 19px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Structured subpages */
.structured-page {
    overflow: clip;
    background: #fff;
}

.structured-page__context {
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.structured-page__context .site-container {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.structured-page__context .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #687486;
    font-size: 0.8rem;
    font-weight: 750;
}

.structured-page__context .breadcrumbs a:hover,
.source-panel a:hover,
.editorial-record a:hover {
    color: var(--teal-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.review-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.review-line span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #344257;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
}

.review-line .ui-icon {
    width: 15px;
    height: 15px;
    color: var(--teal-dark);
}

.structured-content > * {
    margin-block: 0;
}

.structured-content .sp-hero {
    padding-block: 72px 78px;
}

.structured-content .sp-section {
    padding-block: 88px;
}

.structured-content .sp-section--soft {
    background: #f3f5f7;
}

.structured-content .section-kicker {
    margin-bottom: 14px;
    color: var(--teal-dark);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.structured-content .sp-lead {
    color: #26364b;
    font-size: clamp(1.1rem, 1.65vw, 1.28rem);
    line-height: 1.65;
}

.structured-content p,
.structured-content li {
    line-height: 1.75;
}

.reading-width {
    width: min(calc(100% - 40px), var(--reading));
    margin-inline: auto;
}

.home-context-link {
    margin-top: 28px;
    color: #657183;
    font-size: 0.88rem;
}

.home-context-link a,
.structured-content a:not(.button):not(.sports-story) {
    color: #087d80;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(8, 125, 128, 0.35);
    text-underline-offset: 4px;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 38px;
}

.section-heading--split h2,
.section-heading--split p {
    margin-bottom: 0;
}

.table-scroll {
    overflow-x: auto;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(14, 29, 45, 0.08);
}

.sp-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    color: #3f4b5b;
    font-size: 0.93rem;
}

.sp-table th,
.sp-table td {
    min-width: 180px;
    padding: 17px 20px;
    border-bottom: 1px solid #e1e6eb;
    text-align: left;
    vertical-align: top;
}

.sp-table th {
    background: #111f31;
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sp-table tbody tr:last-child td {
    border-bottom: 0;
}

.sp-table tbody tr:hover {
    background: #f7f9fa;
}

.check-list,
.square-checks {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.square-checks li {
    position: relative;
    padding: 8px 0 8px 28px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 900;
}

.square-checks li::before {
    content: "□";
    position: absolute;
    left: 0;
    color: var(--amber-dark);
    font-weight: 900;
}

/* Login diagnostic centre */
.sp-hero--diagnostic {
    background: linear-gradient(135deg, #091525, #13243a);
    color: #c7d0db;
}

.sp-hero--diagnostic h1,
.sp-hero--diagnostic h2,
.sp-hero--diagnostic .sp-lead {
    color: #fff;
}

.diagnostic-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: 72px;
}

.account-check-panel {
    padding: 28px;
    border: 1px solid rgba(244, 181, 46, 0.45);
    border-top: 5px solid var(--amber);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
}

.panel-status,
.permission-panel > span,
.live-feature-image > span,
.risk-comparison section > span,
.payment-warning > span,
.warning-sign-list > span,
.site-boundary > span {
    color: var(--amber);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.issue-centre {
    background: #f7f9fb;
}

.issue-selector {
    display: grid;
    gap: 10px;
}

.issue-selector button {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border: 1px solid #d7dde4;
    border-radius: 10px;
    background: #fff;
    color: #1a2a3d;
    font-weight: 850;
    text-align: left;
    cursor: pointer;
}

.issue-selector button span {
    color: #96a0ac;
    font-size: 0.75rem;
}

.issue-selector button[aria-selected="true"] {
    border-color: var(--teal);
    background: #eaf7f7;
    box-shadow: inset 5px 0 0 var(--teal);
}

.issue-panels {
    margin-top: 18px;
    padding: 30px;
    border-radius: 12px;
    background: #101e30;
    color: #c2ccd7;
}

.issue-panels h3 {
    color: #fff;
    font-size: 1.7rem;
}

.issue-panels p:last-child {
    margin-bottom: 0;
}

.diagnostic-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.7fr);
    gap: 72px;
    align-items: start;
}

.vertical-timeline {
    position: relative;
}

.vertical-timeline::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 25px;
    width: 2px;
    background: #dce2e8;
}

.vertical-timeline article {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 24px;
    padding-bottom: 36px;
}

.vertical-timeline article > span {
    z-index: 1;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 5px solid #fff;
    border-radius: 50%;
    background: var(--amber);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 900;
}

.vertical-timeline h3 {
    margin-bottom: 10px;
}

.diagnostic-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 18px;
}

.sidebar-card {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(7, 17, 31, 0.07);
}

.sidebar-card h2 {
    font-size: 1.45rem;
}

.sidebar-card--index {
    display: grid;
    background: #101e30;
}

.sidebar-card--index h2 {
    color: #fff;
}

.sidebar-card--index a {
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #d8e0e8 !important;
    text-decoration: none !important;
}

.danger-note {
    margin-top: 36px;
    padding: 28px 30px;
    border: 1px solid #d26767;
    border-left: 5px solid var(--danger);
    border-radius: 10px;
    background: #fffafa;
}

.danger-note h2 {
    color: #8e2929;
    font-size: 1.6rem;
}

.native-faq details {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
}

.native-faq summary,
.faq-knowledge-base summary {
    min-height: 64px;
    padding: 18px 52px 18px 20px;
    color: var(--heading);
    font-weight: 850;
    cursor: pointer;
}

.native-faq details p,
.faq-knowledge-base details p {
    padding: 0 20px 20px;
}

/* Mobile product page */
.sp-hero--mobile {
    background: #eaf1f4;
}

.mobile-hero-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 80px;
}

.device-stage {
    position: relative;
    display: grid;
    min-height: 480px;
    place-items: center;
    border-radius: 32px;
    background: radial-gradient(circle at 50% 40%, #ffffff 0 32%, #d7e7eb 33% 55%, transparent 56%);
}

.phone-shell {
    width: min(78%, 330px);
    padding: 8px;
    transform: rotate(-4deg);
    border: 9px solid #101d2e;
    border-radius: 34px;
    background: #101d2e;
    box-shadow: 0 35px 70px rgba(7, 17, 31, 0.28);
}

.phone-shell img {
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    object-fit: cover;
}

.device-badge {
    position: absolute;
    right: 3%;
    bottom: 12%;
    padding: 10px 14px;
    transform: rotate(4deg);
    border-radius: 6px;
    background: var(--amber);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.device-switch-section {
    padding-block: 28px 0;
    background: #0c192a;
}

.device-tabs {
    display: flex;
    gap: 8px;
}

.device-tabs button {
    min-height: 52px;
    padding: 12px 24px;
    border: 0;
    border-radius: 10px 10px 0 0;
    background: #17283e;
    color: #b7c1cd;
    font-weight: 850;
    cursor: pointer;
}

.device-tabs button[aria-selected="true"] {
    background: #fff;
    color: var(--navy);
}

.device-tab-panels {
    padding: 35px;
    border-radius: 0 14px 14px 14px;
    background: #fff;
    transform: translateY(22px);
    box-shadow: var(--shadow);
}

.device-tab-panels section {
    display: grid;
    grid-template-columns: 100px 1fr 1.25fr auto;
    align-items: center;
    gap: 24px;
}

.device-tab-panels section > span {
    color: var(--teal-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.device-tab-panels h2,
.device-tab-panels p {
    margin-bottom: 0;
}

.android-zone {
    background: #0b1727;
    color: #c4ced8;
}

.android-zone h2,
.android-zone h3 {
    color: #fff;
}

.android-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 80px;
}

.permission-panel {
    padding: 30px;
    border-radius: 16px;
    background: #fff;
    color: #485466;
}

.permission-panel h2 {
    color: var(--heading);
    font-size: 1.8rem;
}

.micro-warning {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: #8a3b3b;
    font-size: 0.86rem;
    font-weight: 800;
}

.ios-zone {
    background: #eef1f4;
}

.ios-layout {
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    gap: 64px;
}

.ios-number {
    display: grid;
    min-height: 340px;
    place-items: center;
    border: 1px solid #ccd4dc;
    border-radius: 40% 40% 20px 20px;
    color: #9da8b3;
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.08em;
}

.safari-note {
    margin-top: 30px;
    padding: 24px;
    border-left: 4px solid var(--teal);
    background: #fff;
}

.browser-zone {
    background: #fff;
}

.browser-window {
    overflow: hidden;
    border: 1px solid #cfd6dd;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.browser-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: #e8ecef;
}

.browser-chrome i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #9ba6b1;
}

.browser-chrome span {
    width: min(70%, 620px);
    margin-left: 15px;
    padding: 6px 14px;
    border-radius: 6px;
    background: #fff;
    color: #667384;
    font-size: 0.78rem;
}

.browser-copy {
    width: min(100%, 820px);
    padding: 45px;
}

.app-troubleshooting {
    background: #f3f5f7;
}

.trouble-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
    border-top: 1px solid #cfd6dd;
    border-bottom: 1px solid #cfd6dd;
}

.trouble-columns article {
    padding: 28px;
    border-right: 1px solid #cfd6dd;
}

.trouble-columns article:last-child {
    border-right: 0;
}

.trouble-columns article > span {
    color: var(--teal-dark);
    font-size: 0.72rem;
    font-weight: 900;
}

/* Sports magazine */
.sports-mag-hero {
    background: #0a1626;
    color: #c5ced8;
}

.sports-cover-grid {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
    gap: 18px;
}

.sports-cover {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 16px;
}

.sports-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 10, 18, 0.94), transparent 72%);
}

.sports-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sports-cover__copy {
    position: absolute;
    z-index: 1;
    right: 38px;
    bottom: 34px;
    left: 38px;
}

.sports-cover__copy h1 {
    max-width: 720px;
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.35rem);
}

.sports-briefs {
    display: grid;
    gap: 18px;
}

.sports-briefs article {
    padding: 25px;
    border-top: 4px solid var(--amber);
    background: #13243a;
}

.sports-briefs span,
.sports-story span,
.cover-index > span {
    color: var(--amber);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.sports-briefs h2 {
    margin: 8px 0;
    color: #fff;
    font-size: 1.35rem;
}

.sports-hero-note {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-top: 32px;
}

.sports-hero-note > p:first-child {
    max-width: 720px;
}

.sports-category-nav {
    position: sticky;
    z-index: 20;
    top: 74px;
    border-bottom: 1px solid #d9dfe5;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
}

.sports-category-nav .site-container {
    display: flex;
    overflow-x: auto;
}

.sports-category-nav a {
    min-width: max-content;
    padding: 17px 25px;
    border-right: 1px solid #e0e5ea;
    color: #1d3047 !important;
    font-size: 0.84rem;
    font-weight: 850;
    text-decoration: none !important;
}

.magazine-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.5fr);
    gap: 70px;
    margin-bottom: 42px;
}

.cover-index {
    padding: 25px;
    border-left: 5px solid var(--amber);
    background: #eef1f4;
}

.cover-index ol {
    padding-left: 24px;
}

.sports-market-table td:first-child {
    color: var(--heading);
    font-weight: 850;
}

.sports-wall {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(150px, auto);
    gap: 18px;
}

.sports-story {
    grid-column: span 5;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(7, 17, 31, 0.09);
}

.sports-story--wide {
    grid-column: span 7;
}

.sports-story--tall {
    grid-row: span 2;
}

.sports-story--text {
    grid-column: span 7;
    display: flex;
    align-items: flex-end;
    background: #14243a;
}

.sports-story img {
    width: 100%;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
}

.sports-story--tall img {
    aspect-ratio: 4 / 3.7;
}

.sports-story > div {
    padding: 25px;
}

.sports-story h3 {
    margin: 9px 0 11px;
}

.sports-story--text h3,
.sports-story--text p {
    color: #fff;
}

.match-mode {
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
    align-items: stretch;
    margin-top: 40px;
}

.match-mode section {
    padding: 40px;
    border: 1px solid #cfd7df;
}

.match-mode > div {
    display: grid;
    place-items: center;
    background: var(--amber);
    color: var(--navy);
    font-weight: 900;
}

.match-mode span {
    color: var(--teal-dark);
    font-size: 0.7rem;
    font-weight: 900;
}

.sports-rules-section {
    background: #0d1a2b;
    color: #c4ced8;
}

.sports-rules-section h2 {
    color: #fff;
}

.rules-ledger {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 70px;
}

.number-ledger {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.number-ledger li {
    display: grid;
    grid-template-columns: 52px 1fr;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.number-ledger span {
    color: var(--amber);
    font-weight: 900;
}

.prohibited-sports {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 5px solid #d86969;
    background: #13243a;
}

.prohibited-sports a {
    color: #64d9d9 !important;
}

/* Casino visual catalogue */
.structured-page--casino-games {
    background: #07111f;
}

.structured-page--casino-games .structured-page__context {
    border-color: rgba(255, 255, 255, 0.12);
    background: #07111f;
}

.structured-page--casino-games .breadcrumbs,
.structured-page--casino-games .review-line span {
    color: #c0cad5;
}

.structured-page--casino-games .review-line span {
    border-color: rgba(255, 255, 255, 0.18);
}

.casino-catalog-hero {
    background: radial-gradient(circle at 80% 25%, #22395b, #07111f 54%);
    color: #c2ccd7;
}

.casino-catalog-hero h1,
.casino-catalog-hero .sp-lead {
    color: #fff;
}

.casino-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
}

.casino-hero-collage {
    position: relative;
    min-height: 480px;
}

.casino-hero-collage img {
    position: absolute;
    width: 76%;
    border: 8px solid #101e30;
    border-radius: 16px;
    box-shadow: var(--shadow-strong);
}

.casino-hero-collage img:first-child {
    top: 0;
    right: 0;
}

.casino-hero-collage img:last-child {
    bottom: 0;
    left: 0;
}

.game-navigator {
    position: sticky;
    z-index: 20;
    top: 74px;
    border-block: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 17, 31, 0.96);
}

.game-navigator .site-container {
    display: flex;
    overflow-x: auto;
}

.game-navigator a {
    min-width: max-content;
    padding: 18px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5df !important;
    font-size: 0.82rem;
    font-weight: 850;
    text-decoration: none !important;
}

.casino-live-feature {
    background: #0a1626;
    color: #c3cdd8;
}

.casino-live-feature h2,
.casino-live-feature h3 {
    color: #fff;
}

.live-feature-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 72px;
}

.live-feature-image {
    position: relative;
}

.live-feature-image img {
    width: 100%;
    min-height: 530px;
    border-radius: 14px;
    object-fit: cover;
}

.live-feature-image > span {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 12px 18px;
    background: var(--amber);
    color: var(--navy);
}

.live-checklist {
    margin-top: 28px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #112239;
}

.live-checklist .square-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.slot-cover-section {
    background: #111f31;
    color: #c5cfda;
}

.slot-cover-section h2 {
    color: #fff;
}

.slot-cover-wall {
    display: grid;
    grid-template-columns: 1fr 0.8fr 0.75fr;
    gap: 18px;
    align-items: stretch;
}

.slot-cover-wall figure {
    margin: 0;
    overflow: hidden;
    background: #182a43;
}

.slot-cover-wall img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.slot-cover-wall figcaption {
    padding: 13px 16px;
    color: #dfe5eb;
    font-size: 0.8rem;
    font-weight: 800;
}

.slot-editorial {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border-top: 5px solid var(--amber);
    background: #f7f5ee;
    color: #3f4b5a;
}

.white-rules-band {
    margin-top: 28px;
}

.table-games-band {
    background: #f6f7f8;
}

.table-games-heading {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 28px;
}

.table-games-heading img {
    width: 100%;
    height: 190px;
    border-radius: 12px;
    object-fit: cover;
}

.category-ribbon {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: center;
    gap: 30px;
    margin-top: 24px;
    padding: 18px;
    background: #fff;
}

.category-ribbon img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.arcade-section {
    background: #091524;
    color: #c5cfda;
}

.arcade-section h2 {
    color: #fff;
}

.arcade-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.arcade-grid img {
    min-height: 390px;
    border-radius: 50% 14px 14px 14px;
    object-fit: cover;
}

.arcade-grid a {
    color: #73d7d7 !important;
}

.game-page-steps {
    background: #fff;
}

.game-page-steps ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 38px 0 0;
    padding: 0;
    border-top: 1px solid #ccd4dc;
    border-left: 1px solid #ccd4dc;
    list-style: none;
}

.game-page-steps li {
    min-height: 220px;
    padding: 24px;
    border-right: 1px solid #ccd4dc;
    border-bottom: 1px solid #ccd4dc;
}

.game-page-steps li > span {
    display: block;
    margin-bottom: 34px;
    color: var(--amber-dark);
    font-size: 1.8rem;
    font-weight: 900;
}

.game-page-steps li > strong {
    color: var(--heading);
}

/* Payment process */
.payment-process-hero {
    border-bottom: 8px solid var(--amber);
    background: #e9edf1;
}

.payment-hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: center;
    gap: 80px;
}

.payment-scope {
    padding: 28px;
    border-radius: 10px;
    background: #0e1c2f;
    color: #c8d1dc;
    box-shadow: var(--shadow);
}

.payment-scope > span,
.matrix-rule > span,
.update-stamp,
.incident-label > span,
.contact-scope-panel section > span,
.contact-alternative-section span {
    color: var(--amber-dark);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.payment-scope h2 {
    color: #fff;
    font-size: 1.6rem;
}

.payment-scope dl {
    margin: 0;
}

.payment-scope dl div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.payment-scope dt {
    color: #98a6b5;
}

.payment-scope dd {
    margin: 0;
    color: #fff;
    font-weight: 850;
}

.transaction-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.transaction-timeline::before {
    content: "";
    position: absolute;
    top: 30px;
    right: 10%;
    left: 10%;
    height: 2px;
    background: #cbd3db;
}

.transaction-timeline article {
    position: relative;
    padding: 68px 26px 26px;
    border: 1px solid #d6dde4;
    background: #fff;
}

.transaction-timeline article > span {
    position: absolute;
    z-index: 1;
    top: 8px;
    left: 24px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: var(--amber);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 900;
}

.payment-matrix-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 50px;
    align-items: end;
}

.matrix-rule {
    padding: 32px;
    border-top: 6px solid var(--amber);
    background: #fff;
}

.matrix-rule strong {
    display: block;
    margin: 16px 0;
    color: var(--heading);
    font-size: 1.8rem;
    line-height: 1.2;
}

.status-ledger {
    border-top: 1px solid #cfd6dd;
}

.status-ledger article {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid #cfd6dd;
}

.status-ledger h3,
.status-ledger p {
    margin-bottom: 6px;
}

.status-dot {
    width: 12px;
    height: 12px;
    margin-top: 7px;
    border-radius: 50%;
    background: #9aa5b1;
}

.status-dot--pending { background: var(--amber); }
.status-dot--rejected { background: #c34f4f; }
.status-dot--reversed { background: #6584a8; }
.status-dot--review { background: var(--teal); }

.payment-risk-section {
    background: #fff;
}

.risk-matrix {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
}

.payment-warning {
    padding: 38px;
    border: 2px solid var(--amber);
    background: #0b1421;
    color: #d0d7df;
}

.payment-warning h2 {
    color: #fff;
}

.evidence-list {
    padding: 38px;
    background: #eef1f4;
}

.evidence-list ol {
    padding-left: 24px;
}

/* Safety dashboard */
.safety-dashboard-hero {
    background: #eef2f5;
}

.dashboard-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.safety-status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 50px;
}

.safety-status-grid a {
    display: flex;
    min-height: 155px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    border: 1px solid #d1d8df;
    background: #fff;
    color: var(--heading) !important;
    text-decoration: none !important;
}

.safety-status-grid a:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
}

.safety-status-grid span {
    margin-bottom: auto;
    color: var(--teal-dark);
    font-size: 0.72rem;
    font-weight: 900;
}

.safety-status-grid strong {
    font-size: 1.2rem;
}

.safety-status-grid small {
    color: #6e7987;
}

.risk-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 36px;
}

.risk-comparison section {
    padding: 38px;
}

.lower-risk {
    border: 1px solid #add3c6;
    background: #eff9f5;
}

.higher-risk {
    background: #111d2e;
    color: #cbd3dc;
}

.higher-risk h3 {
    color: #fff;
}

.higher-risk > span {
    color: #ff8a8a !important;
}

.url-flow-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
}

.url-flow {
    margin: 0;
    padding: 0;
    border-top: 1px solid #ccd4dc;
    list-style: none;
}

.url-flow li {
    display: grid;
    grid-template-columns: 64px 1fr;
    padding: 18px 0;
    border-bottom: 1px solid #ccd4dc;
}

.url-flow span {
    color: var(--teal-dark);
    font-weight: 900;
}

.url-flow p {
    margin: 0;
}

.protection-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 38px;
}

.protection-mosaic article {
    min-height: 230px;
    padding: 24px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(7, 17, 31, 0.06);
}

.protection-mosaic__large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 474px !important;
    background: #122239 !important;
    color: #cbd4dd;
}

.protection-mosaic__large h3 {
    color: #fff;
    font-size: 2rem;
}

.protection-mosaic__wide {
    grid-column: span 2;
}

.protection-mosaic article > span {
    color: var(--teal-dark);
    font-size: 0.72rem;
    font-weight: 900;
}

.decision-layout {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 70px;
}

.decision-tree article {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    border-top: 1px solid #cfd6dd;
}

.decision-tree article > * {
    margin: 0;
    padding: 20px;
    border-right: 1px solid #cfd6dd;
}

.decision-tree article > div strong {
    color: var(--teal-dark);
}

.decision-tree article > div p {
    margin: 3px 0 0;
    font-size: 0.88rem;
}

.incident-response-section {
    background: #101d2e;
    color: #ccd5df;
}

.incident-response-section h2 {
    color: #fff;
}

.incident-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
}

.incident-grid ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0;
    padding-left: 28px;
}

.incident-grid li {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* India legal news explainer */
.structured-page--india-legal-status {
    color: #344254;
}

.legal-news-hero {
    padding-top: 0 !important;
    background: #fff;
}

.legal-status-bar {
    margin-bottom: 70px;
    padding: 14px 0;
    border-block: 1px solid #e3c068;
    background: #fff6d6;
}

.legal-status-bar .site-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.legal-hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 80px;
}

.legal-hero-index,
.legal-source-rail {
    padding: 28px;
    border-left: 5px solid var(--amber);
    background: #f1f3f5;
}

.legal-hero-index > span,
.legal-source-rail::before,
.document-code {
    color: var(--amber-dark);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.legal-hero-index h2,
.legal-source-rail h2 {
    font-size: 1.45rem;
}

.legal-two-column {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 80px;
    align-items: start;
}

.legal-timeline {
    position: relative;
    margin-top: 36px;
    padding-left: 42px;
}

.legal-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 9px;
    width: 3px;
    background: #d4dae0;
}

.legal-timeline article {
    position: relative;
    padding: 0 0 40px 12px;
}

.legal-timeline article::before {
    content: "";
    position: absolute;
    top: 7px;
    left: -41px;
    width: 17px;
    height: 17px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 0 1px #c5ccd3;
}

.legal-timeline time {
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-source-rail {
    position: sticky;
    top: 110px;
}

.prohibition-section {
    background: #102036;
    color: #cad3dc;
}

.prohibition-section h2 {
    color: #fff;
}

.prohibition-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.prohibition-numbers article {
    min-height: 230px;
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.prohibition-numbers span {
    display: block;
    margin-bottom: 50px;
    color: var(--amber);
    font-size: 2.2rem;
    font-weight: 900;
}

.prohibition-numbers p {
    color: #fff;
    font-weight: 800;
}

.legal-caveat {
    margin: 26px 0 0;
    color: #9fabb8;
    font-size: 0.84rem;
}

.site-impact-grid,
.claims-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 70px;
}

.site-boundary {
    padding: 30px;
    background: #fff;
}

.site-boundary ul {
    padding-left: 22px;
}

.claims-grid blockquote {
    margin: 0;
    padding: 30px;
    border: 0;
    border-left: 5px solid #c75a5a;
    background: #fff5f5;
}

.claims-grid blockquote p {
    padding-bottom: 10px;
    border-bottom: 1px solid #ead4d4;
    color: #7c3030;
    font-weight: 800;
}

.editorial-update-section {
    border-top: 1px solid #d7dde3;
    background: #f8f9fa;
}

/* Responsible gaming calm layout */
.structured-page--responsible-gaming,
.structured-page--responsible-gaming .structured-page__context {
    background: #f5f1e7;
}

.structured-page--responsible-gaming h1,
.structured-page--responsible-gaming h2,
.structured-page--responsible-gaming h3 {
    color: #244a3a;
}

.calm-hero {
    padding-block: 100px !important;
    background: #f5f1e7;
}

.calm-two-column {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 80px;
    align-items: start;
}

.limit-planner {
    display: grid;
    gap: 16px;
    margin-top: 30px;
    padding: 32px;
    border: 1px solid #d8d2c5;
    border-radius: 12px;
    background: #fff;
}

.limit-planner > label {
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e0d6;
    color: #334b40;
    font-weight: 800;
}

.limit-planner input[type="number"],
.limit-planner input[type="time"] {
    width: 140px;
    min-height: 44px;
    padding: 8px;
    border: 1px solid #c7c2b7;
    border-radius: 6px;
    background: #fbfaf7;
}

.limit-planner fieldset {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid #ded8cd;
}

.limit-planner legend {
    padding: 0 8px;
    color: #244a3a;
    font-weight: 850;
}

.limit-planner button {
    min-height: 46px;
    border: 1px solid #7c9186;
    border-radius: 7px;
    background: transparent;
    color: #244a3a;
    font-weight: 800;
    cursor: pointer;
}

.planner-principle {
    padding: 34px;
    border-top: 6px solid #486f5c;
    background: #244a3a;
    color: #edf4ef;
}

.planner-principle span {
    color: #d7c992;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.planner-principle blockquote {
    margin: 22px 0 0;
    color: #fff;
    font-size: 1.55rem;
    line-height: 1.45;
}

.warning-signs-section {
    background: #e8eee8;
}

.calm-two-column--reverse {
    grid-template-columns: 0.85fr 1.15fr;
}

.warning-sign-list {
    padding: 30px;
    background: #fff;
}

.warning-sign-list > span {
    color: #486f5c;
}

.five-rules {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 38px;
}

.five-rules article {
    min-height: 280px;
    padding: 24px;
    border: 1px solid #d8d2c5;
    background: #fff;
}

.five-rules span {
    display: block;
    margin-bottom: 50px;
    color: #769080;
    font-weight: 900;
}

.self-check-section {
    background: #244a3a;
    color: #e8f0eb;
}

.self-check-section h2 {
    color: #fff;
}

.self-check-section ol {
    padding-left: 24px;
}

.self-check-section li {
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.self-check-result {
    margin-top: 30px;
    padding: 20px;
    border-left: 4px solid #d7c992;
    background: rgba(255, 255, 255, 0.08);
}

.self-check-section a {
    color: #f2df9c !important;
}

/* Searchable FAQ library */
.faq-library-hero {
    background: #101d2e;
    color: #c6d0da;
}

.faq-library-hero h1,
.faq-library-hero .sp-lead {
    color: #fff;
}

.faq-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 80px;
}

.faq-search-box {
    padding: 30px;
    border-radius: 14px;
    background: #fff;
    color: #485465;
}

.faq-search-box label {
    display: block;
    margin-bottom: 9px;
    color: var(--heading);
    font-weight: 850;
}

.faq-search-box > div {
    position: relative;
}

.faq-search-box input {
    width: 100%;
    min-height: 56px;
    padding: 12px 48px 12px 15px;
    border: 1px solid #bcc6d0;
    border-radius: 8px;
}

.faq-search-box > div span {
    position: absolute;
    top: 8px;
    right: 15px;
    color: var(--teal-dark);
    font-size: 1.7rem;
}

.faq-search-box > p {
    margin: 10px 0 0;
    font-size: 0.8rem;
}

.faq-library-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

.faq-category-nav {
    position: sticky;
    top: 110px;
    display: grid;
    border: 1px solid #d7dde3;
    background: #f5f7f8;
}

.faq-category-nav > span {
    padding: 18px;
    color: #6f7b88;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.faq-category-nav button {
    min-height: 48px;
    padding: 10px 18px;
    border: 0;
    border-top: 1px solid #d7dde3;
    background: transparent;
    color: #344255;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.faq-category-nav button.is-active {
    box-shadow: inset 4px 0 0 var(--teal);
    background: #fff;
    color: var(--teal-dark);
}

.faq-knowledge-base section {
    margin-bottom: 46px;
}

.faq-knowledge-base section h2 {
    padding-bottom: 14px;
    border-bottom: 3px solid #17263a;
    font-size: 2rem;
}

.faq-knowledge-base details {
    border-bottom: 1px solid #d7dde3;
}

.faq-no-results {
    padding: 25px;
    background: #fff5d8;
}

/* About page */
.about-editorial-hero {
    background: #eef1f4;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.about-hero-grid figure {
    margin: 0;
    padding: 14px;
    background: #fff;
    box-shadow: var(--shadow);
}

.about-hero-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-hero-grid figcaption {
    padding: 12px 4px 0;
    color: #687484;
    font-size: 0.8rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.mission-grid > div {
    padding-top: 22px;
    border-top: 5px solid var(--amber);
}

.mission-grid span {
    color: var(--teal-dark);
    font-size: 0.72rem;
    font-weight: 900;
}

.boundary-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 70px;
}

.boundary-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.boundary-list article {
    padding: 24px;
    background: #fff;
}

.boundary-list strong {
    color: var(--heading);
    font-size: 1.12rem;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 38px 0 28px;
    padding: 0;
    list-style: none;
}

.workflow-steps li {
    padding: 25px;
    border-top: 1px solid #ccd4dc;
    border-right: 1px solid #ccd4dc;
}

.workflow-steps span {
    display: block;
    margin-bottom: 35px;
    color: var(--teal-dark);
    font-weight: 900;
}

/* Editorial policy document */
.policy-document-hero {
    border-bottom: 1px solid #cfd6dd;
    background: #fff;
}

.policy-title-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.document-code {
    display: block;
    margin-bottom: 20px;
}

.policy-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 70px;
    align-items: start;
}

.policy-index {
    position: sticky;
    top: 110px;
    display: grid;
    padding: 22px;
    border: 1px solid #d6dde3;
    background: #f5f7f8;
}

.policy-index > span {
    margin-bottom: 12px;
    color: #76818e;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.policy-index a {
    padding: 8px 0;
    color: #304054 !important;
    font-size: 0.86rem;
    text-decoration: none !important;
}

.policy-clauses section {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 22px;
    padding: 0 0 42px;
    border-bottom: 1px solid #d7dde3;
    margin-bottom: 42px;
}

.policy-clauses section > span {
    color: #a4aeb9;
    font-size: 1.6rem;
    font-weight: 900;
}

.policy-checklist {
    padding: 0;
    list-style: none;
}

.policy-checklist li {
    position: relative;
    padding: 14px 15px 14px 45px;
    border-bottom: 1px solid #d6dde3;
}

.policy-checklist li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    color: var(--teal-dark);
    font-weight: 900;
}

/* Contact editorial desk */
.contact-desk-hero {
    border-bottom: 1px solid #ccd4dc;
    background: #eaf0f3;
}

.contact-desk-hero .reading-width {
    margin-left: max(20px, calc((100vw - min(100vw - 40px, 1200px)) / 2));
    margin-right: auto;
}

.contact-workspace {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 45px;
    align-items: start;
}

.editorial-form-panel {
    padding: 38px;
    border: 1px solid #d6dde3;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
}

.editorial-contact-form {
    display: grid;
    gap: 17px;
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.editorial-contact-form label {
    display: grid;
    gap: 7px;
    color: #344254;
    font-size: 0.86rem;
    font-weight: 800;
}

.editorial-contact-form input,
.editorial-contact-form select,
.editorial-contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid #bfc9d3;
    border-radius: 7px;
    background: #fbfcfd;
    color: #263548;
    font: inherit;
}

/* 10 July 2026 scoped remediation modules */
.method-disclaimer,
.method-context {
    max-width: 860px;
    margin: 18px auto 0;
    text-align: center;
}

.method-disclaimer {
    padding: 14px 18px;
    border: 1px solid rgba(20, 32, 51, 0.14);
    border-radius: 10px;
    background: #fff8e7;
    color: #354255;
    font-weight: 700;
}

.continue-reading {
    padding: 54px 0;
    background: #f4f6f8;
    border-top: 1px solid rgba(20, 32, 51, 0.08);
}

.continue-reading h2 {
    margin: 4px 0 24px;
    color: #142033;
}

.continue-reading__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.continue-reading__links a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 52px;
    padding: 13px 18px;
    border: 1px solid rgba(20, 32, 51, 0.12);
    border-radius: 10px;
    background: #fff;
    color: #142033;
    font-weight: 800;
    text-decoration: none;
}

.continue-reading__links a:hover,
.continue-reading__links a:focus-visible {
    border-color: #f4b52e;
    box-shadow: 0 10px 28px rgba(7, 17, 31, 0.08);
}

.interface-example-note {
    margin: 12px 0 0;
    padding: 10px 14px;
    border-left: 3px solid #f4b52e;
    background: rgba(244, 181, 46, 0.12);
    color: #354255;
    font-size: 0.92rem;
    font-weight: 700;
}

.diagnostic-accordion {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.diagnostic-accordion details {
    align-self: start;
    border: 1px solid rgba(20, 32, 51, 0.12);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.diagnostic-accordion summary {
    min-height: 52px;
    padding: 15px 18px;
    color: #142033;
    cursor: pointer;
    font-weight: 850;
}

.diagnostic-accordion details p {
    margin: 0;
    padding: 0 18px 20px;
}

.apk-inspection-grid,
.safe-data-grid,
.tele-manas-grid,
.about-scope-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(26px, 5vw, 64px);
    align-items: start;
}

.apk-inspection-grid > div:last-child,
.tele-manas-grid aside,
.about-scope-grid section {
    padding: clamp(24px, 4vw, 40px);
    border-radius: 16px;
    background: #f4f6f8;
}

.permission-list,
.domain-risk-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    padding-left: 20px;
}

.warning-note,
.educational-note,
.legal-advice-notice {
    padding: 16px 18px;
    border-left: 4px solid #f4b52e;
    background: #fff7df;
    color: #28374a;
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.glossary-grid article {
    padding: 24px;
    border-top: 4px solid #17a2a4;
    border-radius: 0 0 14px 14px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(7, 17, 31, 0.07);
}

.casino-slot-cover-image,
.casino-instant-cover-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.casino-image-record {
    background: #f4f6f8;
}

.status-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 30px;
    border: 1px solid rgba(20, 32, 51, 0.12);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.status-flow-grid article {
    padding: 26px 22px;
    border-right: 1px solid rgba(20, 32, 51, 0.1);
}

.status-flow-grid article:last-child {
    border-right: 0;
}

.status-flow-grid span {
    color: #c17d00;
    font-size: 1.6rem;
    font-weight: 900;
}

.safe-data-grid section {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(20, 32, 51, 0.12);
    border-radius: 16px;
    background: #fff;
}

.safe-data-grid__never {
    border-color: rgba(174, 48, 48, 0.35) !important;
    background: #fff8f8 !important;
}

.padlock-explainer {
    background: #eef7f7;
}

.incident-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 32px;
    padding-left: 28px;
}

.incident-steps li {
    padding: 9px 0;
    color: #273649;
    font-weight: 700;
}

.legal-source-register,
.legal-revision-history {
    background: #f7f8fa;
}

.claim-caution {
    padding: 26px;
    border: 1px solid rgba(244, 181, 46, 0.58);
    border-radius: 14px;
    background: #fff8e7;
}

.tele-manas-section {
    background: #eef3ec;
}

.tele-manas-grid a {
    color: #174f3b;
    font-weight: 800;
}

.faq-no-results > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.faq-no-results button {
    min-height: 44px;
    padding: 10px 15px;
    border: 1px solid rgba(20, 32, 51, 0.16);
    border-radius: 8px;
    background: #fff;
    color: #142033;
    cursor: pointer;
    font-weight: 800;
}

.about-scope-grid section:first-child {
    border-top: 5px solid #17a2a4;
}

.about-scope-grid section:last-child {
    border-top: 5px solid #f4b52e;
}

.editorial-responsibility-grid,
.source-status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.editorial-responsibility-grid section,
.source-status-grid article {
    padding: 24px;
    border: 1px solid rgba(20, 32, 51, 0.11);
    border-radius: 14px;
    background: #fff;
}

.editorial-revision-note {
    margin-top: 28px;
    padding: 26px;
    border-left: 4px solid #f4b52e;
    background: #f4f6f8;
}

.sources-register-hero,
.privacy-document-hero,
.terms-document-hero {
    background: linear-gradient(135deg, #eef2f5, #fff);
    color: #142033;
}

.privacy-policy-body h2,
.terms-policy-body h2 {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid rgba(20, 32, 51, 0.1);
}

.privacy-policy-body h2:first-child,
.terms-policy-body h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.sp-section[id],
.structured-content [id],
#overview,
#sports,
#games,
#mobile,
#payments,
#safety,
#faq {
    scroll-margin-top: 118px;
}

.button,
.menu-toggle,
.faq-category-nav button,
summary {
    min-height: 44px;
}

@media (max-width: 900px) {
    .glossary-grid,
    .editorial-responsibility-grid,
    .source-status-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .status-flow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .status-flow-grid article:nth-child(2) {
        border-right: 0;
    }

    .status-flow-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(20, 32, 51, 0.1);
    }
}

@media (max-width: 720px) {
    .structured-content h1,
    .hero h1,
    .page-hero h1 {
        font-size: clamp(2rem, 9vw, 2.45rem);
        line-height: 1.08;
    }

    .diagnostic-accordion,
    .apk-inspection-grid,
    .safe-data-grid,
    .tele-manas-grid,
    .about-scope-grid,
    .glossary-grid,
    .editorial-responsibility-grid,
    .source-status-grid,
    .incident-steps {
        grid-template-columns: 1fr;
    }

    .permission-list,
    .domain-risk-list {
        grid-template-columns: 1fr;
    }

    .status-flow-grid {
        grid-template-columns: 1fr;
    }

    .status-flow-grid article,
    .status-flow-grid article:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(20, 32, 51, 0.1);
    }

    .status-flow-grid article:last-child {
        border-bottom: 0;
    }

    .continue-reading__links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .continue-reading__links a {
        width: 100%;
    }
}

.editorial-contact-form textarea {
    resize: vertical;
}

.form-safety-confirm {
    display: flex !important;
    align-items: flex-start;
    grid-template-columns: none !important;
    font-weight: 650 !important;
}

.form-safety-confirm input {
    width: 20px;
    min-height: 20px;
    flex: 0 0 auto;
    margin-top: 3px;
}

.form-privacy-note,
.form-status {
    margin: 0;
    color: #697585;
    font-size: 0.78rem;
}

.contact-scope-panel {
    display: grid;
    gap: 18px;
}

.contact-scope-panel section {
    padding: 30px;
    background: #eef2f5;
}

.contact-scope-panel section:last-child {
    border-left: 5px solid #c05555;
    background: #111d2e;
    color: #ccd5df;
}

.contact-scope-panel section:last-child h2 {
    color: #fff;
}

.contact-alternative-section {
    border-top: 1px solid #d6dde3;
    background: #f7f8f9;
}

/* Shared editorial record and disclaimer */
.editorial-record {
    padding-block: 72px;
    border-top: 1px solid #d7dde3;
    background: #eef1f4;
}

.editorial-record__grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 60px;
}

.editorial-record h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.editorial-byline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.editorial-byline-grid > div {
    display: flex;
    min-height: 155px;
    flex-direction: column;
    padding: 20px;
    border-top: 4px solid var(--teal);
    background: #fff;
}

.editorial-byline-grid span {
    color: #687584;
    font-size: 0.77rem;
}

.editorial-byline-grid strong {
    margin: 8px 0;
    color: var(--heading);
}

.editorial-byline-grid a {
    margin-top: auto;
    color: var(--teal-dark);
    font-size: 0.8rem;
    font-weight: 800;
}

.source-panel {
    padding: 26px;
    border-top: 5px solid var(--amber);
    background: #fff;
}

.source-panel h2 {
    font-size: 1.55rem;
}

.source-panel p,
.source-panel ol {
    font-size: 0.82rem;
}

.source-panel ol {
    padding-left: 20px;
}

.source-panel li {
    margin-bottom: 10px;
}

.source-panel a {
    color: #235e70;
    font-weight: 750;
}

.responsible-reminder {
    padding-block: 30px;
    background: #102338;
    color: #c8d1dc;
}

.responsible-reminder__inner {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 24px;
}

.responsible-reminder__icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
}

.responsible-reminder strong {
    color: #fff;
}

.responsible-reminder p {
    margin: 3px 0 0;
    font-size: 0.84rem;
}

.responsible-reminder a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 850;
}

.responsible-reminder a .ui-icon {
    width: 18px;
}

.responsible-reminder__current {
    color: #aebac6;
    font-size: 0.8rem;
    font-weight: 750;
}

.independent-disclaimer {
    padding-block: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #091523;
    color: #aeb8c5;
}

.independent-disclaimer p {
    margin: 0;
    font-size: 0.78rem;
    text-align: center;
}

@media (max-width: 1020px) {
    .structured-page__context .site-container,
    .legal-status-bar .site-container {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 16px;
    }

    .review-line {
        justify-content: flex-start;
    }

    .diagnostic-hero-grid,
    .mobile-hero-grid,
    .android-grid,
    .casino-hero-grid,
    .live-feature-grid,
    .payment-hero-grid,
    .legal-hero-grid,
    .legal-two-column,
    .about-hero-grid,
    .faq-hero-grid {
        grid-template-columns: 1fr;
    }

    .diagnostic-layout,
    .rules-ledger,
    .payment-matrix-grid,
    .risk-matrix,
    .url-flow-grid,
    .decision-layout,
    .site-impact-grid,
    .claims-grid,
    .calm-two-column,
    .calm-two-column--reverse,
    .boundary-grid,
    .policy-title-grid,
    .contact-workspace,
    .editorial-record__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .diagnostic-sidebar,
    .legal-source-rail {
        position: static;
    }

    .device-stage {
        order: 2;
    }

    .device-tab-panels section {
        grid-template-columns: 80px 1fr;
    }

    .device-tab-panels section .button {
        justify-self: start;
    }

    .trouble-columns,
    .game-page-steps ol {
        grid-template-columns: repeat(2, 1fr);
    }

    .trouble-columns article:nth-child(2) {
        border-right: 0;
    }

    .sports-cover-grid {
        grid-template-columns: 1fr;
    }

    .sports-briefs {
        grid-template-columns: repeat(3, 1fr);
    }

    .sports-story,
    .sports-story--wide,
    .sports-story--text {
        grid-column: span 6;
    }

    .slot-cover-wall {
        grid-template-columns: 1fr 1fr;
    }

    .slot-editorial {
        grid-column: span 2;
    }

    .protection-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }

    .prohibition-numbers,
    .safety-status-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .five-rules {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-library-layout,
    .policy-layout {
        grid-template-columns: 220px 1fr;
        gap: 35px;
    }

    .workflow-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .editorial-byline-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .structured-content .sp-hero {
        padding-block: 52px 58px;
    }

    .structured-content .sp-section {
        padding-block: 56px;
    }

    .structured-content h1 {
        font-size: clamp(2.15rem, 11vw, 2.55rem);
    }

    .structured-content h2 {
        font-size: clamp(1.8rem, 8.5vw, 2.25rem);
    }

    .review-line span {
        width: 100%;
    }

    .section-heading--split,
    .dashboard-intro,
    .ios-layout,
    .magazine-lead,
    .table-games-heading,
    .arcade-grid,
    .incident-grid,
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .account-check-panel,
    .issue-panels,
    .browser-copy,
    .editorial-form-panel,
    .payment-warning,
    .evidence-list {
        padding: 22px;
    }

    .issue-selector button {
        min-height: 62px;
    }

    .device-stage {
        min-height: 390px;
    }

    .device-tabs {
        overflow-x: auto;
    }

    .device-tabs button {
        min-width: max-content;
    }

    .device-tab-panels {
        padding: 22px;
        border-radius: 0 0 12px 12px;
    }

    .device-tab-panels section {
        grid-template-columns: 1fr;
    }

    .ios-number {
        min-height: 190px;
    }

    .trouble-columns,
    .game-page-steps ol,
    .transaction-timeline,
    .safety-status-grid,
    .protection-mosaic,
    .prohibition-numbers,
    .five-rules,
    .boundary-list,
    .workflow-steps,
    .editorial-byline-grid {
        grid-template-columns: 1fr;
    }

    .trouble-columns article,
    .trouble-columns article:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid #cfd6dd;
    }

    .sports-cover {
        min-height: 500px;
    }

    .sports-cover__copy {
        right: 22px;
        bottom: 22px;
        left: 22px;
    }

    .sports-briefs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .sports-hero-note {
        display: block;
    }

    .sports-category-nav,
    .game-navigator {
        top: 62px;
    }

    .sports-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .sports-story,
    .sports-story--wide,
    .sports-story--text {
        grid-column: span 1;
    }

    .sports-story--wide,
    .sports-story--text {
        grid-column: span 2;
    }

    .sports-story > div {
        padding: 18px;
    }

    .sports-story p {
        font-size: 0.88rem;
    }

    .match-mode {
        grid-template-columns: 1fr;
    }

    .match-mode > div {
        min-height: 52px;
    }

    .casino-hero-collage {
        min-height: 350px;
    }

    .live-feature-image img {
        min-height: 340px;
    }

    .slot-cover-wall {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .slot-cover-wall > * {
        min-width: 82%;
        scroll-snap-align: start;
    }

    .slot-editorial {
        min-width: 92%;
    }

    .category-ribbon {
        grid-template-columns: 1fr;
    }

    .arcade-grid img {
        min-height: 300px;
    }

    .transaction-timeline::before {
        display: none;
    }

    .risk-comparison {
        grid-template-columns: 1fr;
    }

    .protection-mosaic__large,
    .protection-mosaic__wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 260px !important;
    }

    .decision-tree article {
        grid-template-columns: 1fr 1fr;
    }

    .decision-tree article h3 {
        grid-column: span 2;
        border-bottom: 1px solid #cfd6dd;
    }

    .incident-grid ol {
        grid-template-columns: 1fr;
    }

    .legal-status-bar {
        margin-bottom: 50px;
    }

    .prohibition-numbers article {
        min-height: 180px;
    }

    .prohibition-numbers span {
        margin-bottom: 28px;
    }

    .limit-planner {
        padding: 21px;
    }

    .limit-planner > label {
        align-items: flex-start;
        flex-direction: column;
    }

    .planner-principle blockquote {
        font-size: 1.3rem;
    }

    .five-rules article {
        min-height: 220px;
    }

    .faq-library-layout,
    .policy-layout {
        grid-template-columns: 1fr;
    }

    .faq-category-nav,
    .policy-index {
        position: static;
    }

    .faq-category-nav {
        display: flex;
        overflow-x: auto;
    }

    .faq-category-nav > span {
        display: none;
    }

    .faq-category-nav button {
        min-width: max-content;
        border-top: 0;
        border-right: 1px solid #d7dde3;
    }

    .policy-index {
        grid-template-columns: 1fr 1fr;
    }

    .policy-index > span {
        grid-column: span 2;
    }

    .policy-clauses section {
        grid-template-columns: 42px 1fr;
        gap: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .responsible-reminder__inner {
        grid-template-columns: 48px 1fr;
    }

    .responsible-reminder a {
        grid-column: span 2;
        min-height: 44px;
    }

    .responsible-reminder__current {
        grid-column: span 2;
    }

    .editorial-record {
        padding-block: 55px;
    }
}

/* Imported Media Library imagery */
.fact-panel__media {
    overflow: hidden;
    margin: -5px -5px 22px;
    border-radius: 12px 12px 6px 6px;
    background: #0d1726;
}

.fact-panel__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.sport-card__marker,
.game-card__graphic {
    display: grid;
    width: 100%;
    min-height: 116px;
    place-items: center;
    background: linear-gradient(135deg, #14243a, #1f3f5d);
    color: var(--amber);
}

.sport-card__marker .ui-icon,
.game-card__graphic .ui-icon {
    width: 44px;
    height: 44px;
}

.game-card__graphic {
    min-height: 210px;
    background: radial-gradient(circle at 25% 25%, #294562, #0d1929 65%);
}

.structured-media {
    overflow: hidden;
    margin: 0;
}

.structured-media img {
    display: block;
    width: 100%;
    height: auto;
}

.structured-media figcaption {
    padding: 10px 14px;
    color: #687586;
    font-size: 0.76rem;
    line-height: 1.5;
}

.login-hero-media {
    margin: -20px -20px 24px;
    border-radius: 9px 9px 0 0;
}

.login-hero-image {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.login-registration-media {
    width: min(calc(100% - 40px), 860px);
    margin: 26px auto 0;
    border: 1px solid #d9dfe5;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
}

.login-registration-image {
    max-height: 540px;
    object-fit: cover;
    object-position: center 35%;
}

.mobile-app-hero-image {
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
}

.device-comparison-media {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: center;
    margin: 32px 0 24px;
    border-radius: 14px;
    background: #e9eff2;
}

.device-comparison-image {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.app-functions-media {
    margin: -18px -18px 22px;
    border-radius: 10px;
}

.app-functions-image {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.sports-cover-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.sports-story:not(.sports-story--text) > div:first-child:empty,
.slot-cover-wall figure img + *:empty {
    display: none;
}

.casino-hero-image,
.casino-lobby-image,
.casino-live-image,
.casino-roulette-image,
.casino-card-games-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.casino-card-games-image {
    object-position: center top;
}

.slot-cover-wall figure:not(:has(img)) {
    display: grid;
    min-height: 230px;
    place-items: end start;
    background: radial-gradient(circle at 70% 20%, #30496a, #101d2e 62%);
}

.arcade-grid > div:first-child:empty {
    display: none;
}

.arcade-grid:has(> div:first-child:empty) {
    grid-template-columns: 1fr;
}

.payment-hero-media {
    margin: -18px -18px 24px;
    border-radius: 8px;
}

.payment-hero-image {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.payment-upi-media {
    margin: -18px -18px 22px;
    border-radius: 8px;
}

.payment-upi-image {
    aspect-ratio: 1;
    max-height: 360px;
    object-fit: cover;
}

.legal-hero-media {
    margin: -22px -22px 24px;
}

.legal-hero-image {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: right center;
}

.responsible-hero-media {
    margin: 28px 0;
    border-radius: 14px;
}

.responsible-hero-image {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: right center;
}

.responsible-break-media {
    margin: -18px -18px 24px;
}

.responsible-break-image {
    width: 100%;
    max-height: 390px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.editorial-hero-media {
    margin-bottom: 28px;
    border-radius: 12px;
}

.editorial-hero-image,
.about-hero-image {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (max-width: 720px) {
    .device-comparison-media {
        display: block;
    }

    .device-comparison-media figcaption {
        padding: 13px;
    }

    .login-registration-media {
        width: calc(100% - 40px);
    }

    .game-card__graphic {
        min-height: 150px;
    }

    .slot-cover-wall {
        display: grid;
        grid-template-columns: 1fr;
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .slot-cover-wall > *,
    .slot-editorial {
        min-width: 0;
        grid-column: auto;
    }

    .slot-cover-wall img {
        width: 100%;
        height: auto;
    }
}

/* 10 July 2026 targeted body-image fill */
.dafabet-support-hero-layout,
.payment-security-layout,
.dafabet-sources-layout {
    display: grid;
    align-items: center;
    gap: clamp(30px, 5vw, 64px);
}

.dafabet-support-hero-layout {
    grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
}

.payment-security-layout {
    grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
    align-items: start;
}

.dafabet-sources-layout {
    grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
}

.dafabet-support-hero-media,
.dafabet-payment-security-media,
.dafabet-sports-category-media,
.dafabet-faq-visual,
.dafabet-sources-visual,
.dafabet-contact-visual {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(20, 32, 51, 0.12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(7, 17, 31, 0.12);
}

.dafabet-support-hero-media { aspect-ratio: 16 / 9; }
.dafabet-payment-security-media { aspect-ratio: 4 / 3; }
.dafabet-sports-category-media { aspect-ratio: 16 / 9; }
.dafabet-faq-visual { aspect-ratio: 4 / 3; }
.dafabet-sources-visual { aspect-ratio: 16 / 9; }
.dafabet-contact-visual { aspect-ratio: 4 / 3; }

.dafabet-support-hero-media img,
.dafabet-payment-security-media img,
.dafabet-sports-category-media img,
.dafabet-faq-visual img,
.dafabet-sources-visual img,
.dafabet-contact-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dafabet-support-hero-media img,
.dafabet-sports-category-media img,
.dafabet-sources-visual img {
    aspect-ratio: 16 / 9;
}

.dafabet-payment-security-media img,
.dafabet-contact-visual img,
.dafabet-faq-visual img {
    aspect-ratio: 4 / 3;
}

.dafabet-support-hero-media figcaption,
.dafabet-payment-security-media figcaption,
.dafabet-sports-category-media figcaption,
.dafabet-sources-visual figcaption,
.dafabet-contact-visual figcaption {
    display: grid;
    gap: 4px;
    padding: 12px 15px;
    color: #5a6878;
    font-size: 0.78rem;
    line-height: 1.5;
}

.dafabet-support-hero-media figcaption {
    background: #101d2e;
    color: #fff;
}

.dafabet-support-hero-media figcaption span,
.dafabet-sources-visual figcaption span {
    color: #c78408;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.dafabet-support-hero-media figcaption small,
.dafabet-payment-security-media figcaption small {
    color: inherit;
    font-size: 0.74rem;
}

.support-independent-note {
    padding: 12px 15px;
    border-left: 3px solid var(--amber);
    background: rgba(255, 255, 255, 0.75);
    color: #3b495a;
    font-size: 0.9rem;
    font-weight: 700;
}

.payment-security-guidance {
    min-width: 0;
}

.payment-security-guidance .payment-warning {
    border-radius: 16px;
}

.payment-safe-data {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.payment-safe-data section {
    padding: 20px;
}

.payment-safe-data h2 {
    font-size: 1.24rem;
}

.payment-evidence-followup {
    margin-top: 36px;
    padding: clamp(25px, 4vw, 42px);
    border-left: 5px solid var(--teal);
    border-radius: 0 16px 16px 0;
    background: #eef2f5;
}

.payment-evidence-followup ol {
    columns: 2;
    gap: 44px;
    padding-left: 22px;
}

.dafabet-sports-category-media {
    max-height: 500px;
    margin: 30px 0 34px;
}

.dafabet-sports-category-media img {
    max-height: 448px;
}

.sources-visual-section {
    padding-top: 0 !important;
    background: linear-gradient(180deg, #f4f6f8, #fff);
}

.sources-method-copy dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 0;
}

.sources-method-copy dl div {
    padding: 15px;
    border: 1px solid rgba(20, 32, 51, 0.11);
    border-radius: 10px;
    background: #fff;
}

.sources-method-copy dt {
    color: #142033;
    font-weight: 900;
}

.sources-method-copy dd {
    margin: 4px 0 0;
    color: #5b6878;
    font-size: 0.86rem;
}

.source-media-register-section {
    padding-top: 16px !important;
}

.media-register-section .table-scroll {
    margin-top: 28px;
}

.media-image-register {
    min-width: 1180px;
}

.media-image-register td:first-child {
    max-width: 230px;
    overflow-wrap: anywhere;
}

.contact-workspace {
    grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
}

.dafabet-contact-visual {
    margin-bottom: 4px;
}

.dafabet-contact-visual figcaption {
    color: #2f3e50;
    font-weight: 800;
}

@media (max-width: 1020px) {
    .dafabet-support-hero-layout,
    .payment-security-layout,
    .dafabet-sources-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .dafabet-support-hero-layout,
    .payment-security-layout,
    .dafabet-sources-layout {
        gap: 26px;
    }

    .dafabet-support-hero-media,
    .dafabet-payment-security-media,
    .dafabet-sports-category-media,
    .dafabet-faq-visual,
    .dafabet-sources-visual,
    .dafabet-contact-visual {
        width: 100%;
        max-width: 100%;
    }

    .dafabet-support-hero-media img {
        max-height: min(42vh, 300px);
    }

    .dafabet-faq-visual img {
        max-height: 220px;
    }

    .payment-safe-data,
    .sources-method-copy dl {
        grid-template-columns: 1fr;
    }

    .payment-evidence-followup ol {
        columns: 1;
    }

    .dafabet-sports-category-media {
        max-height: none;
        margin-block: 24px 30px;
    }

    .dafabet-sports-category-media img {
        max-height: none;
    }

    .source-media-register-section .table-scroll,
    .source-table-section .table-scroll {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .contact-workspace {
        grid-template-columns: 1fr;
    }
}

/* Final override: the sports marker is a label, never an image overlay. */
.sport-card__marker {
    position: static;
    display: inline-grid;
    width: 34px;
    min-height: 34px;
    margin: 14px 18px 0;
    place-items: center;
    border-radius: 10px;
    background: #14243a;
}
.sport-card__marker .ui-icon { width: 20px; height: 20px; }
.site-branding .custom-logo,
.site-branding .custom-logo-link img {
    width: 52px;
    height: 52px;
    max-width: 52px;
    max-height: 52px;
    object-fit: contain;
}
@media (max-width: 767px) {
    .site-branding .custom-logo,
    .site-branding .custom-logo-link img {
        width: 40px;
        height: 40px;
        max-width: 40px;
        max-height: 40px;
    }
}

.floating-safety-button {
    position: fixed;
    z-index: 40;
    left: 50%;
    bottom: max(22px, env(safe-area-inset-bottom));
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 17px;
    border: 1px solid rgba(244, 181, 46, .45);
    border-radius: 999px;
    background: #07111f;
    color: #fff;
    box-shadow: 0 10px 28px rgba(7, 17, 31, .24);
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    transform: translateX(-50%);
}
.floating-safety-button span:first-child { display: inline-flex; color: #f4b52e; }
.floating-safety-button .ui-icon { width: 18px; height: 18px; }
.sports-story[id],
.sp-section[id],
.category-ribbon[id],
.slot-cover-wall figure[id] { scroll-margin-top: 100px; }
.floating-safety-button:hover,
.floating-safety-button:focus-visible { background: #14243a; color: #fff; }
@media (max-width: 767px) {
    .floating-safety-button {
        left: 50%;
        bottom: max(14px, env(safe-area-inset-bottom));
        min-height: 44px;
        padding-inline: 14px;
        font-size: .76rem;
    }
}
