/* =========================================================
   PLAY99EXCH CUSTOM PAGE
   Scoped CSS - Safe for WordPress Custom Themes
========================================================= */

.p99-page {
    --p99-blue: #2145ad;
    --p99-blue-dark: #102866;
    --p99-navy: #091a45;
    --p99-yellow: #ffd900;
    --p99-yellow-dark: #e9c300;
    --p99-text: #17233f;
    --p99-muted: #667085;
    --p99-light: #f5f8ff;
    --p99-white: #ffffff;
    --p99-border: #e4e9f3;
    --p99-green: #16a36a;

    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: var(--p99-text);
    background: var(--p99-white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

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

.p99-page img {
    max-width: 100%;
    height: auto;
}

.p99-page a {
    text-decoration: none;
}

.p99-page h1,
.p99-page h2,
.p99-page h3,
.p99-page h4,
.p99-page p,
.p99-page ul {
    margin-top: 0;
}

.p99-page h1,
.p99-page h2,
.p99-page h3,
.p99-page h4 {
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   HERO
========================================================= */

.p99-hero {
    position: relative;
    padding: 90px 0;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(65, 117, 255, .3), transparent 35%),
        linear-gradient(135deg, #0b1d52 0%, #173a91 55%, #214bb6 100%);
}

.p99-hero h1 {
    max-width: 680px;
    margin-bottom: 25px;
    color: #fff;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.p99-hero h1 span {
    color: var(--p99-yellow);
}

.p99-hero-text {
    max-width: 650px;
    margin-bottom: 30px;
    color: rgba(255,255,255,.85);
    font-size: 18px;
    line-height: 1.8;
}

.p99-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    color: var(--p99-yellow);
    background: rgba(255,255,255,.08);
    font-size: 13px;
    font-weight: 700;
}

.p99-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.p99-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 12px 22px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    transition: .25s ease;
}

.p99-btn:hover {
    transform: translateY(-2px);
}

.p99-btn-yellow {
    color: #101d48 !important;
    background: var(--p99-yellow);
    border-color: var(--p99-yellow);
}

.p99-btn-yellow:hover {
    color: #101d48 !important;
    background: #ffe83d;
}

.p99-btn-outline {
    color: #fff !important;
    background: transparent;
    border-color: rgba(255,255,255,.55);
}

.p99-btn-outline:hover {
    color: #fff !important;
    background: rgba(255,255,255,.1);
}

.p99-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255,255,255,.75);
    font-size: 13px;
}

.p99-trust-row div {
    display: flex;
    align-items: center;
    gap: 7px;
}

.p99-trust-row i {
    color: var(--p99-yellow);
}


/* HERO IMAGE */

.p99-hero-image-wrap {
    position: relative;
    max-width: 560px;
    margin: auto;
}

.p99-glow {
    position: absolute;
    inset: 10% -10% -10% 10%;
    border-radius: 50%;
    background: rgba(53, 109, 255, .4);
    filter: blur(70px);
}

.p99-hero-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    min-height: 400px;
    object-fit: cover;
    border: 7px solid rgba(255,255,255,.1);
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.p99-floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    color: #fff;
    background: rgba(8,25,66,.92);
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
    backdrop-filter: blur(10px);
}

.p99-floating-card i {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 10px;
    color: #172a63;
    background: var(--p99-yellow);
}

.p99-floating-card strong,
.p99-floating-card small {
    display: block;
}

.p99-floating-card strong {
    font-size: 13px;
}

.p99-floating-card small {
    color: rgba(255,255,255,.6);
    font-size: 11px;
}

.p99-card-one {
    top: 12%;
    left: -35px;
}

.p99-card-two {
    right: -30px;
    bottom: 12%;
}


/* =========================================================
   SECTIONS
========================================================= */

.p99-section {
    padding: 90px 0;
}

.p99-white {
    background: #fff;
}

.p99-light {
    background: var(--p99-light);
}

.p99-section-heading {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}

.p99-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--p99-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.p99-section-heading h2,
.p99-section > .container > .row h2 {
    margin-bottom: 18px;
    color: var(--p99-text);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
}

.p99-section-heading p {
    margin-bottom: 0;
    color: var(--p99-muted);
    font-size: 17px;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.p99-feature-card {
    height: 100%;
    padding: 30px 25px;
    border: 1px solid var(--p99-border);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(25,50,100,.05);
    transition: .25s ease;
}

.p99-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(33,69,173,.2);
    box-shadow: 0 18px 40px rgba(25,50,100,.1);
}

.p99-icon {
    display: grid;
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: var(--p99-blue);
    font-size: 20px;
}

.p99-feature-card h3,
.p99-service-card h3,
.p99-feature-large h3,
.p99-check-card h3 {
    margin-bottom: 10px;
    color: var(--p99-text);
    font-size: 20px;
    font-weight: 750;
}

.p99-feature-card p,
.p99-service-card p,
.p99-feature-large p,
.p99-check-card p {
    margin-bottom: 0;
    color: var(--p99-muted);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   STEPS
========================================================= */

.p99-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--p99-blue) !important;
    font-weight: 700;
}

.p99-text-link:hover {
    color: var(--p99-blue-dark) !important;
}

.p99-steps {
    display: grid;
    gap: 15px;
}

.p99-step {
    display: flex;
    gap: 20px;
    padding: 23px;
    border: 1px solid var(--p99-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(20,40,90,.04);
}

.p99-step-number {
    flex: 0 0 48px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 12px;
    color: var(--p99-blue);
    background: #eaf0ff;
    font-size: 13px;
    font-weight: 800;
}

.p99-step h3 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 750;
}

.p99-step p {
    margin: 0;
    color: var(--p99-muted);
    font-size: 14px;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.p99-service-card {
    height: 100%;
    padding: 32px;
    border: 1px solid var(--p99-border);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(20,40,90,.05);
}

.p99-service-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 14px;
    font-size: 22px;
}

