@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

* {
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: white;
    background-color: #050d21;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    min-height: 100vh;
}

/* ── Utilities ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ── Header Disclaimer ── */
.header-disclamer {
    width: 100%;
    padding: 10px 20px;
    text-align: center;
    font-size: 12px;
    color: #c5c5c5;
    background-color: rgba(20, 20, 40, 0.85);
    border-bottom: 1px solid #2e3c56;
    position: relative;
    z-index: 100;
}

/* ── Sticky Top Bar ── */
.top {
    background: rgba(5, 13, 33, 0.35);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    padding: 12px 20px;
    text-align: center;
    border-bottom: 1px solid #2e3c56;
    position: sticky;
    top: 0;
    z-index: 99;
}

.top .logo-cover {
    display: none;
    max-width: 140px;
    margin: 0 auto 6px;
}

.top .logo-cover img {
    max-width: 100%;
}

.top .last-updated {
    color: rgba(255, 147, 89, 0.9);
    font-size: 10pt;
    margin-top: 6px;
    margin-bottom: 0;
}

/* ── Typography ── */
h1 {
    color: white;
    font-size: 22pt;
    font-family: "Cal Sans", sans-serif;
    line-height: 1.2;
}

h2, h3 {
    font-family: "Cal Sans", sans-serif;
}

/* ── Header Section ── */
header {
    padding-top: 18px;
    padding-bottom: 4px;
}

header > p {
    text-align: center;
    margin: 16px 0 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 11pt;
}

header .sub-headline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 14px;
    line-height: 1.5;
}

