/* Interface styles for the Marakumi Casinos catalogue at marakumicasinos.com. */

:root {
    --bg: #003a31;
    --bar: #002d27;
    --dark: #00241e;
    --edge: #005045;
    --green: #00a64d;
    --lime: #00e95b;
    --gold: #ffd819;
    --white: #f4f7f3;
    --muted: #89af9e;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
}

button, input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site {
    min-height: 100vh;
    padding-bottom: 18px;
}

.mobile-only {
    display: none;
}

.header {
    height: 77px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 13px;
    background: var(--bar);
    border-bottom: 2px solid var(--dark);
}

.logo {
    width: 172px;
    height: 65px;
    display: block;
    flex: none;
}

.logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-seo-links {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 4px;
    overflow: hidden;
}

.header-seo-links a {
    padding: 7px 9px;
    border-radius: 4px;
    color: #9bc2af;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .01em;
    line-height: 1;
    white-space: nowrap;
    transition: color .18s, background .18s;
}

.header-seo-links a:hover {
    background: #004336;
    color: #ffd819;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.promotions, .login {
    min-height: 47px;
    display: grid;
    place-items: center;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 900;
}

.promotions {
    background: linear-gradient(135deg, #a700dd, #6300b9);
}

.login {
    background: #009c45;
    color: #073b21;
}

.register {
    color: #00a94e;
    font-size: 16px;
    font-weight: 900;
}

.search {
    position: relative;
    width: 313px;
    height: 47px;
}

.search input {
    width: 100%;
    height: 100%;
    padding: 0 48px 0 14px;
    border: 0;
    border-radius: 5px;
    color: #18221d;
    font-size: 16px;
}

.search span {
    position: absolute;
    top: 11px;
    right: 14px;
    width: 21px;
    height: 21px;
    border: 3px solid var(--bar);
    border-radius: 50%;
    pointer-events: none;
}

.search span::after {
    content: "";
    position: absolute;
    right: -7px;
    bottom: -4px;
    width: 10px;
    height: 3px;
    background: var(--bar);
    transform: rotate(48deg);
}

.icon-button {
    width: 31px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--green);
}

.icon-button svg {
    display: block;
    width: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2.5;
}

.ticker {
    height: 30px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #003128;
    color: #00b256;
    font-size: 14px;
}

.ticker.mobile-only {
    display: none;
}

.menu-drawer {
    position: fixed;
    z-index: 30;
    top: 0;
    right: 0;
    width: min(330px, 88vw);
    height: 100dvh;
    padding: 22px;
    transform: translateX(102%);
    transition: transform .24s ease;
    background: #002d27;
    border-left: 1px solid #00604d;
    box-shadow: -18px 0 35px rgba(0, 0, 0, .28);
}

.menu-drawer.open {
    transform: translateX(0);
}

.menu-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    color: var(--gold);
}

.menu-close {
    padding: 8px 11px;
    border: 1px solid #007457;
    border-radius: 4px;
    background: transparent;
    color: white;
}

.menu-drawer a {
    display: block;
    padding: 15px 0;
    border-top: 1px solid #005044;
    color: white;
    font-weight: 800;
}

.game-nav {
    height: 91px;
    display: flex;
    overflow-x: auto;
    box-sizing: border-box;
    padding: 4px 0 2px;
    background: #00362e;
    border-bottom: 3px solid var(--edge);
    scrollbar-width: none;
}

.game-nav::-webkit-scrollbar {
    display: none;
}

.category {
    position: relative;
    min-width: 107px;
    padding: 6px;
    border: 0;
    border-right: 2px solid #003129;
    border-radius: 8px;
    background: transparent;
    color: #f4f4f4;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    transition: background .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
    white-space: nowrap;
}

.category img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: filter .18s ease, transform .18s ease;
}