.p99-service-icon.blue {
    color: #1e4fc4;
    background: #eaf0ff;
}

.p99-service-icon.yellow {
    color: #856900;
    background: #fff5c7;
}

.p99-service-icon.green {
    color: #087a4e;
    background: #ddf8ec;
}

.p99-service-card ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.p99-service-card li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 23px;
    color: #526078;
    font-size: 14px;
}

.p99-service-card li::before {
    position: absolute;
    top: 3px;
    left: 0;
    content: "\f00c";
    color: var(--p99-blue);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.p99-service-card > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--p99-blue) !important;
    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   DARK SECTION
========================================================= */

.p99-dark-section {
    padding: 90px 0;
    color: #fff;
    background:
        radial-gradient(circle at 80% 50%, rgba(40,80,180,.35), transparent 40%),
        var(--p99-navy);
}

.p99-dark-section h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.2;
}

.p99-dark-section h2 span {
    color: var(--p99-yellow);
}

.p99-dark-section p {
    color: rgba(255,255,255,.7);
}

.p99-label-light {
    color: var(--p99-yellow);
}

.p99-check-list {
    display: grid;
    gap: 13px;
    margin: 25px 0 30px;
}

.p99-check-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.85);
    font-size: 14px;
}

.p99-check-list i {
    color: var(--p99-yellow);
}


/* SECURITY BOX */

.p99-security-box {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: rgba(255,255,255,.06);
}

.p99-security-top {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 5px;
}

.p99-security-top > i {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 12px;
    color: #142a64;
    background: var(--p99-yellow);
    font-size: 20px;
}

.p99-security-top span,
.p99-security-top strong {
    display: block;
}

.p99-security-top span {
    color: rgba(255,255,255,.5);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.p99-security-top strong {
    color: #fff;
    font-size: 16px;
}

.p99-security-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.8);
    font-size: 14px;
}

.p99-security-item:last-child {
    border-bottom: 0;
}

.p99-security-item i {
    color: var(--p99-yellow);
}


/* =========================================================
   LARGE FEATURE
========================================================= */

.p99-feature-large {
    height: 100%;
    padding: 35px;
    border: 1px solid var(--p99-border);
    border-radius: 16px;
    background: #fff;
}

.p99-feature-large > i {
    display: inline-grid;
    width: 55px;
    height: 55px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: var(--p99-blue);
    font-size: 21px;
}


/* =========================================================
   CHECK CARDS
========================================================= */

.p99-check-card {
    height: 100%;
    padding: 25px;
    border: 1px solid var(--p99-border);
    border-radius: 14px;
    background: #fff;
}

.p99-check-card > i {
    margin-bottom: 15px;
    color: var(--p99-blue);
    font-size: 23px;
}


/* =========================================================
   SUPPORT
========================================================= */

.p99-support-section {
    padding: 35px 0;
    background: var(--p99-blue);
}

.p99-support-inner {
    display: flex;
    align-items: center;
    gap: 25px;
}

.p99-support-icon {
    flex: 0 0 65px;
    display: grid;
    width: 65px;
    height: 65px;
    place-items: center;
    border-radius: 15px;
    color: #132b6d;
    background: var(--p99-yellow);
    font-size: 25px;
}

.p99-support-content {
    flex: 1;
}

.p99-support-content > span {
    color: rgba(255,255,255,.6);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.p99-support-content h2 {
    margin: 3px 0 5px;
    color: #fff;
    font-size: 24px;
}

.p99-support-content h2 strong {
    color: var(--p99-yellow);
}

.p99-support-content p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 14px;
}


/* =========================================================
   PRIVACY
========================================================= */

.p99-privacy {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    max-width: 950px;
    margin: auto;
    padding: 40px;
    border: 1px solid var(--p99-border);
    border-radius: 18px;
    background: #fff;
}

.p99-privacy-icon {
    flex: 0 0 65px;
    display: grid;
    width: 65px;
    height: 65px;
    place-items: center;
    border-radius: 15px;
    color: var(--p99-blue);
    background: #eaf0ff;
    font-size: 25px;
}

.p99-privacy h2 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 800;
}

.p99-privacy p {
    color: var(--p99-muted);
    font-size: 14px;
}


/* =========================================================
   FAQ
========================================================= */

.p99-faq {
    max-width: 900px;
    margin: auto;
}

.p99-faq-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--p99-border);
    border-radius: 12px;
    background: #fff;
}

.p99-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    border: 0;
    color: var(--p99-text);
    background: #fff;
    text-align: left;
    font-size: 16px;
    font-weight: 750;
}

.p99-faq-question:hover {
    background: #f8faff;
}

.p99-faq-question i {
    color: var(--p99-blue);
    transition: transform .25s ease;
}

.p99-faq-question:not(.collapsed) i {
    transform: rotate(45deg);
}