header .sub-headline .font-bold {
    font-weight: 700;
    background: -webkit-linear-gradient(#faf75e, #f6ff18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header .iconsList {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    gap: 10px;
    flex-wrap: wrap;
}

header .item {
    font-size: 10pt;
    display: flex;
    gap: 6px;
    align-items: center;
    color: rgba(255, 255, 255, 0.99);
}

header .item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

header .item svg {
    width: 22px;
    height: 22px;
    stroke: #FF9359;
    flex-shrink: 0;
}

/* ── Brands Grid ── */
.brands {
    margin-top: 40px;
    margin-bottom: 60px;
}

.brandsSpan {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Place Badge & Tag ── */
.places {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    gap: 2px;
    align-self: flex-start;
}

.place {
    display: block;
    position: absolute;
    left: -30px;
    top: -25px;
    font-size: 10pt;
    color: black;
    padding: 2px 10px;
    font-weight: 800;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(255, 147, 89, 1) 0%, rgba(255, 212, 143, 1) 100%);
}

.tag {
    display: block;
    position: relative;
    top: -25px;
    font-size: 10pt;
    color: black;
    padding: 2px 10px;
    font-weight: 500;
    border-radius: 10px;
    text-transform: capitalize !important;
    background: linear-gradient(0deg, rgba(255, 147, 89, 1) 0%, rgba(255, 212, 143, 1) 100%);
    white-space: nowrap;
}

/* ── Desktop Brand Card ── */
.brandItem {
    display: flex;
    justify-content: space-between;
    padding: 24px 20px;
    border: 1px solid #273248;
    border-radius: 10px;
    background: rgba(5, 13, 33, 0.6);
    margin-bottom: 30px;
    align-items: center;
    position: relative;
    transition: border-color 0.2s ease;
}

.brandItem:hover {
    border: 1px solid #485878;
}

.brandItem .brandImage {
    display: block;
    padding: 8px 14px;
    object-fit: cover;
    width: 22%;
    text-align: center;
}

.brandItem .brandImage img {
    max-width: 260px;
    max-height: 130px;
    width: 100%;
    object-fit: contain;
}

.brandItem .bonuses {
    text-align: center;
    width: 28%;
}

.brandItem .bonuses h2 {
    font-size: 20pt;
    font-family: "Cal Sans", sans-serif;
    line-height: 1.3;
    font-weight: 400;
}

.brandItem .bonuses h2 p {
    margin: 0;
    font-size: inherit;
    font-family: inherit;
    font-weight: 400;
}

.brandItem .bonuses h2 strong {
    font-size: 20pt;
    font-weight: 700;
}

.brandItem .bonuses span.bonus-3 {
    font-size: 11pt;
    font-weight: 300;
    font-family: "Cal Sans", sans-serif;
    opacity: 0.85;
}

.online-players {
    font-size: 10pt;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 6px;
}

.online-players .online-players-count {
    color: #4ade80;
    font-weight: 500;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.brandItem .rating {
    max-width: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Cal Sans", sans-serif;
    width: 12%;
}

.brandItem .rating h2 {
    font-size: 30pt;
    margin-bottom: 4px;
    line-height: 1;
}

.stars-text {
    font-size: 14pt;
    color: #FF9359;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 4px;
}

.brandItem .rating .stars-text {
    font-size: 12pt;
}

.brandItem .rating p {
    font-size: 8pt;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    text-align: center;
    margin-top: 2px;
}

.brandItem .paymentsMethods {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    max-width: 110px;
    height: max-content;
    width: 10%;
}

.brandItem .paymentsMethods img {
    width: 34px;
    height: auto;
}

/* ── Claim Button ── */
.claimBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 20%;
    gap: 6px;
}

.visit-site-link {
    font-size: 9pt;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-align: center;
    margin-top: 6px;
    white-space: nowrap;
}

.visit-site-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ── Policy Text ── */
.policy-text {
    margin: -22px auto 24px;
    padding: 6px 12px;
    max-width: 96%;
    text-align: center;
}

.policy-text p {
    font-size: 8pt;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    line-height: 1.4;
}

/* ── Shimmer Button ── */
.btn-redirect {
    font-size: 1.25rem;
    background: linear-gradient(0deg, rgba(255, 147, 89, 1) 0%, rgba(255, 212, 143, 1) 100%);
    padding: .75em 1.3em;
    position: relative;
    border: none;
    outline: none;
    border-radius: 0.66em;
    font-family: "Cal Sans", sans-serif;
    font-weight: 700;
    height: fit-content;
    text-decoration: none;
    text-transform: capitalize;
    cursor: pointer;
    display: inline-block;
    overflow: visible;
}

.btn-redirect:active {
    transform: scale(0.96);
}

.btn-redirect:hover:before {
    top: -70%;
    background-image: radial-gradient(circle, #FF9359 20%, transparent 20%),
        radial-gradient(circle, transparent 20%, #FF9359 20%, transparent 30%),
        radial-gradient(circle, #FF9359 20%, transparent 20%),
        radial-gradient(circle, #FF9359 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #FF9359 15%, transparent 20%),
        radial-gradient(circle, #FF9359 20%, transparent 20%),
        radial-gradient(circle, #FF9359 20%, transparent 20%),
        radial-gradient(circle, #FF9359 20%, transparent 20%),
        radial-gradient(circle, #FF9359 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
    background-position: 50% 120%;
    animation: greentopBubbles 0.6s ease;
}

.btn-redirect:hover::after {
    bottom: -70%;
    background-image: radial-gradient(circle, #FF9359 20%, transparent 20%),
        radial-gradient(circle, #FF9359 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #FF9359 15%, transparent 20%),
        radial-gradient(circle, #FF9359 20%, transparent 20%),
        radial-gradient(circle, #FF9359 20%, transparent 20%),
        radial-gradient(circle, #FF9359 20%, transparent 20%),
        radial-gradient(circle, #FF9359 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 50% 0%;
    animation: greenbottomBubbles 0.6s ease;
}

@keyframes greentopBubbles {
    0%   { background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%; }
    50%  { background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%; }
    100% { background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%; background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
}

@keyframes greenbottomBubbles {
    0%   { background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%; }
    50%  { background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%; }
    100% { background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%; background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
}

/* Shimmer effect */
:root {
    --shimmer-hue-1: 213deg;
    --shimmer-sat-1: 95%;
    --shimmer-lit-1: 91%;
    --shimmer-hue-2: 248deg;
}

@property --mask {
    syntax: "<angle>";
    inherits: false;
    initial-value: 33deg;
}

@keyframes spin {
    0%   { --mask: 0deg; }
    100% { --mask: 360deg; }
}

@keyframes text {
    0%   { background-position: 100% center; }
    100% { background-position: -100% center; }
}

.shimmer {
    position: absolute;
    inset: -40px;
    border-radius: inherit;
    mix-blend-mode: plus-lighter;
    pointer-events: none;
}

.shimmer::before,
.shimmer::after {
    transition: all 0.5s ease;
    opacity: 0;
    content: "";
    border-radius: inherit;
    position: absolute;
    inset: 40px;
}

.shimmer::before {
    box-shadow:
        0 0 3px 2px hsl(var(--shimmer-hue-1) 20% 95%),
        0 0 7px 4px hsl(var(--shimmer-hue-1) 20% 80%),
        0 0 13px 8px hsl(var(--shimmer-hue-2) 40% 60%),
        0 0 22px 6px hsl(var(--shimmer-hue-2) 20% 40%);
    z-index: -1;
}

.shimmer::after {
    box-shadow:
        inset 0 0 0 1px hsl(var(--shimmer-hue-2) 70% 95%),
        inset 0 0 3px 1px hsl(var(--shimmer-hue-2) 100% 80%),
        inset 0 0 9px 1px hsl(var(--shimmer-hue-2) 100% 70%);
    z-index: 2;
}

.btn-redirect:focus .shimmer,
.btn-redirect:active .shimmer {
    animation-play-state: paused !important;
    mask-image: none !important;
}

.btn-redirect:hover .shimmer::before,
.btn-redirect:hover .shimmer::after {
    opacity: 1;
}

.btn-redirect .text {
    color: transparent;
    background-clip: text;
    background-color: black;
    background-image: linear-gradient(120deg, transparent, hsla(var(--shimmer-hue-1), 100%, 80%, 0.66) 40%, hsla(var(--shimmer-hue-2), 100%, 90%, .9) 50%, transparent 52%);
    background-repeat: no-repeat;
    background-size: 300% 300%;
    background-position: center 200%;
}

.btn-redirect:hover .text {
    animation: text .66s ease-in-out 1;
}

.shimmer::before,
.shimmer::after {
    opacity: 1;
}

.shimmer {
    mask-image: conic-gradient(
        from var(--mask, 0deg),
        transparent 0%, transparent 10%,
        black 36%, black 45%,
        transparent 50%, transparent 60%,
        black 85%, black 95%,
        transparent 100%
    );
    mask-size: cover;
    animation: spin 3s linear infinite both -0.5s;
}

/* ── Desktop / Mobile toggle ── */
.desktop { display: block; }
.mobile  { display: none; }

/* ── FAQ Section ── */
.faqBox {
    margin-bottom: 90px;
}

.fqa {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22pt;
}

.fqaBox {
    background: rgba(5, 13, 33, 0.35);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #3e4a62;
    margin: 20px 0;
}

.fqaBox h3 {
    font-size: 18pt;
    margin-bottom: 10px;
    color: #fff;
}

.fqaBox h4 {
    font-size: 13pt;
    margin: 14px 0 6px;
    color: rgba(255, 255, 255, 0.9);
}

.fqaBox p {
    font-size: 11pt;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

.fqaBox ul {
    margin: 8px 0 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11pt;
    line-height: 1.8;
}

/* ── About Section ── */
.about-section-wrapper {
    background: rgba(5, 13, 33, 0.8);
    padding: 40px 0 20px;
}

.about-section-title {
    text-align: center;
    font-size: 20pt;
    margin-bottom: 24px;
    color: #fff;
    font-family: "Cal Sans", sans-serif;
}

.about-item {
    background: rgba(5, 13, 33, 0.35);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    padding: 24px 20px;
    border-radius: 10px;
    border: 1px solid #3e4a62;
    margin: 16px 0;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: border-color 0.2s;
}

.about-item:hover {
    border-color: rgba(255, 147, 89, 0.4);
}

.about-image {
    width: 54px;
    min-width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-item article h2 {
    font-size: 15pt;
    margin-bottom: 8px;
    color: #fff;
}

.about-item article p {
    font-size: 10.5pt;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
}

/* ── Play Safe Section ── */
.playSafe {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20pt;
    color: #fff;
    font-family: "Cal Sans", sans-serif;
}

.safeBrands {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.safeBrands img {
    height: 40px;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.safeBrands img:hover {
    opacity: 1;
}

/* ── Copyrights / Footer ── */
.coprights {
    text-align: center;
    background: rgba(5, 13, 33, 0.6);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    padding: 30px;
    border-top: 1px solid #2e3c56;
}

.coprights p {
    font-size: 9pt;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 6px;
}

/* ── Exit Popup (PHP main.js controlled) ── */
.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.popup-underlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.popup-body {
    position: relative;
    background: linear-gradient(160deg, rgba(10, 20, 50, 0.92) 0%, rgba(5, 13, 33, 0.96) 100%);
    border: 1px solid #3e4a62;
    border-radius: 16px;
    padding: 36px 32px;
    max-width: 480px;
    width: 92%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 147, 89, 0.08);
    z-index: 1;
    transform: translateY(0) scale(1);
    text-align: center;
}

.close-popup-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    cursor: pointer;
    transform: rotate(45deg);
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.close-popup-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.popup-logo-cover {
    margin-bottom: 18px;
}

.popup-logo-cover img {
    max-width: 200px;
    max-height: 80px;
    object-fit: contain;
}

.popup-button-cover .offer-message {
    margin-bottom: 18px;
}

.popup-button-cover .welcome-1 {
    font-family: "Cal Sans", sans-serif;
    font-size: 18pt;
    color: #fff;
    margin-bottom: 4px;
}

.popup-button-cover .welcome-2 {
    font-size: 13pt;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
}

.popup-button-cover .welcome-3 {
    font-size: 11pt;
    color: rgba(255, 255, 255, 0.65);
}

.popup-button-cover .offer-buttons {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.popup-button-cover .get-bonus {
    font-size: 1.1rem;
    background: linear-gradient(0deg, rgba(255, 147, 89, 1) 0%, rgba(255, 212, 143, 1) 100%);
    padding: .75em 1.6em;
    border: none;
    border-radius: 0.66em;
    font-family: "Cal Sans", sans-serif;
    font-weight: 700;
    text-decoration: none;
    color: black;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.15s;
}

.popup-button-cover .get-bonus:hover {
    transform: scale(1.04);
}

/* ── Responsive ── */
@media screen and (max-width: 768px) {
    .desktop { display: none; }
    .mobile  { display: block; }

    .top {
        padding: 8px 10px;
    }

    h1 {
        font-size: 13pt;
        margin-bottom: 0;
    }

    .top .last-updated {
        font-size: 9pt;
    }

    header > p {
        display: none;
    }

    header .sub-headline {
        display: none;
    }

    header .iconsList {
        padding: 10px 0;
        display: flex;
        justify-content: space-between;
        gap: 5px;
        align-items: center;
        background: rgba(5, 13, 33, 0.35);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        border-top: none;
        border-bottom: none;
        flex-wrap: nowrap;
    }

    header .item {
        font-size: 0.6em;
        padding: 8px;
        display: block;
        text-align: center;
    }

    header .item img {
        width: 16px;
        margin-right: 4px;
    }

    .brands {
        margin-top: 24px;
    }

    /* Mobile brand card */
    .brandItemMobile {
        background: linear-gradient(to top, rgba(255, 147, 89, 1), rgba(255, 212, 143, 1));
        padding: 2px;
        position: relative;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .brandItemMobile .box {
        background: #0b172e;
        border-radius: 10px;
        padding: 0;
        display: grid;
        grid-template-columns: 50% 50%;
    }

    .brandItemMobile .place {
        display: block;
        position: absolute;
        left: -10px;
        top: -10px;
        font-size: 9pt;
        color: black;
        padding: 2px 10px;
        font-weight: 800;
        border-radius: 10px;
        background: linear-gradient(0deg, rgba(255, 147, 89, 1) 0%, rgba(255, 212, 143, 1) 100%);
    }

    .brandItemMobile .tag {
        display: block;
        position: relative;
        left: 20px;
        top: -10px;
        font-size: 9pt;
        color: black;
        padding: 2px 10px;
        font-weight: 500;
        border-radius: 10px;
        text-transform: capitalize !important;
        background: linear-gradient(0deg, rgba(255, 147, 89, 1) 0%, rgba(255, 212, 143, 1) 100%);
        white-space: nowrap;
    }

    .brandItemMobile .right {
        padding: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-right: 1.5px solid rgba(255, 147, 89, 1);
        background: linear-gradient(0deg, rgba(255, 147, 89, 0.2) 0%, rgba(255, 212, 143, 0.2) 100%);
        border-radius: 10px 0 0 10px;
    }

    .brandItemMobile .right .brandLogo {
        margin-top: 6px;
        max-width: 180px;
        padding: 0 10px;
        height: 5.5rem;
        object-fit: contain;
    }

    .brandItemMobile .right .rating {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 4px;
    }

    .brandItemMobile .right h2 {
        margin-top: 6px;
        font-size: 12pt;
    }

    .brandItemMobile .right .stars-text {
        font-size: 10pt;
        display: block;
    }

    .brandItemMobile .paymentsMethods {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2px;
        flex-wrap: wrap;
        margin-top: 6px;
    }

    .brandItemMobile .paymentsMethods img {
        max-width: 20px;
    }

    .brandItemMobile .left {
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .brandItemMobile .bonuses {
        height: 70%;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 8px;
    }

    .brandItemMobile .bonuses p {
        font-family: "Cal Sans", sans-serif;
        font-size: 12pt;
        font-weight: 400;
        line-height: 1.4;
        text-align: center;
        color: #fff;
    }

    .brandItemMobile .bonuses p strong {
        font-size: 12pt;
        font-weight: 700;
    }

    .brandItemMobile .online-players {
        font-size: 8pt;
        margin-top: 4px;
    }

    .brandItemMobile .claimBtn {
        height: 30%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 12px;
        padding: 0 8px;
        width: 100%;
    }

    .brandItemMobile .claimBtn .btn-redirect {
        font-size: 10pt;
        padding: 10px 14px;
        width: 100%;
        text-align: center;
    }

    .brandItemMobile:not(:first-of-type) {
        background: linear-gradient(to top, #b8b8b8ab, #b8b8b8ab);
    }

    .brandItemMobile:not(:first-of-type) .right {
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        background: linear-gradient(0deg, rgba(82, 82, 82, 0.2) 0%, rgba(206, 206, 206, 0.2) 100%);
    }

    .btn-redirect {
        font-size: 10pt;
    }

    .policy-text {
        margin: 0 0 16px;
        padding: 6px 8px;
    }

    .fqaBox h3 {
        font-size: 14pt;
    }

    .fqaBox p {
        font-size: 10pt;
    }

    .about-item {
        flex-direction: column;
    }

    .safeBrands img {
        height: 30px;
    }

    .popup-body {
        padding: 28px 20px;
    }

    .popup-button-cover .welcome-1 {
        font-size: 15pt;
    }
}

@media screen and (max-width: 480px) {
    .brandItemMobile .right .brandLogo {
        max-width: 130px;
        height: 4.5rem;
    }
}