.category:hover,
.category:focus-visible {
    z-index: 1;
    background: linear-gradient(145deg, rgba(0, 183, 83, .24), rgba(156, 0, 238, .19));
    box-shadow: inset 0 0 0 1px rgba(255, 213, 23, .38), 0 0 18px rgba(145, 0, 230, .25);
    color: #fff08a;
    outline: 0;
    transform: translateY(-2px);
}

.category:hover img,
.category:focus-visible img {
    filter: brightness(1.12) drop-shadow(0 0 7px rgba(255, 213, 23, .42));
    transform: scale(1.1);
}

.category b {
    position: absolute;
    top: 7px;
    right: 7px;
    padding: 2px 3px;
    background: #ef0035;
    color: white;
    font-size: 10px;
}

.category.active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
    background: #00b753;
}

.layout {
    display: grid;
    grid-template-columns:360px minmax(500px, 1fr) 360px;
    gap: 12px;
    padding: 18px 13px 0;
}

.jackpot {
    position: relative;
    height: 267px;
    overflow: hidden;
    border-radius: 9px;
    background: #1a0018;
}

.jackpot > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jackpot-title {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    color: #ffe338;
    text-align: center;
    font-size: 27px;
    font-style: italic;
    text-shadow: 1px 2px #7c1642;
}

.jackpot-title small {
    display: block;
    color: white;
    font-size: 10px;
    font-style: normal;
    text-shadow: none;
}

.pots {
    position: absolute;
    right: 20px;
    bottom: 26px;
    left: 20px;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px 13px;
}

.pots span {
    padding: 10px 8px;
    border: 3px solid #ffca47;
    border-radius: 11px;
    background: #25002d;
    box-shadow: 0 0 0 3px #67166a, 0 0 8px #ffe777;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.pots small {
    float: right;
    font-size: 8px;
    writing-mode: vertical-rl;
}

.activity {
    margin-top: 31px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: #002a23;
}

.activity-head {
    min-height: 123px;
    padding: 19px 15px;
    background: linear-gradient(145deg, #005b40, #00e937 55%, #004b30);
}

.activity-head h2 {
    margin: 0;
    font-size: 24px;
}

.activity-head [role=tablist] {
    display: flex;
    gap: 6px;
    margin-top: 13px;
}

.activity-tab {
    padding: 12px 14px;
    border: 0;
    border-radius: 4px;
    background: #00723c;
    color: #003c27;
    font-size: 15px;
    font-weight: 900;
}

.activity-tab.active {
    background: #001e1a;
    color: white;
}

.activity-panel {
    min-height: 170px;
    display: grid;
    place-items: center;
    padding: 20px;
    color: #8cb4a2;
    text-align: center;
}

.hidden {
    display: none !important;
}

.games {
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    align-content: start;
    gap: 5px;
}

.game-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 7px;
    background: #002d27;
}

.game-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.43;
    object-fit: cover;
    transition: transform .2s;
}

.game-card:hover img {
    transform: scale(1.06);
}

.game-card span {
    display: none;
    padding: 3px 5px;
    overflow: hidden;
    background: #00362d;
    color: white;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-badge {
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 7px;
    padding: 5px 7px;
    border-radius: 5px;
    background: #00ae46;
    color: white;
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
}

.game-badge.muted {
    background: #063d22;
    color: #8bad99;
}

.empty-results {
    grid-column: 1/-1;
    padding: 32px;
    color: var(--muted);
    text-align: center;
}

.right-column h2 {
    margin: 0 0 18px;
    font-size: 26px;
}

.mpesa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 122px;
    margin-bottom: 18px;
    background: #004234;
    color: #f3f3f3;
    font-size: 27px;
    font-weight: 900;
    font-style: italic;
}

.mpesa b {
    color: #ee2440;
}

.mpesa a {
    margin-left: auto;
    margin-right: 12px;
    padding: 14px 18px;
    border-radius: 4px;
    background: #009f49;
    color: #003c22;
    font-size: 15px;
    font-style: normal;
}

.ad {
    display: block;
    margin-bottom: 19px;
    overflow: hidden;
    background: #002d27;
}