.p99-faq-answer {
    padding: 0 24px 22px;
    color: var(--p99-muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.p99-final-cta {
    padding: 70px 0;
    background: #f5f7fc;
}

.p99-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 45px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, #10255e, #2147aa);
}

.p99-final-box > div:first-child > span {
    color: var(--p99-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.p99-final-box h2 {
    margin: 8px 0 10px;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
}

.p99-final-box h2 strong {
    color: var(--p99-yellow);
}

.p99-final-box p {
    margin: 0;
    color: rgba(255,255,255,.7);
}

.p99-final-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


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

@media (max-width: 991px) {

    .p99-hero,
    .p99-section,
    .p99-dark-section {
        padding: 65px 0;
    }

    .p99-card-one {
        left: 10px;
    }

    .p99-card-two {
        right: 10px;
    }

    .p99-support-inner {
        flex-wrap: wrap;
    }

    .p99-support-content {
        flex-basis: calc(100% - 90px);
    }

    .p99-final-box {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 767px) {

    .p99-hero,
    .p99-section,
    .p99-dark-section {
        padding: 50px 0;
    }

    .p99-hero h1 {
        font-size: 39px;
    }

    .p99-hero-text {
        font-size: 16px;
    }

    .p99-hero-image {
        min-height: 300px;
    }

    .p99-floating-card {
        display: none;
    }

    .p99-trust-row {
        display: grid;
        gap: 10px;
    }

    .p99-step {
        padding: 18px;
    }

    .p99-service-card,
    .p99-feature-large {
        padding: 25px;
    }

    .p99-privacy {
        flex-direction: column;
        padding: 25px;
    }

    .p99-support-inner {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .p99-support-content {
        flex-basis: auto;
    }

    .p99-support-inner > .p99-btn {
        grid-column: 1 / -1;
        width: 100%;
    }

    .p99-final-box {
        padding: 30px 25px;
    }

    .p99-final-buttons {
        width: 100%;
    }

    .p99-final-buttons .p99-btn {
        flex: 1;
    }
}


@media (max-width: 575px) {

    .p99-hero h1 {
        font-size: 34px;
    }

    .p99-section-heading h2,
    .p99-section > .container > .row h2 {
        font-size: 30px;
    }

    .p99-hero-buttons {
        display: grid;
    }

    .p99-hero-buttons .p99-btn {
        width: 100%;
    }

    .p99-support-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .p99-support-inner .p99-btn {
        width: 100%;
    }
}
/* =========================================================
   PLAY99EXCH HOMEPAGE
========================================================= */

.play99-homepage {
    width: 100%;
    overflow: hidden;
    color: #172b4d;
    background: #fff;
}

.play99-homepage .container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}


/* HERO
--------------------------------------------------------- */

.px-hero {
    position: relative;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 213, 0, .12), transparent 30%),
        linear-gradient(135deg, #071d55 0%, #123b91 50%, #1d4aa8 100%);
    color: #fff;
}

.px-hero h1 {
    color: #fff;
    line-height: 1.12;
}

.px-hero .lead {
    color: rgba(255,255,255,.88);
}

.px-hero p {
    color: rgba(255,255,255,.76);
}

.px-hero-badge {
    background: #ffd600;
    color: #102b72;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.px-hero-image-wrap {
    position: relative;
}

.px-hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.px-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #172b4d;
    padding: 13px 18px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.20);
    font-size: 14px;
    font-weight: 700;
}

.px-floating-card i {
    color: #163d98;
}

.px-floating-one {
    left: -25px;
    bottom: 70px;
}

.px-floating-two {
    right: -20px;
    top: 70px;
}

.px-btn-primary {
    background: #ffd600;
    border: 2px solid #ffd600;
    color: #102b72 !important;
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 22px;
}

.px-btn-primary:hover {
    background: #ffdf35;
    border-color: #ffdf35;
    color: #102b72 !important;
}

.px-btn-outline {
    color: #fff !important;
    border: 2px solid rgba(255,255,255,.65);
    border-radius: 8px;
    padding: 12px 22px;
    font-weight: 700;
}

.px-btn-outline:hover {
    background: #fff;
    color: #173d91 !important;
}


/* GENERAL
--------------------------------------------------------- */

.px-section-light {
    background: #f6f9ff;
}

.px-section-label {
    display: inline-flex;
    align-items: center;
    color: #16449f;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.px-max-text {
    max-width: 680px;
}


/* FEATURE CARDS
--------------------------------------------------------- */

.px-feature-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid #e6ebf4;
    box-shadow: 0 8px 30px rgba(22,58,120,.06);
    transition: all .25s ease;
}

.px-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(22,58,120,.12);
}

.px-feature-card h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #142e60;
}

.px-feature-card p {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.7;
}

.px-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eaf1ff;
    color: #1747a3;
    font-size: 22px;
}

.px-icon-yellow {
    background: #fff5c7;
    color: #b28a00;
}

.px-icon-navy {
    background: #e7ecf8;
    color: #102b72;
}

.px-icon-green {
    background: #e7f8f0;
    color: #087a4b;
}


/* STEPS
--------------------------------------------------------- */

.px-step-list {
    border-left: 2px solid #dbe5f5;
    padding-left: 30px;
}

.px-step {
    position: relative;
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
}

.px-step:last-child {
    padding-bottom: 0;
}

.px-step-number {
    position: absolute;
    left: -51px;
    top: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #173f98;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    border: 4px solid #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,.12);
}

.px-step h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #173a7b;
}

.px-step p {
    color: #66758b;
    line-height: 1.7;
    margin-bottom: 0;
}


/* BLUE SECTION
--------------------------------------------------------- */

.px-blue-section {
    background:
        radial-gradient(circle at 90% 10%, rgba(255,214,0,.12), transparent 30%),
        linear-gradient(135deg, #071d55, #17429b);
}

.px-label-light {
    color: #ffd600;
}

.px-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.9);
    font-size: 15px;
}

.px-check-item i {
    color: #ffd600;
}

.px-btn-yellow {
    background: #ffd600;
    color: #102b72 !important;
    border: 2px solid #ffd600;
    font-weight: 800;
    border-radius: 8px;
    padding: 12px 22px;
}

.px-btn-yellow:hover {
    background: #ffe14d;
    color: #102b72 !important;
}


/* SECURITY CARD
--------------------------------------------------------- */

.px-security-card {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.15);
    padding: 35px;
    border-radius: 20px;
    color: #fff;
    backdrop-filter: blur(10px);
}

.px-security-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffd600;
    color: #102b72;
    border-radius: 16px;
    font-size: 25px;
    margin-bottom: 20px;
}

.px-security-card h3 {
    color: #fff;
}

.px-security-card p {
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.px-security-line {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,.12);
}

.px-security-line i {
    color: #ffd600;
}


/* FEATURE BOXES
--------------------------------------------------------- */

