/* =============================================================
   GLORION CASINO — Stylesheet (matches glorioncanada.com)
   Fonts: Inter (400/600) + Anton (800) via Google Fonts
============================================================= */

/* ── Fonts ── */
/* If you have local TTF files, replace with @font-face blocks:
   @font-face { font-family:'Inter'; src:url('../font/Inter_28pt-Regular.ttf') format('truetype'); font-weight:400; }
   @font-face { font-family:'Inter'; src:url('../font/Inter_24pt-SemiBold.ttf') format('truetype'); font-weight:600; }
   @font-face { font-family:'Anton'; src:url('../font/anton.ttf') format('truetype'); font-weight:800; }
*/

/* ── Animations ── */
@keyframes shine {
    0%   { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes redPulse {
    0%, 100% {
        box-shadow:
            0 0 8px  rgba(235,49,38,.4),
            0 0 16px rgba(235,49,38,.3),
            0 0 24px rgba(235,49,38,.2);
    }
    50% {
        box-shadow:
            0 0 16px rgba(235,49,38,.6),
            0 0 28px rgba(235,49,38,.5),
            0 0 40px rgba(235,49,38,.4);
    }
}

/* ── Reset ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Base ── */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #1B2733;
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
}

/* ── Typography ── */
h1 {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    line-height: 54px;
    font-weight: 600;
    color: #fff;
    padding: 10px 0;
}
h2 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    line-height: 46px;
    font-weight: 600;
    color: #ffffff;
    padding: 15px 0;
}
h3 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    color: #ffffff;
    padding: 15px 0;
}
h4 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    color: #ffffff;
    padding: 15px 0;
}
h5 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #ffffff;
    padding: 10px 0;
}
h6 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: #ffffff;
    padding: 10px 0;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    color: #dfdfdf;
    margin-bottom: 16px;
}

ul, ol {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #dfdfdf;
    margin-bottom: 16px;
    padding-left: 24px;
}
ul li, ol li { margin-bottom: 8px; }
ul { list-style-type: disc; }
ol { list-style-type: decimal; }

a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.uzteyjliawxn img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 15px 0;
}

/* ── Layout ── */
.oxygmfffyhvr {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Overlay ── */
.fxeenkftvwwp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 999;
}
.fxeenkftvwwp.wyajxkzafzbt {
    opacity: 1;
    visibility: visible;
}