.ad img {
    display: block;
    width: 100%;
    aspect-ratio: 1.42;
    object-fit: cover;
    transition: transform .2s;
}

.ad:hover img {
    transform: scale(1.03);
}

.pages {
    display: flex;
    justify-content: center;
    gap: 7px;
    padding: 18px;
}

.pages button {
    padding: 8px 11px;
    border: 0;
    border-radius: 4px;
    background: #002c26;
    color: white;
    font-size: 17px;
}

.pages button.active {
    color: #00af4c;
}

.footer {
    padding: 18px 13px;
    border-top: 2px solid var(--edge);
    color: #78a297;
    font-size: 12px;
}

.home-guide {
    width: min(1360px, calc(100% - 40px));
    overflow: hidden;
    margin: 38px auto 0;
    border: 1px solid #075b4a;
    background: #002e27;
}

.home-guide__eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.home-guide h2, .home-guide h3 {
    margin: 0;
}

.home-guide__top {
    display: grid;
    grid-template-columns:minmax(290px, 1.05fr) minmax(470px, 1.45fr);
    gap: 48px;
    padding: 37px 40px 39px;
    background: linear-gradient(118deg, #003b31, #00342b 65%, #002e27);
}

.home-guide__intro h2 {
    max-width: 15ch;
    color: #f4f7f3;
    font-size: 30px;
    line-height: 1.04;
    letter-spacing: -.025em;
}

.home-guide__intro > p:not(.home-guide__eyebrow) {
    max-width: 48ch;
    margin: 14px 0 0;
    color: #a9c5b8;
    font-size: 14px;
    line-height: 1.6;
}

.home-guide__primary-link, .home-guide__text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    transition: color .18s ease;
}

.home-guide__primary-link {
    margin-top: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #0a7958;
}

.home-guide__primary-link span, .home-guide__text-link span {
    font-size: 17px;
    line-height: .7;
    transition: transform .18s ease;
}

.home-guide__primary-link:hover, .home-guide__primary-link:focus-visible, .home-guide__text-link:hover, .home-guide__text-link:focus-visible {
    color: #f4f7f3;
}

.home-guide__primary-link:hover span, .home-guide__primary-link:focus-visible span, .home-guide__text-link:hover span, .home-guide__text-link:focus-visible span {
    transform: translateX(3px);
}

.home-guide__checklist {
    padding-left: 31px;
    border-left: 1px solid #0a644f;
}

.home-guide__checklist h3 {
    color: #f4f7f3;
    font-size: 19px;
    line-height: 1.2;
}

.home-guide__checklist ol {
    display: grid;
    gap: 0;
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
}

.home-guide__checklist li {
    display: grid;
    grid-template-columns:38px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid #075b49;
}

.home-guide__checklist li span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
}

.home-guide__checklist strong {
    color: #e9f2eb;
    font-size: 14px;
}

.home-guide__checklist li p {
    margin: 5px 0 0;
    color: #98b9aa;
    font-size: 12px;
    line-height: 1.45;
}

.home-guide__articles {
    display: grid;
    grid-template-columns:1.25fr .75fr;
    border-top: 1px solid #075b49;
    background: #002c25;
}

.home-guide__article {
    padding: 29px 40px 31px;
}

.home-guide__article + .home-guide__article {
    border-left: 1px solid #075b49;
}

.home-guide__article h3 {
    max-width: 39ch;
    color: #f2f7f3;
    font-size: 20px;
    line-height: 1.18;
}

.home-guide__article p:not(.home-guide__eyebrow) {
    max-width: 72ch;
    margin: 12px 0 0;
    color: #9ab8aa;
    font-size: 13px;
    line-height: 1.6;
}

.home-guide__article-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 18px;
}

.home-guide__article-links a {
    padding-bottom: 3px;
    border-bottom: 1px solid #0a7155;
    color: #c2d9cd;
    font-size: 12px;
    font-weight: 800;
    transition: color .18s ease, border-color .18s ease;
}

.home-guide__article-links a:hover, .home-guide__article-links a:focus-visible {
    border-color: var(--gold);
    color: var(--gold);
}