.px-feature-box {
    background: #fff;
    border: 1px solid #e4eaf4;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(17,47,96,.05);
}

.px-feature-box h3 {
    font-size: 21px;
    margin: 20px 0 10px;
    color: #16386f;
}

.px-feature-box p {
    color: #68778d;
    line-height: 1.7;
    margin: 0;
}

.px-feature-box-icon {
    width: 58px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eaf1ff;
    color: #1747a3;
    border-radius: 14px;
    font-size: 22px;
}

.px-feature-box-icon.yellow {
    background: #fff6ce;
    color: #b08700;
}

.px-feature-box-icon.navy {
    background: #e9edf7;
    color: #122e6b;
}


/* INFO PANEL
--------------------------------------------------------- */

.px-info-panel {
    background: linear-gradient(135deg,#f0f5ff,#fff);
    border: 1px solid #dce6f5;
    border-radius: 20px;
    padding: 40px;
}

.px-check-card {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 18px;
    background: #fff;
    border: 1px solid #e4eaf2;
    border-radius: 12px;
}

.px-check-card > i {
    color: #1747a3;
    font-size: 19px;
    margin-top: 2px;
}

.px-check-card strong {
    display: block;
    color: #183766;
    margin-bottom: 4px;
}

.px-check-card small {
    display: block;
    color: #728096;
    line-height: 1.5;
}


/* SUPPORT
--------------------------------------------------------- */

.px-support-section {
    background: #fff;
}

.px-support-card {
    background: #f5f8fd;
    border: 1px solid #e1e8f2;
    border-radius: 18px;
    padding: 15px 25px;
}

.px-support-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid #e0e7f0;
    color: #30466a;
}

.px-support-row:last-child {
    border-bottom: 0;
}

.px-support-row i {
    color: #1747a3;
    width: 25px;
}


/* SAFETY
--------------------------------------------------------- */

.px-safety-icon {
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eaf1ff;
    color: #1747a3;
    border-radius: 50%;
    font-size: 28px;
}


/* FAQ
--------------------------------------------------------- */

.px-accordion .accordion-item {
    border: 1px solid #e1e7f0;
    margin-bottom: 12px;
    border-radius: 10px !important;
    overflow: hidden;
}

.px-accordion .accordion-button {
    color: #173664;
    font-weight: 700;
    padding: 20px;
    background: #fff;
    box-shadow: none !important;
}

.px-accordion .accordion-button:not(.collapsed) {
    background: #f1f6ff;
    color: #17449b;
}

.px-accordion .accordion-button::after {
    background-size: 14px;
}

.px-accordion .accordion-body {
    color: #68778d;
    line-height: 1.7;
    padding: 20px;
}


/* FINAL CTA
--------------------------------------------------------- */