/* ── Sidebar (mobile nav) ── */
.rqsqcozvxral {
    position: fixed;
    left: 0;
    top: 80px;
    width: 200px;
    height: calc(100vh - 90px);
    background: #031D41;
    border-right: 1px solid #155BA1;
    z-index: 50;
    transition: transform .3s ease;
}
.ygnfpicbbcbp {
    display: none;
}
.foqoizxdmaeq {
    display: flex;
    flex-direction: column;
    padding: 5px;
    gap: 15px;
    margin-top: 30px;
}
.dzwbzephlvof {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    font-weight: 800;
    font-style: italic;
    transition: all .3s ease;
    position: relative;
    background: linear-gradient(180deg, #0D131A 0%, #2B3947 100%);
    border-radius: 8px;
    box-sizing: border-box;
}
.dzwbzephlvof::before {
    content: '';
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .5;
    transition: all .3s ease;
    flex-shrink: 0;
    order: -1;
}
.dzwbzephlvof::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background:
        radial-gradient(circle at 0% 70%, rgba(96,181,242,.3) 0%, transparent 50%),
        radial-gradient(circle at 100% 90%, rgba(96,181,242,.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, #60B5F2 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.dzwbzephlvof:hover::before { opacity: 1; }

/* ── Header ── */
.zfsfexcekwjk {
    position: sticky;
    top: 0;
    background: radial-gradient(101% 35.98% at 50% 2.22%, #49627A 0%, #12181F 100%);
    z-index: 100;
    border-bottom: 1px solid #49627A;
    padding: 10px 0;
}
.zfsfexcekwjk .oxygmfffyhvr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.jazqdhsoqpmt img {
    max-width: 165px;
    height: auto;
}

/* Hamburger */
.aycpwyoujrsf {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: none;
    align-items: center;
    z-index: 1001;
}
.aycpwyoujrsf img {
    width: 30px;
    height: auto;
}

/* Desktop nav */
.meokoimnhrhd {
    display: none;
}

/* Header CTA buttons */
.phntpwtjrveb {
    display: flex;
    gap: 8px;
}

/* ── Language Switcher ── */
.lervzwegxrqb {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid rgba(255,255,255,.15);
}
.wslaxccgulpi {
    background: none;
    border: 1px solid transparent;
    color: rgba(255,255,255,.55);
    font-family: 'Anton', sans-serif;
    font-size: 13px;
    font-style: italic;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
}
.wslaxccgulpi:hover {
    color: #ffffff;
    border-color: rgba(255,255,255,.3);
}
.wslaxccgulpi.wyajxkzafzbt {
    color: #ffffff;
    border-color: rgba(255,255,255,.45);
    background: rgba(255,255,255,.1);
}
.seajpvmxdios {
    color: rgba(255,255,255,.25);
    font-size: 11px;
    line-height: 1;
    pointer-events: none;
}

/* ── Buttons ── */
.bxpvxzlsddnx {
    padding: 8px 42px;
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: 1px solid #426180;
    box-sizing: border-box;
    letter-spacing: .5px;
}
.nnafjldsiulh {
    background: linear-gradient(180deg, #1B2733 14%, #30465C 63%, #354E66 100%);
    background-blend-mode: overlay;
    box-shadow:
        0px -2px 5px 0px #577592A6 inset,
        0px 1px 0px 0px #5f666d,
        0px 3px 6px 0px #0000008C;
    color: #ebebeb;
    position: relative;
}
.ldyfhsxmjtjc {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #8D160E 15.61%, #A8170D 62.19%, #EB3126 98.33%),
        radial-gradient(51.06% 100% at 53.24% 99.17%, rgba(249,26,13,.2) 0%, rgba(51,3,0,.2) 100%),
        linear-gradient(180deg, rgba(128,6,6,.5) 1.67%, rgba(141,22,14,0) 51.43%);
    border: 1px solid #EB3126;
    color: #FFFFFF;
    animation: redPulse 2s ease-in-out infinite;
}

/* Hero button (3-part sprite simulation) */
.jokxlexzzrkc {
    display: inline-flex;
    align-items: stretch;
    text-decoration: none;
    height: 80px;
    cursor: pointer;
    transition: transform .2s;
}
.jokxlexzzrkc:hover  { transform: scale(1.05); }
.jokxlexzzrkc:active { transform: scale(.98); }

.zaunyzrakhsy {
    width: 39px;
    background: linear-gradient(180deg, #7B2000 0%, #C53A00 100%);
    border-radius: 8px 0 0 8px;
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
}
.krblgchgrrll {
    background: linear-gradient(180deg, #C53A00 0%, #FF5A1A 40%, #C53A00 100%);
    color: #fff;
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,.5);
    padding: 22px 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.rhfdvjuvqpnm {
    width: 39px;
    background: linear-gradient(180deg, #7B2000 0%, #C53A00 100%);
    border-radius: 0 8px 8px 0;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
}

/* Content link color */
.ugethvumtijx a,
.payload-richtext a {
    color: #c62b2b;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}
.ugethvumtijx a:hover,
.payload-richtext a:hover {
    color: #c62b2b;
    text-decoration: underline;
}

/* ── Hero ── */
.cofscttkvope {
    position: relative;
    overflow: hidden;
    background-image: url('../img/kzgnwjsdsnkvyz.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
}
.cofscttkvope::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(76.37deg, #0C1014 10.48%, rgba(12,16,20,.82) 33%, rgba(4,38,77,0) 80.23%);
    z-index: 1;
    pointer-events: none;
}
.cofscttkvope .oxygmfffyhvr {
    position: relative;
    z-index: 10;
}
.vtuhyixpppoi {
    position: relative;
    z-index: 10;
    overflow: visible;
    max-width: 550px;
    text-align: center;
}
.ekqsodtodgtb {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
    letter-spacing: 1px;
    background: #FFFFFF;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 4px 4px rgba(0,0,0,.3)) drop-shadow(.5px .5px 0px rgba(255,255,255,.8));
}
.aekyolvaedpk {
    font-family: 'Anton', sans-serif;
    font-size: 55px;
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(180deg, #c62b2b 0%, #FFFFFF 50%, #FFFFFF 60%, #c62b2b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    padding: 0;
}

/* ── Main content ── */
.uzteyjliawxn {
    margin-left: 0;
    padding: 0;
}
.ugethvumtijx {
    padding: 15px 0 40px;
}

/* ── Table ── */
.qjvlljbmxdxz {
    padding-bottom: 48px;
}
.bmmbuiwjepfq {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.trxykuednbcb {
    margin: 30px 0;
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #111820;
    border-radius: 8px;
    overflow: hidden;
    white-space: nowrap;
}
.trxykuednbcb tr {
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.trxykuednbcb tr:last-child {
    border-bottom: none;
}
.trxykuednbcb tr:nth-child(even) {
    background: rgba(255,255,255,.03);
}
.trxykuednbcb td {
    padding: 16px 20px;
    font-size: 16px;
    line-height: 22px;
    border: none !important;
}
.trxykuednbcb td p {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
}
.tvsnoyoutgvm {
    color: #ffffff;
    font-weight: 500;
    width: 50%;
}
.knpdjqhkikhb {
    color: #ffffff;
    font-weight: normal;
    text-align: left;
}

/* ── Slots Grid ── */
.giauropvcvck { margin: 30px 0; }
.ezkejihtuwpr {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    align-items: start;
}
.okfgpkdjqjcu {
    text-align: center;
    border-radius: 8px;
    transition: transform .2s ease, background .2s;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}
.okfgpkdjqjcu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0);
    border-radius: 8px;
    transition: background .2s;
    z-index: 1;
}
.duvpwwisjrsn {
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
}
.duvpwwisjrsn img {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
}
.udruwjlhwyxd {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: calc(100% - 16px);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    background: #450C88;
    color: #FFFFFF;
    border-radius: 12px;
    opacity: 0;
    transition: opacity .2s, transform .2s;
    z-index: 2;
}
.okfgpkdjqjcu:hover .udruwjlhwyxd { opacity: 1; }
.okfgpkdjqjcu:hover::before {
    background: rgba(0,0,0,.6);
    opacity: 1;
}

/* ── FAQ Block ── */
.dpraxdfhzona {
    margin: 28px 0;
    max-width: 100%;
}
.wczcunxmxfik {
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 8px;
    margin-bottom: 8px;
    background: rgba(255,255,255,.02);
}
.wczcunxmxfik:last-child { margin-bottom: 0; }
.fpgzywxvoevp {
    cursor: pointer;
    list-style: none;
    padding: 12px 14px;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    padding-right: 32px;
    font-size: 17px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}
.fpgzywxvoevp::-webkit-details-marker { display: none; }
.fpgzywxvoevp::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    opacity: .55;
}
.wczcunxmxfik[open] .fpgzywxvoevp::after {
    transform: translateY(-25%) rotate(-135deg);
}
.blqwedfodubz {
    padding: 0 14px 14px;
    border-top: 1px solid rgba(0,0,0,.06);
    line-height: 1.55;
}
.blqwedfodubz > *:first-child { margin-top: 12px; }

/* ── Footer ── */
.ibbehsofuack {
    background: radial-gradient(50% 5.98% at 50% 1.22%, #49627A 5%, #12181F 100%);
    padding: 48px 0 32px;
    margin-top: 64px;
    text-align: center;
}
.veyqwnnsosro {
    margin-bottom: 32px;
}
.veyqwnnsosro img {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
.ssvngyucmiva {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.cqbohhqfejao {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    font-weight: 800;
    font-style: italic;
    transition: color .3s ease;
}
.cqbohhqfejao:hover { color: #f2d4ca; }
.clnnakwgccdf {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.clnnakwgccdf img {
    height: 60px;
    width: 75px;
    object-fit: contain;
    margin: 0;
    padding: 0;
}
.hlbrffnwqsoh {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.hlbrffnwqsoh img {
    height: 45px;
    width: auto;
    object-fit: contain;
    margin: 0;
    padding: 0;
}
.eistlmrozfiy { margin-bottom: 16px; }
.eistlmrozfiy p {
    font-size: 14px;
    line-height: 20px;
    color: #8492B9;
    margin-bottom: 0;
}
.cqkafidnryjo p {
    font-size: 14px;
    line-height: 20px;
    color: #8492B9;
    margin-bottom: 0;
}

/* =============================================================
   RESPONSIVE
============================================================= */

/* ── Desktop (≥769px) ── */
@media (min-width: 769px) {
    .aycpwyoujrsf { display: none; }
    .fxeenkftvwwp   { display: none; }
    .rqsqcozvxral   { display: none; }

    .zfsfexcekwjk .oxygmfffyhvr { display: flex; }
    .jazqdhsoqpmt { flex: 0 0 auto; }

    .meokoimnhrhd {
        display: flex;
        gap: 32px;
        align-items: center;
        flex: 1;
        justify-content: center;
    }
    .laymmfzmchex {
        color: #FFFFFF;
        text-decoration: none;
        font-family: 'Anton', sans-serif;
        font-size: 14px;
        transition: color .3s ease;
        position: relative;
        letter-spacing: 1.1px;
        font-style: italic;
    }
    .laymmfzmchex:hover { color: #60B5F2; }

    .phntpwtjrveb {
        display: flex;
        gap: 8px;
    }

    .cofscttkvope {
        min-height: 450px;
        display: flex;
        align-items: center;
    }
    .nnafjldsiulh { font-size: 16px; }
}

/* ── Tablet ── */
@media (min-width: 769px) and (max-width: 1024px) {
    .aekyolvaedpk { font-size: 40px; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {

    body.menu-open { overflow: hidden; }

    /* Header */
    .aycpwyoujrsf {
        display: flex;
        order: 3;
    }
    .zfsfexcekwjk {
        padding-bottom: 70px;
    }
    .zfsfexcekwjk .oxygmfffyhvr {
        display: flex;
        align-items: center;
        gap: 0;
        flex-wrap: nowrap;
        padding: 0 16px;
    }
    .jazqdhsoqpmt {
        flex: 1;
        display: flex;
        justify-content: center;
        order: 2;
    }
    .lervzwegxrqb {
        order: 1;
        flex-shrink: 0;
    }
    .phntpwtjrveb {
        position: absolute;
        top: 55px;
        left: 0;
        width: 100%;
        display: flex;
        gap: 8px;
        padding: 10px 16px;
    }
    .bxpvxzlsddnx {
        flex: 1;
        padding: 12px 16px;
        font-size: 18px;
        width: auto;
        height: 44px;
    }

    /* Sidebar */
    .rqsqcozvxral {
        position: fixed;
        right: -100%;
        left: auto;
        top: 0;
        width: 100%;
        height: 100vh;
        background: #0F141A;
        border-left: 1px solid rgba(255,255,255,.1);
        z-index: 1000;
        transition: right .3s ease;
    }
    .rqsqcozvxral.wyajxkzafzbt { right: 0; }
    .ygnfpicbbcbp {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #fff;
        font-size: 40px;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        width: 40px;
        height: 40px;
        transition: all .3s ease;
    }
    .ygnfpicbbcbp:hover {
        color: #30ff36;
        transform: rotate(90deg);
    }
    .foqoizxdmaeq {
        margin-top: 80px;
        padding: 20px 10px;
    }
    .dzwbzephlvof {
        font-size: 18px;
        padding: 14px 20px;
    }

    /* Hero */
    .cofscttkvope {
        background-image: url('../img/flcacozzwcvzgh.webp');
        background-size: cover;
        background-position: top center;
        min-height: 400px;
        display: flex;
        align-items: flex-end;
        margin-bottom: 0;
    }
    .cofscttkvope::before {
        background: linear-gradient(360deg, #0C1014 10.48%, rgba(0,0,0,.5) 36%, rgba(4,38,77,0) 80.23%);
    }
    .cofscttkvope .oxygmfffyhvr { z-index: 1; }
    .vtuhyixpppoi {
        position: static;
        text-align: center;
        padding: 20px 10px;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    .aekyolvaedpk {
        font-size: 40px;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    .ekqsodtodgtb { font-size: 18px; }
    .jokxlexzzrkc { height: 60px; }
    .zaunyzrakhsy,
    .rhfdvjuvqpnm { width: 30px; }
    .krblgchgrrll {
        font-size: 18px;
        padding: 15px 8px;
    }

    /* Main */
    .uzteyjliawxn { margin-left: 0; padding: 0; }
    .oxygmfffyhvr { padding: 0 16px; }
    .ugethvumtijx { padding: 16px 0; }

    /* Tables */
    .bmmbuiwjepfq { overflow-x: auto; }
    .trxykuednbcb {
        min-width: auto;
        white-space: normal;
    }
    .trxykuednbcb td {
        padding: 6px;
        font-size: 14px;
    }
    .tvsnoyoutgvm { font-size: 14px; }
    .knpdjqhkikhb { font-size: 14px; }

    /* Typography */
    h1 { font-size: 31px; line-height: 33px; }
    h2 { font-size: 29px; line-height: 32px; }
    h3 { font-size: 27px; line-height: 29px; }
    h4 { font-size: 24px; line-height: 26px; }
    h5 { font-size: 20px; line-height: 24px; }
    h6 { font-size: 19px; line-height: 20px; }
    p  { font-size: 16px; line-height: 22px; }
    ul, ol { font-size: 16px; line-height: 22px; }

    /* Slots */
    .ezkejihtuwpr { gap: 10px; }
    .udruwjlhwyxd  { font-size: 12px; }

    /* Footer */
    .ibbehsofuack {
        padding: 32px 0 24px;
        margin-top: 48px;
    }
    .veyqwnnsosro { margin-bottom: 24px; }
    .veyqwnnsosro img { max-width: 160px; }
    .ssvngyucmiva {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }
    .cqbohhqfejao { font-size: 14px; }
    .clnnakwgccdf { gap: 16px; margin-bottom: 20px; }
    .clnnakwgccdf img { height: 32px; }
    .hlbrffnwqsoh { gap: 16px; margin-bottom: 24px; }
    .hlbrffnwqsoh img { height: 30px; }
    .eistlmrozfiy p,
    .cqkafidnryjo p { font-size: 12px; line-height: 18px; }
}

@media (max-width: 600px) {
    .ezkejihtuwpr { gap: 10px; }
}