.home-guide__text-link {
    margin-top: 19px;
}

.home-guide__faq {
    display: grid;
    grid-template-columns:minmax(250px, .72fr) 1.28fr;
    gap: 46px;
    padding: 34px 40px 38px;
    border-top: 1px solid #075b49;
    background: #003129;
}

.home-guide__faq-heading h2 {
    max-width: 16ch;
    color: #f4f7f3;
    font-size: 22px;
    line-height: 1.12;
}

.home-guide__faq-heading > p:last-child {
    max-width: 33ch;
    margin: 12px 0 0;
    color: #9ebdae;
    font-size: 13px;
    line-height: 1.55;
}

.home-guide__faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid #075144;
    border-bottom: 1px solid #075144;
}

.home-guide__faq details {
    min-width: 0;
    padding: 16px 18px 17px;
    border-left: 1px solid #075144;
}

.home-guide__faq details:nth-child(odd) {
    border-left: 0;
}

.home-guide__faq details:nth-child(n + 3) {
    border-top: 1px solid #075144;
}

.home-guide__faq summary {
    position: relative;
    padding-right: 19px;
    cursor: pointer;
    color: #dceae2;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.38;
    list-style: none;
}

.home-guide__faq summary::-webkit-details-marker {
    display: none;
}

.home-guide__faq summary::after {
    content: "+";
    position: absolute;
    top: -1px;
    right: 0;
    color: var(--gold);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.home-guide__faq details[open] summary::after {
    content: "\2212";
}

.home-guide__faq details p {
    margin: 10px 0 0;
    color: #91b0a2;
    font-size: 12px;
    line-height: 1.55;
}

.home-longform {
    width: min(1360px, calc(100% - 40px));
    margin: 26px auto 0;
    border: 1px solid #075d4b;
    border-radius: 9px;
    background: #00372f;
}

.home-longform__body {
    padding: 34px;
}

.home-longform h1, .home-longform h2, .home-longform h3 {
    color: #f5f7f3;
}

.home-longform h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(27px, 3vw, 39px);
    line-height: 1.08;
}

.home-longform h2 {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 23px;
    line-height: 1.2;
}

.home-longform h3 {
    margin: 0 0 9px;
    font-size: 15px;
}

.home-longform p, .home-longform li, .home-longform td, .home-longform th {
    color: #c8ded2;
    font-size: 14px;
    line-height: 1.65;
}

.home-longform a {
    color: #00ce62;
    font-weight: 800;
}

.home-longform__lead {
    max-width: 860px;
    margin: 15px 0 0;
    color: #d9e9df !important;
    font-size: 16px !important;
}

.home-longform__toc {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 21px 0 4px;
}

.home-longform__toc a {
    padding: 7px 10px;
    border: 1px solid #087052;
    border-radius: 4px;
    color: #cde5d7;
    font-size: 12px;
}

.home-longform__section {
    margin-top: 31px;
    padding-top: 28px;
    border-top: 1px solid #0a604c;
}

.home-longform__section--overview {
    display: grid;
    grid-template-columns:minmax(0, 1fr) minmax(350px, .86fr);
    gap: 2px 30px;
}

.home-longform__section--overview h2, .home-longform__section--overview > p {
    grid-column: 1;
}

.home-longform__table-wrap {
    grid-row: 1 / span 3;
    grid-column: 2;
    align-self: center;
    overflow: hidden;
    border: 1px solid #087052;
    border-radius: 6px;
}

.home-longform__table {
    width: 100%;
    border-collapse: collapse;
}

.home-longform__table th, .home-longform__table td {
    padding: 10px 12px;
    border-bottom: 1px solid #075745;
    text-align: left;
}

.home-longform__table th {
    color: var(--gold);
    font-size: 12px;
}

.home-longform__table tr:last-child th, .home-longform__table tr:last-child td {
    border-bottom: 0;
}