.px-final-cta {
    background: linear-gradient(135deg,#0a245f,#17449c);
    color: #fff;
}

.px-final-cta h2 {
    color: #fff;
}

.px-final-cta p {
    color: rgba(255,255,255,.78);
}

.px-cta-icon {
    color: #ffd600;
    font-size: 38px;
}

.px-btn-outline-light {
    color: #fff !important;
    border: 2px solid rgba(255,255,255,.65);
    padding: 10px 20px;
    font-weight: 700;
}

.px-btn-outline-light:hover {
    color: #173d91 !important;
    background: #fff;
}


/* RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 991.98px) {

    .px-hero {
        text-align: center;
    }

    .px-hero .d-flex {
        justify-content: center;
    }

    .px-hero-image-wrap {
        max-width: 650px;
        margin: 20px auto 0;
    }

    .px-floating-one {
        left: 10px;
    }

    .px-floating-two {
        right: 10px;
    }

}

@media (max-width: 767.98px) {

    .px-hero h1 {
        font-size: 38px;
    }

    .px-hero .lead {
        font-size: 17px;
    }

    .px-floating-card {
        display: none;
    }

    .px-info-panel {
        padding: 25px;
    }

    .px-security-card {
        padding: 25px;
    }

    .px-step-list {
        margin-left: 10px;
    }

}

@media (max-width: 575.98px) {

    .px-hero h1 {
        font-size: 32px;
    }

    .px-feature-card,
    .px-feature-box {
        padding: 25px 20px;
    }

}
Yes. The main issue is likely that your HTML uses Bootstrap Icons classes (bi bi-facebook, etc.), but the Bootstrap Icons font CSS is not loaded. You can avoid the dependency completely by using Font Awesome 6 and loading its stylesheet.

Below is a complete Bootstrap-based footer you can drop into your WordPress theme.

Bootstrap Play99Exch Footer HTML and CSS
HTML
<!-- Font Awesome 6 -->
<link rel="stylesheet"
      href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">

<!-- Bootstrap 5 -->
<link rel="stylesheet"
      href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">

<footer class="play99-footer">
    <div class="container">
        <div class="row gy-5">

            <!-- Brand / About -->
            <div class="col-lg-5 col-md-12">
                <div class="footer-brand">

                    <a href="/" class="footer-logo-link">
                        <img
                            src="/img/play99exch.png"
                            alt="Play99Exch"
                            class="footer-logo">
                    </a>

                    <h3 class="footer-title">
                        Players Love Play99Exch, India’s Most Trusted
                        Online Betting Exchange
                    </h3>

                    <p class="footer-description">
                        Thousands of players choose Play99Exch for its secure
                        platform, competitive odds, and smooth betting
                        experience. From Cricket betting to Live Casino games
                        and real-time sports markets, Play99Exch delivers fast
                        access, safe deposits, quick withdrawals, and reliable
                        24/7 customer support.
                    </p>

                    <!-- Social Icons -->
                    <div class="footer-social">

                        <a href="#" aria-label="Facebook">
                            <i class="fa-brands fa-facebook-f"></i>
                        </a>

                        <a href="#" aria-label="Twitter">
                            <i class="fa-brands fa-x-twitter"></i>
                        </a>

                        <a href="#" aria-label="Instagram">
                            <i class="fa-brands fa-instagram"></i>
                        </a>

                        <a href="#" aria-label="LinkedIn">
                            <i class="fa-brands fa-linkedin-in"></i>
                        </a>

                    </div>

                </div>
            </div>


            <!-- Important Links -->
            <div class="col-lg-3 col-md-6">
                <div class="footer-links">

                    <h4>
                        <span class="footer-heading-icon">
                            <i class="fa-solid fa-link"></i>
                        </span>
                        Important Links
                    </h4>

                    <ul>
                        <li>
                            <a href="#">
                                <i class="fa-solid fa-angle-right"></i>
                                Play99Exch New ID
                            </a>
                        </li>

                        <li>
                            <a href="#">
                                <i class="fa-solid fa-angle-right"></i>
                                Play99Exch Live
                            </a>
                        </li>

                        <li>
                            <a href="#">
                                <i class="fa-solid fa-angle-right"></i>
                                Forgot Withdraw Password
                            </a>
                        </li>

                        <li>
                            <a href="#">
                                <i class="fa-solid fa-angle-right"></i>
                                Play99Exch Customer Support
                            </a>
                        </li>
                    </ul>

                </div>
            </div>


            <!-- Popular Searches -->
            <div class="col-lg-3 col-md-6">
                <div class="footer-links">

                    <h4>
                        <span class="footer-heading-icon">
                            <i class="fa-solid fa-magnifying-glass"></i>
                        </span>
                        Popular Searches
                    </h4>

                    <ul>
                        <li>
                            <a href="#">
                                <i class="fa-solid fa-angle-right"></i>
                                Play99
                            </a>
                        </li>

                        <li>
                            <a href="#">
                                <i class="fa-solid fa-angle-right"></i>
                                Play 99 Exch Signup
                            </a>
                        </li>

                        <li>
                            <a href="#">
                                <i class="fa-solid fa-angle-right"></i>
                                Play 99 Exe Login
                            </a>
                        </li>

                        <li>
                            <a href="#">
                                <i class="fa-solid fa-angle-right"></i>
                                Play99Exch AI
                            </a>
                        </li>

                        <li>
                            <a href="#">
                                <i class="fa-solid fa-angle-right"></i>
                                Play99Exch Provider 247 Login
                            </a>
                        </li>
                    </ul>

                </div>
            </div>

        </div>


        <!-- Bottom Area -->
        <div class="footer-bottom">

            <div class="row align-items-center gy-3">

                <div class="col-md-7">
                    <p class="copyright">
                        © 2026 Play99Exch. All Rights Reserved.
                    </p>
                </div>

                <div class="col-md-5">
                    <div class="footer-badges">

                        <img
                            src="https://play99exch.app/wp-content/themes/play99/img/18-1-1.webp"
                            alt="18+">

                        <img
                            src="https://play99exch.app/wp-content/themes/play99/img/sequre-1-1.webp"
                            alt="Secure">

                    </div>
                </div>

            </div>

        </div>

    </div>
</footer>

CSS
/* =========================================
   PLAY99EXCH FOOTER
========================================= */

.play99-footer {
    position: relative;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 193, 7, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255, 193, 7, 0.05),
            transparent 30%
        ),
        #080b12;

    color: #fff;
    padding: 70px 0 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 193, 7, 0.15);
}


/* Top gold line */

.play99-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        #ffc107,
        #ffda6a,
        #ffc107,
        transparent
    );
}


/* =========================================
   LOGO
========================================= */

.footer-logo-link {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo {
    display: block;
    width: 280px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}


/* =========================================
   BRAND CONTENT
========================================= */

.footer-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 16px;
}

.footer-description {
    color: #aeb4c0;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    max-width: 650px;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.footer-social a {
    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 50%;

    color: #ffc107;
    background: rgba(255, 193, 7, 0.06);

    font-size: 16px;

    text-decoration: none;

    transition:
        all 0.3s ease;
}

.footer-social a:hover {
    color: #111;
    background: #ffc107;
    border-color: #ffc107;

    transform: translateY(-4px);

    box-shadow:
        0 8px 25px rgba(255, 193, 7, 0.25);
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links h4 {
    position: relative;

    display: flex;
    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;

    margin: 8px 0 24px;
    padding-bottom: 13px;
}


/* Heading underline */

.footer-links h4::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 45px;
    height: 2px;

    background: #ffc107;
}


/* Heading icon */

.footer-heading-icon {
    color: #ffc107;
    font-size: 15px;
}


/* Remove default list */

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* Individual links */

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #aeb4c0;

    font-size: 14px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.footer-links a i {
    color: #ffc107;
    font-size: 10px;

    transition:
        transform 0.25s ease;
}

.footer-links a:hover {
    color: #ffc107;
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}


/* =========================================
   BOTTOM FOOTER
========================================= */

.footer-bottom {
    margin-top: 55px;

    padding: 25px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* Copyright */

.copyright {
    margin: 0;

    color: #7f8794;

    font-size: 13px;
}


/* =========================================
   BADGES
========================================= */

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 14px;
}

.footer-badges img {
    width: auto;
    height: 48px;

    object-fit: contain;

    opacity: 0.9;

    transition
}/* =========================================================
   PLAY99EXCH LOGIN PAGE
   Bootstrap 5 + Bootstrap Icons
   ========================================================= */

:root {
    --px-blue: #244786;
    --px-blue-dark: #173362;
    --px-blue-light: #eef4ff;

    --px-yellow: #ffd600;
    --px-yellow-dark: #e6bd00;

    --px-green: #3d704b;
    --px-green-dark: #2e593a;

    --px-dark: #172033;
    --px-text: #344054;
    --px-muted: #667085;

    --px-white: #ffffff;
    --px-light: #f7f9fc;
    --px-border: #e5eaf2;

    --px-radius: 18px;
    --px-shadow: 0 15px 45px rgba(36, 71, 134, 0.10);
}


/* =========================================================
   RESET / BASE
   ========================================================= */

.px-page {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;

    color: var(--px-text);
    background: #ffffff;
    line-height: 1.7;
    overflow: hidden;
}

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

.px-page img {
    max-width: 100%;
    height: auto;
}

.px-container {
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

.px-page h1,
.px-page h2,
.px-page h3,
.px-page h4 {
    color: var(--px-dark);
    font-weight: 750;
    line-height: 1.2;
}

.px-page p {
    color: var(--px-text);
}


/* =========================================================
   HERO
   ========================================================= */

.px-hero {
    position: relative;
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 214, 0, 0.15),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #244786 0%,
            #1d3d76 55%,
            #173362 100%
        );

    color: #fff;
}

.px-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    right: -100px;
    bottom: -150px;
}

.px-hero-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}

.px-hero-content {
    max-width: 700px;
}

.px-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;

    color: var(--px-yellow);
}

.px-eyebrow i {
    font-size: 18px;
}

.px-hero h1 {
    color: #fff;
    font-size: clamp(38px, 5vw, 64px);
    margin: 0 0 24px;
    letter-spacing: -1.5px;
}

.px-hero-text {
    max-width: 650px;
    color: rgba(255,255,255,.84) !important;
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 30px;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.px-hero-image {
    position: relative;
}

.px-hero-image::before {
    content: "";
    position: absolute;
    inset: -15px;

    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 28px;

    transform: rotate(2deg);
}

.px-hero-image img {
    position: relative;
    z-index: 2;

    display: block;
    width: 100%;

    border-radius: 24px;
    border: 5px solid rgba(255,255,255,.9);

    box-shadow:
        0 30px 70px rgba(0,0,0,.25);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.px-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.px-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 12px 23px;

    border-radius: 10px;

    font-size: 15px;
    font-weight: 750;
    text-decoration: none !important;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.px-btn:hover {
    transform: translateY(-2px);
}

.px-btn-primary {
    background: var(--px-yellow);
    color: #111 !important;

    box-shadow:
        0 10px 25px rgba(255,214,0,.25);
}

.px-btn-primary:hover {
    background: #ffe033;
    color: #111 !important;
}

.px-btn-outline {
    background: rgba(255,255,255,.08);
    color: #fff !important;

    border: 1px solid rgba(255,255,255,.45);
}

.px-btn-outline:hover {
    background: #fff;
    color: var(--px-blue) !important;
}


/* =========================================================
   TRUST ROW
   ========================================================= */

.px-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    color: rgba(255,255,255,.85);
    font-size: 14px;
}

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

.px-trust-row i {
    color: var(--px-yellow);
}


/* =========================================================
   SECTIONS
   ========================================================= */

.px-section {
    padding: 90px 0;
}

.px-section-sm {
    padding: 45px 0;
}

.px-section-light {
    background: var(--px-light);
}

.px-section-sky {
    background: var(--px-blue-light);
}


/* =========================================================
   BADGES
   ========================================================= */

.px-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 7px 13px;
    margin-bottom: 14px;

    border-radius: 50px;

    background: #eaf0fb;
    color: var(--px-blue);

    font-size: 13px;
    font-weight: 750;
}

.px-badge-yellow {
    background: #fff5b8;
    color: #675500;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.px-section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.px-section-heading h2 {
    font-size: clamp(30px, 4vw, 46px);
    margin-bottom: 16px;
}

.px-section-heading p {
    color: var(--px-muted);
    font-size: 17px;
}


/* =========================================================
   TWO COLUMN
   ========================================================= */

.px-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.px-content h2 {
    font-size: clamp(30px, 4vw, 45px);
    margin: 10px 0 20px;
}

.px-content p {
    font-size: 17px;
    color: var(--px-text);
}


/* =========================================================
   CARDS
   ========================================================= */

.px-card {
    background: #fff;

    padding: 30px;

    border: 1px solid var(--px-border);
    border-radius: var(--px-radius);

    box-shadow: var(--px-shadow);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.px-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(36,71,134,.15);
}

.px-card h3 {
    font-size: 22px;
    margin: 18px 0 10px;
}

.px-card p {
    color: var(--px-muted);
}


/* =========================================================
   CARD ICON
   ========================================================= */

.px-card-icon {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: var(--px-blue);
    color: #fff;

    font-size: 24px;
}

.px-card-icon.yellow {
    background: var(--px-yellow);
    color: #222;
}

.px-card-icon.navy {
    background: var(--px-blue-dark);
}


/* =========================================================
   CHECK LIST
   ========================================================= */

.px-check-list {
    padding: 0;
    margin: 25px 0 0;
    list-style: none;
}

.px-check-list li {
    position: relative;

    padding-left: 34px;
    margin-bottom: 13px;

    color: var(--px-text);
}

.px-check-list li::before {
    content: "\F26A";

    position: absolute;
    left: 0;
    top: 2px;

    font-family: "bootstrap-icons";

    color: var(--px-green);
    font-size: 18px;
}


/* =========================================================
   STEPS
   ========================================================= */

.px-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.px-step {
    position: relative;

    background: #fff;
    padding: 30px 24px;

    border-radius: 18px;
    border: 1px solid var(--px-border);

    box-shadow: 0 10px 30px rgba(36,71,134,.07);
}

.px-step-number {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--px-yellow);
    color: #111;

    font-size: 14px;
    font-weight: 800;
}

.px-step-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 14px;

    background: var(--px-blue);
    color: #fff;

    font-size: 23px;
}

.px-step h3 {
    font-size: 20px;
}

.px-step p {
    color: var(--px-muted);
    font-size: 15px;
}


/* =========================================================
   GRID
   ========================================================= */

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

.px-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


/* =========================================================
   NOTICE
   ========================================================= */