.home-longform__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.home-longform__steps li {
    min-height: 112px;
    padding: 14px;
    border: 1px solid #075d4b;
    border-radius: 6px;
    background: #002e27;
    counter-increment: steps;
}

.home-longform__steps li::before {
    content: "0" counter(steps);
    display: block;
    margin-bottom: 7px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
}

.home-longform__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.home-longform__columns > div {
    padding: 16px;
    border: 1px solid #075d4b;
    border-radius: 6px;
    background: #002e27;
}

.home-longform__columns ul {
    margin: 0;
    padding-left: 19px;
}

.home-longform__cta {
    display: flex;
    justify-content: center;
    margin: 22px 0 4px;
}

.home-longform__cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 174px);
    min-height: 40px;
    padding: 0 16px;
    border-radius: 5px;
    background: linear-gradient(135deg, #a700dd, #6300b9);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .02em;
    text-decoration: none;
    transition: filter .18s ease, transform .18s ease;
}

.home-longform__cta a:hover {
    color: #fff;
    filter: brightness(1.15);
    transform: translateY(-1px);
}

.home-longform__media {
    max-width: 760px;
    margin: 20px auto;
    overflow: hidden;
    border: 1px solid #08654f;
    border-radius: 7px;
    background: #002e27;
}

.home-longform__media--wide {
    grid-column: 1 / -1;
    max-width: none;
}

.home-longform__media--phone {
    max-width: 260px;
}

.home-longform__media img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.image-go-link {
    display: block;
    color: inherit;
    line-height: 0;
}

.image-go-link img {
    transition: filter .18s ease, transform .18s ease;
}

.image-go-link:hover img,
.image-go-link:focus-visible img {
    filter: brightness(1.08);
    transform: scale(1.012);
}

.home-longform__media figcaption {
    padding: 9px 12px;
    color: #97b9a9;
    font-size: 12px;
    line-height: 1.45;
}

.home-longform__faq details {
    padding: 14px 0;
    border-top: 1px solid #0a604e;
}

.home-longform__faq summary {
    cursor: pointer;
    color: #f5f7f3;
    font-weight: 900;
}

.home-longform__faq p {
    margin: 9px 0 0;
}

.site-footer {
    margin-top: 28px;
    border-top: 2px solid #075a49;
    background: #002c25;
    color: #acc8ba;
}

.site-footer__inner {
    width: min(1360px, calc(100% - 40px));
    display: grid;
    grid-template-columns: minmax(240px, 1.6fr) minmax(130px, .8fr) minmax(160px, .95fr) minmax(220px, 1.25fr);
    gap: 32px;
    margin: 0 auto;
    padding: 36px 0 30px;
}

.site-footer__logo {
    display: block;
    width: 170px;
    height: 46px;
    margin: -6px 0 13px;
}