.px-notice {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 22px 25px;

    background: #eff8f1;
    border-left: 5px solid var(--px-green);

    border-radius: 12px;
}

.px-notice > div:first-child {
    color: var(--px-green);
    font-size: 25px;
}

.px-notice strong {
    color: var(--px-dark);
    font-size: 17px;
}

.px-notice p {
    margin: 5px 0 0;
    color: var(--px-muted);
}

.px-notice-muted {
    margin-top: 30px;
    background: #f7f7f7;
    border-left-color: var(--px-blue);
}

.px-notice.yellow {
    background: #fff9d8;
    border-left-color: var(--px-yellow);
}


/* =========================================================
   MINI LIST
   ========================================================= */

.px-mini-list {
    margin-top: 28px;
}

.px-mini-item {
    display: flex;
    gap: 15px;

    padding: 15px 0;

    border-bottom: 1px solid var(--px-border);
}

.px-mini-item > span {
    flex: 0 0 35px;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf5ed;
    color: var(--px-green);

    border-radius: 50%;
}

.px-mini-item strong {
    color: var(--px-dark);
}

.px-mini-item p {
    margin: 3px 0 0;
    font-size: 14px;
    color: var(--px-muted);
}


/* =========================================================
   TROUBLESHOOT CARD
   ========================================================= */

.px-troubleshoot-card {
    border-top: 5px solid var(--px-yellow);
}

.px-security-warning {
    display: flex;
    gap: 10px;

    padding: 14px;

    margin: 20px 0;

    border-radius: 10px;

    background: #fff8d5;
    color: #6c5a00;

    font-size: 14px;
}

.px-security-warning i {
    color: #b08e00;
}


/* =========================================================
   FEATURE CARDS
   ========================================================= */

.px-feature {
    display: flex;
    gap: 20px;

    padding: 25px;

    background: #fff;

    border: 1px solid var(--px-border);
    border-radius: 16px;

    box-shadow: 0 8px 25px rgba(0,0,0,.04);
}

.px-feature-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #eaf0fb;
    color: var(--px-blue);

    font-size: 22px;
}

.px-feature h3 {
    margin: 0 0 7px;
    font-size: 19px;
}

.px-feature p {
    margin: 0;
    color: var(--px-muted);
    font-size: 14px;
}


/* =========================================================
   CONTENT IMAGE
   ========================================================= */

.px-content-image img {
    width: 100%;
    border-radius: 22px;

    box-shadow:
        0 25px 55px rgba(36,71,134,.15);
}


/* =========================================================
   MOBILE PHONE MOCKUP
   ========================================================= */

.px-mobile-card {
    display: flex;
    justify-content: center;
}

.px-phone {
    width: 280px;

    padding: 12px;

    border-radius: 38px;

    background: #111b2d;

    box-shadow:
        0 25px 70px rgba(36,71,134,.25);
}

.px-phone-top {
    width: 90px;
    height: 22px;

    margin: 0 auto 10px;

    border-radius: 0 0 15px 15px;

    background: #000;
}

.px-phone-screen {
    min-height: 470px;

    padding: 40px 25px;

    border-radius: 28px;

    background:
        linear-gradient(
            160deg,
            #f6f9ff,
            #fff
        );

    text-align: center;
}

.px-phone-logo {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 30px auto 20px;

    border-radius: 18px;

    background: var(--px-blue);
    color: var(--px-yellow);

    font-size: 28px;
}

.px-phone-screen strong {
    display: block;
    color: var(--px-dark);
    font-size: 20px;
}

.px-phone-screen > span {
    display: block;
    color: var(--px-muted);
    font-size: 13px;
    margin-bottom: 25px;
}

.px-phone-input {
    height: 43px;

    margin-bottom: 12px;

    border: 1px solid #dce2eb;
    border-radius: 8px;

    background: #fff;
}

.px-phone-button {
    padding: 12px;

    margin-top: 18px;

    border-radius: 8px;

    background: var(--px-yellow);
    color: #111;

    font-weight: 800;
}


/* =========================================================
   CTA
   ========================================================= */

.px-cta {
    position: relative;
    overflow: hidden;

    padding: 65px 40px;

    text-align: center;

    border-radius: 25px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255,214,0,.18),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #244786,
            #173362
        );

    box-shadow:
        0 25px 60px rgba(36,71,134,.18);
}

.px-cta-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 20px;

    background: var(--px-yellow);
    color: #111;

    font-size: 30px;
}

.px-cta .px-eyebrow {
    justify-content: center;
}

.px-cta h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
    margin-bottom: 18px;
}

.px-cta p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,.82) !important;
}


/* =========================================================
   FAQ
   ========================================================= */

.px-faq {
    max-width: 850px;
    margin: 0 auto;
}

.px-faq-item {
    margin-bottom: 12px;

    background: #fff;

    border: 1px solid var(--px-border);
    border-radius: 12px;

    overflow: hidden;
}

.px-faq-question {
    padding: 20px 24px;

    color: var(--px-dark);

    font-weight: 750;
    font-size: 17px;
}

.px-faq-answer {
    padding: 0 24px 22px;

    color: var(--px-muted);
}


/* =========================================================
   RELATED LINKS
   ========================================================= */

.px-related {
    text-align: center;
}

.px-related h2 {
    margin-bottom: 30px;
}

.px-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.px-related-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;

    padding: 20px;

    text-align: left;

    background: #fff;

    border: 1px solid var(--px-border);
    border-radius: 14px;

    color: var(--px-dark);
    text-decoration: none !important;

    transition: .2s ease;
}

.px-related-card:hover {
    transform: translateY(-4px);

    border-color: var(--px-blue);

    box-shadow: var(--px-shadow);

    color: var(--px-blue);
}

.px-related-card > i:first-child {
    color: var(--px-blue);
    font-size: 24px;
}

.px-related-card strong {
    display: block;
    font-size: 15px;
}

.px-related-card span {
    display: block;
    color: var(--px-muted);
    font-size: 13px;
    margin-top: 3px;
}

.px-related-card > i:last-child {
    color: var(--px-green);
}


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

@media (max-width: 991px) {

    .px-hero {
        padding: 70px 0;
    }

    .px-hero-inner,
    .px-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .px-hero-content {
        text-align: center;
        margin: auto;
    }

    .px-eyebrow {
        justify-content: center;
    }

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

    .px-trust-row {
        justify-content: center;
    }

    .px-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .px-related-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 767px) {

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

    .px-section {
        padding: 60px 0;
    }

    .px-section-sm {
        padding: 30px 0;
    }

    .px-hero {
        padding: 55px 0;
    }

    .px-hero h1 {
        font-size: 38px;
    }

    .px-hero-text {
        font-size: 16px;
    }

    .px-hero-actions {
        flex-direction: column;
    }

    .px-btn {
        width: 100%;
    }

    .px-steps,
    .px-grid,
    .px-grid-2 {
        grid-template-columns: 1fr;
    }

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

    .px-cta {
        padding: 45px 22px;
    }

    .px-notice {
        padding: 18px;
    }

    .px-trust-row {
        flex-direction: column;
        align-items: center;
    }
}


/* =========================================================
   WORDPRESS SAFETY
   ========================================================= */

.px-page a {
    text-decoration: none;
}

.px-page ul {
    margin-bottom: 0;
}


/* Prevent theme styles from breaking icons */

.px-page .bi {
    line-height: 1;
}

/* =========================================
   PLAY99EXCH NAVBAR
   Background: #6ba1f2
   Text: #ffffff
========================================= */

.custom-navbar {
    background-color: #2449ee !important;
    padding: 12px 0;
    width: 100%;
    position: relative;
    z-index: 9999;
}

/* Logo */
.custom-navbar .navbar-brand {
    color: #fff !important;
}

/* Navigation links */
.custom-navbar .navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

/* Hover */
.custom-navbar .navbar-nav .nav-link:hover {
    color: #fff !important;
    opacity: 0.75;
}

/* Active */
.custom-navbar .navbar-nav .nav-link.active {
    color: #fff !important;
}

/* Mobile hamburger */
.custom-navbar .navbar-toggler {
    color: #fff !important;
    border: 1px solid #fff !important;
    box-shadow: none !important;
}

/* Bootstrap hamburger icon */
.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile menu */
@media (max-width: 991.98px) {

    .custom-navbar .navbar-collapse {
        background-color: #6ba1f2 !important;
        padding: 15px 0;
        margin-top: 10px;
    }

    .custom-navbar .navbar-nav {
        width: 100%;
    }

    .custom-navbar .nav-item {
        width: 100%;
        text-align: center;
    }

    .custom-navbar .nav-link {
        color: #fff !important;
        padding: 12px 15px;
    }

    .custom-navbar .nav-link:hover,
    .custom-navbar .nav-link.active {
        color: #fff !important;
        background-color: rgba(255,255,255,0.10);
    }
}

/* WhatsApp button area */
.custom-navbar .text-center {
    color: #fff;
}
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1685d4;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-heading h2 {
    margin: 0 0 15px;
    color: #092b50;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.section-heading p {
    margin: 0;
    color: #294766;
    font-size: 18px;
    line-height: 1.6;
}


/* Timeline */

.timeline {
    width: 100%;
    max-width: 1000px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    width: 100%;
    margin-bottom: 42px;
}

.timeline-number {
    flex: 0 0 50px;
    color: #092b50;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.timeline-content {
    flex: 1;
    min-width: 0;
}

.timeline-content h3 {
    margin: 0 0 12px;
    color: #092b50;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 600;
}

.timeline-content p {
    margin: 0;
    color: #163b60;
    font-size: 18px;
    line-height: 1.6;
}


/* Tablet */

@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .timeline-content h3 {
        font-size: 26px;
    }
}


/* Mobile */

@media (max-width: 767px) {
    .about-section .container {
        padding: 0 20px;
    }

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

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .timeline-item {
        gap: 18px;
        margin-bottom: 32px;
    }

    .timeline-number {
        flex: 0 0 35px;
        font-size: 15px;
    }

    .timeline-content h3 {
        font-size: 22px;
    }

    .timeline-content p {
        font-size: 16px;
    }
}
/* =========================================================
   PLAY99EXCH ABOUT HERO IMAGE
   ========================================================= */

.play99-about .about-hero {
    position: relative;
    overflow: hidden;
}

.play99-about .about-hero .container {
    position: relative;
    z-index: 2;
}

.play99-about .about-hero .row {
    min-height: 560px;
}

/* Hero text column */
.play99-about .about-hero h1 {
    max-width: 800px;
    margin-bottom: 25px;
}

.play99-about .about-hero .hero-text {
    max-width: 720px;
}

/* Image column */
.play99-about .about-hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Actual image */
.play99-about .about-hero-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 22px;
}

/* Prevent Bootstrap / theme CSS from breaking image */
.play99-about .about-hero-image,
.play99-about .about-hero-image img {
    box-sizing: border-box;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .play99-about .about-hero .row {
        min-height: auto;
    }

    .play99-about .about-hero-image {
        margin-top: 20px;
    }

    .play99-about .about-hero-image img {
        max-width: 480px;
        margin: 0 auto;
    }

}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .play99-about .about-hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .play99-about .about-hero h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .play99-about .about-hero-image {
        margin-top: 30px;
    }

    .play99-about .about-hero-image img {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        border-radius: 18px;
    }

}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .play99-about .about-hero {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .play99-about .about-hero h1 {
        font-size: 30px;
    }

    .play99-about .about-hero .hero-text {
        font-size: 15px;
    }

    .play99-about .about-hero-image img {
        border-radius: 15px;
    }

}