.site-footer__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.site-footer__about p, .site-footer__safety p {
    max-width: 39ch;
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.site-footer__about .site-footer__disclosure {
    margin-top: 11px;
    color: #78a596;
    font-size: 12px;
}

.site-footer__links h2, .site-footer__safety h2 {
    margin: 0 0 12px;
    color: #f4f7f3;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-footer__links a {
    display: block;
    width: fit-content;
    padding: 4px 0;
    color: #a8c6b7;
    font-size: 13px;
    line-height: 1.35;
    transition: color .18s ease, transform .18s ease;
}

.site-footer__links a:hover, .site-footer__links a:focus-visible {
    color: var(--gold);
    transform: translateX(3px);
}

.site-footer__safety {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-left: 22px;
    border-left: 1px solid #075a49;
}

.site-footer__age {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: none;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 14px;
    font-weight: 900;
}

.site-footer__safety h2 {
    color: var(--gold);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: min(1360px, calc(100% - 40px));
    margin: 0 auto;
    padding: 14px 0 16px;
    border-top: 1px solid #075144;
    color: #719b8d;
    font-size: 11px;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.site-footer__legal a {
    color: inherit;
    transition: color .18s ease;
}

.site-footer__legal a:hover, .site-footer__legal a:focus-visible {
    color: var(--gold);
}

@media (max-width: 1200px) {
    .layout {
        grid-template-columns:255px minmax(400px, 1fr) 260px;
    }

    .jackpot {
        height: 230px;
    }

    .pots {
        right: 12px;
        bottom: 20px;
        left: 12px;
        gap: 18px 10px;
    }

    .pots span {
        font-size: 12px;
    }

    .activity {
        margin-top: 18px;
    }

    .right-column h2 {
        font-size: 21px;
    }

    .search {
        width: 220px;
    }

    .category {
        min-width: 95px;
        font-size: 13px;
    }
}

@media (max-width: 780px) {
    .desktop-only, .left-column, .right-column {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }

    .site {
        padding-bottom: 67px;
    }

    .site-footer {
        margin-top: 20px;
    }

    .site-footer__inner {
        width: min(100% - 32px, 620px);
        grid-template-columns: 1fr 1fr;
        gap: 28px 18px;
        padding: 30px 0 25px;
    }

    .site-footer__about {
        grid-column: 1 / -1;
    }

    .site-footer__safety {
        grid-column: 1 / -1;
        padding: 17px 0 0;
        border-top: 1px solid #075a49;
        border-left: 0;
    }

    .site-footer__bottom {
        flex-direction: column;
        width: min(100% - 32px, 620px);
        gap: 5px;
        padding: 13px 0 16px;
    }

    .site-footer__legal {
        justify-content: flex-start;
    }

    .home-guide {
        width: min(100% - 32px, 620px);
        margin-top: 26px;
    }

    .home-guide__top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 20px 30px;
    }

    .home-guide__intro h2 {
        max-width: 17ch;
        font-size: 23px;
    }

    .home-guide__checklist {
        padding: 23px 0 0;
        border-top: 1px solid #0a644f;
        border-left: 0;
    }

    .home-guide__articles {
        grid-template-columns: 1fr;
    }

    .home-guide__article {
        padding: 27px 20px 29px;
    }

    .home-guide__article + .home-guide__article {
        border-top: 1px solid #075b49;
        border-left: 0;
    }

    .home-guide__faq {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 20px 30px;
    }

    .home-guide__faq-list {
        grid-template-columns: 1fr;
    }

    .home-guide__faq details, .home-guide__faq details:nth-child(odd), .home-guide__faq details:nth-child(n + 3) {
        border-top: 1px solid #075144;
        border-left: 0;
    }

    .home-guide__faq details:first-child {
        border-top: 0;
    }

    .home-longform {
        width: min(100% - 32px, 620px);
        margin-top: 20px;
    }

    .home-longform__body {
        padding: 24px 18px;
    }

    .home-longform h1 {
        font-size: 26px;
    }

    .home-longform h2 {
        font-size: 20px;
    }

    .home-longform__lead {
        font-size: 14px !important;
    }

    .home-longform__section--overview {
        display: block;
    }

    .home-longform__table-wrap {
        margin-top: 18px;
        overflow-x: auto;
    }

    .home-longform__table {
        min-width: 510px;
    }

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

    .home-longform__columns {
        grid-template-columns: 1fr;
    }

    .home-longform__media {
        margin: 17px 0;
    }

    .header {
        height: 71px;
        padding: 0 16px;
    }

    .logo {
        width: 158px;
        height: 62px;
    }

    .header-actions {
        gap: 16px;
    }

    .login {
        min-height: 41px;
        padding: 0 17px;
        font-size: 16px;
    }

    .register {
        font-size: 15px;
    }

    .icon-button {
        width: 25px;
    }

    .ticker {
        height: 39px;
        font-size: 13px;
    }

    .mobile-search {
        display: none;
        padding: 9px 12px;
        background: #002b24;
    }

    .mobile-search.open {
        display: block;
    }

    .mobile-search label {
        display: grid;
        grid-template-columns:105px 1fr;
        align-items: center;
        gap: 8px;
        color: #9ab8ab;
        font-size: 12px;
    }

    .mobile-search input {
        min-width: 0;
        height: 35px;
        border: 1px solid #00654b;
        border-radius: 4px;
        background: #f7f7f5;
        color: #15251f;
    }

    .mobile-slider {
        position: relative;
        display: block;
        height: min(54.5vw, 368px);
        min-height: 200px;
        overflow: hidden;
        background: var(--bar);
    }

    .slider-track {
        display: flex;
        width: 300%;
        height: 100%;
    }

    .slide {
        display: block;
        flex: 0 0 33.333333%;
        height: 100%;
    }

    .slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }

    .slider-dots {
        position: absolute;
        z-index: 2;
        bottom: 8px;
        left: 50%;
        display: flex;
        gap: 6px;
        transform: translateX(-50%);
    }

    .slider-dots button {
        width: 7px;
        height: 7px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, .9);
        border-radius: 50%;
        background: rgba(0, 0, 0, .26);
    }

    .slider-dots button[aria-current=true] {
        background: #00b754;
    }

    .game-nav {
        height: 94px;
    }

    .category {
        min-width: 93px;
        height: 85px;
        font-size: 14px;
    }

    .mobile-jackpot {
        display: grid;
        grid-template-columns:1fr 1.2fr 1fr;
        align-items: center;
        min-height: 82px;
        gap: 6px;
        padding: 9px 8px;
        background: linear-gradient(100deg, #2d003a, #ed008f 42%, #3d0033);
    }

    .mobile-jackpot span {
        padding: 10px 6px;
        border: 2px solid #ffd33e;
        border-radius: 9px;
        background: #30002f;
        box-shadow: 0 0 0 2px #7d136b, 0 0 7px #ffd755;
        color: white;
        font-size: 15px;
        font-weight: 900;
        white-space: nowrap;
    }

    .mobile-jackpot span small {
        float: right;
        margin-left: 3px;
        font-size: 7px;
        writing-mode: vertical-rl;
    }

    .mobile-jackpot strong {
        color: #ffdf25;
        text-align: center;
        font-size: 21px;
        font-style: italic;
        text-shadow: 1px 2px #8b1a51;
    }

    .mobile-jackpot strong small {
        display: block;
        color: white;
        font-size: 8px;
        font-style: normal;
        text-shadow: none;
    }

    .layout {
        display: block;
        padding: 5px 0 0;
    }

    .games {
        grid-template-columns:repeat(3, 1fr);
        gap: 4px;
    }

    .game-card {
        border-radius: 4px;
    }

    .game-card span {
        display: block;
    }

    .game-badge {
        top: 4px;
        left: 4px;
        padding: 3px 4px;
        font-size: 10px;
    }

    .bottom-nav {
        position: fixed;
        z-index: 10;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        height: 67px;
        grid-template-columns:repeat(4, 1fr);
        background: #002a24;
        border-top: 1px solid #004d40;
    }

    .bottom-nav a {
        display: grid;
        place-content: center;
        gap: 3px;
        color: white;
        text-align: center;
        font-size: 13px;
        font-weight: 700;
    }

    .bottom-nav svg {
        width: 26px;
        height: 26px;
        margin: auto;
        fill: none;
        stroke: #ffd71a;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 2;
    }

    .bottom-nav a.active {
        color: #00a94f;
    }

    .bottom-nav .deposit {
        position: relative;
    }

    .bottom-nav .deposit svg {
        position: absolute;
        top: -27px;
        left: 50%;
        width: 59px;
        height: 59px;
        padding: 13px;
        transform: translateX(-50%);
        border: 7px solid #002a24;
        border-radius: 50%;
        background: #00a54d;
    }
}

@media (max-width: 500px) {
    .header {
        padding: 0 12px;
    }

    .logo {
        width: 122px;
    }

    .header-actions {
        gap: 12px;
    }

    .register {
        display: none;
    }

    .mobile-slider {
        min-height: 190px;
    }

    .category {
        min-width: 88px;
    }
}
