/* =========================================================
   PLAY99 COLOR SYSTEM
========================================================= */

:root {
    --p99-green: #069056;
    --p99-green-dark: #04683f;
    --p99-green-light: #19b875;

    --p99-yellow: #fed102;
    --p99-yellow-light: #ffe45c;

    --p99-blue: #1a3da6;
    --p99-blue-dark: #10276f;

    --p99-black: #0b0d0f;
    --p99-dark: #111827;

    --p99-white: #ffffff;
    --p99-light: #f5f8fc;

    --p99-gray: #667085;
    --p99-border: #e4e9f0;

    --p99-radius: 20px;
    --p99-shadow: 0 18px 50px rgba(10, 25, 50, .10);
}


/* =========================================================
   GLOBAL
========================================================= */

.p99-login-section,
.p99-sports-section,
.p99-live-section,
.p99-how-section,
.p99-payment-section,
.p99-withdraw-section,
.p99-mobile-section,
.p99-support-section,
.p99-features-section,
.p99-responsible-section,
.p99-age-section,
.p99-legal-section,
.p99-security-section {

    position: relative;
    overflow: hidden;
}

.p99-login-section *,
.p99-sports-section *,
.p99-live-section *,
.p99-how-section *,
.p99-payment-section *,
.p99-withdraw-section *,
.p99-mobile-section *,
.p99-support-section *,
.p99-features-section *,
.p99-responsible-section *,
.p99-age-section *,
.p99-legal-section *,
.p99-security-section * {
    box-sizing: border-box;
}


/* =========================================================
   SECTION HEADING
========================================================= */

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

.p99-section-heading h2 {
    margin: 15px 0;
    color: var(--p99-black);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
}

.p99-section-heading p {
    margin: 0;
    color: var(--p99-gray);
    font-size: 17px;
    line-height: 1.8;
}

.p99-section-heading.light h2,
.p99-section-heading.light p {
    color: #fff;
}


/* =========================================================
   BADGE
========================================================= */

.p99-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(6, 144, 86, .10);
    border: 1px solid rgba(6, 144, 86, .18);
    color: var(--p99-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.p99-section-heading.light .p99-badge,
.p99-sports-section .p99-badge,
.p99-security-section .p99-badge {
    color: var(--p99-yellow);
    background: rgba(254, 209, 2, .10);
    border-color: rgba(254, 209, 2, .25);
}

.blue-badge {
    color: var(--p99-blue);
    background: rgba(26, 61, 166, .08);
}


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

.p99-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none !important;
    font-weight: 700;
    transition: all .3s ease;
}

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

.p99-btn-yellow {
    background: var(--p99-yellow);
    color: var(--p99-black) !important;
    box-shadow: 0 10px 25px rgba(254, 209, 2, .25);
}

.p99-btn-yellow:hover {
    background: #ffe044;
}

.p99-btn-outline {
    border: 1px solid var(--p99-green);
    color: var(--p99-green) !important;
    background: transparent;
}

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


/* =========================================================
   LOGIN
========================================================= */

.p99-login-section {
    padding: 90px 0;
    background: var(--p99-light);
}

.p99-login-info {
    padding: 10px;
}

.p99-feature-box {
    display: flex;
    gap: 18px;
    padding: 22px;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid var(--p99-border);
    border-radius: var(--p99-radius);
    transition: .3s ease;
}

.p99-feature-box:hover {
    transform: translateX(7px);
    box-shadow: var(--p99-shadow);
}

.p99-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--p99-green);
    color: #fff;
    border-radius: 14px;
    font-size: 21px;
}

.p99-feature-box h4 {
    margin: 0 0 7px;
    color: var(--p99-black);
    font-size: 18px;
}

.p99-feature-box p {
    margin: 0;
    color: var(--p99-gray);
    line-height: 1.7;
    font-size: 14px;
}

.p99-login-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.p99-login-problem {
    position: relative;
    padding: 35px;
    border-radius: 25px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(254,209,2,.18), transparent 30%),
        linear-gradient(135deg, var(--p99-blue), var(--p99-blue-dark));
    box-shadow: 0 25px 60px rgba(26,61,166,.22);
}

.p99-problem-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
}

.p99-problem-header span {
    font-size: 12px;
    color: var(--p99-yellow);
    font-weight: 700;
    letter-spacing: 1px;
}

.p99-problem-header h3 {
    margin: 3px 0 0;
    color: #fff;
}

.p99-problem-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: var(--p99-yellow);
    font-size: 23px;
}

.p99-number-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 12px 0;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.07);
}

.p99-number-item span {
    color: var(--p99-yellow);
    font-weight: 800;
}

.p99-number-item p {
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 14px;
}

.p99-security-alert {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    padding: 15px;
    border-left: 3px solid var(--p99-yellow);
    background: rgba(0,0,0,.18);
    border-radius: 8px;
}

.p99-security-alert i {
    color: var(--p99-yellow);
    font-size: 20px;
}

.p99-security-alert p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   SPORTS
========================================================= */

.p99-sports-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(254,209,2,.13), transparent 25%),
        linear-gradient(135deg, #071a12, var(--p99-green-dark), #03100b);
}

.p99-sport-card {
    position: relative;
    height: 100%;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(10px);
    color: #fff;
    transition: .35s ease;
}

.p99-sport-card:hover {
    transform: translateY(-9px);
    border-color: var(--p99-yellow);
    box-shadow: 0 20px 45px rgba(0,0,0,.25);
}

.p99-sport-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: var(--p99-yellow);
    color: var(--p99-black);
    font-size: 28px;
}

.p99-sport-card h3 {
    color: #fff;
    font-size: 19px;
}

.p99-sport-card p {
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.6;
}

.p99-info-strip {
    display: flex;
    gap: 12px;
    margin-top: 35px;
    padding: 18px;
    border-radius: 12px;
    background: rgba(254,209,2,.08);
    border: 1px solid rgba(254,209,2,.2);
    color: #fff;
}

.p99-info-strip i {
    color: var(--p99-yellow);
}

.p99-info-strip p {
    margin: 0;
}


/* =========================================================
   LIVE SPORTS
========================================================= */

.p99-live-section {
    padding: 95px 0;
    background: #fff;
}

.p99-live-section h2 {
    margin: 18px 0;
    font-size: clamp(30px,4vw,45px);
    font-weight: 800;
}

.p99-lead {
    color: var(--p99-gray);
    line-height: 1.8;
}

.p99-live-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 15px;
    border-radius: 50px;
    color: var(--p99-green);
    background: rgba(6,144,86,.08);
    font-weight: 800;
    font-size: 12px;
}

.p99-live-dot {
    width: 9px;
    height: 9px;
    background: #e53935;
    border-radius: 50%;
    animation: p99Pulse 1.5s infinite;
}

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

.p99-live-card {
    padding: 25px;
    border-radius: 18px;
    background: var(--p99-light);
    border: 1px solid var(--p99-border);
    transition: .3s;
}

.p99-live-card:hover {
    transform: translateY(-5px);
    border-color: var(--p99-green);
}

.p99-live-card i {
    color: var(--p99-green);
    font-size: 25px;
}

.p99-live-card h4 {
    margin: 14px 0 5px;
}

.p99-live-card p {
    margin: 0;
    color: var(--p99-gray);
    font-size: 13px;
}

.p99-warning-box {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    padding: 15px;
    border-radius: 12px;
    background: #fff8dd;
    color: #705d00;
}

.p99-warning-box p {
    margin: 0;
    font-size: 13px;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.p99-how-section {
    padding: 100px 0;
    background: var(--p99-light);
}

.p99-timeline {
    max-width: 850px;
    margin: auto;
    position: relative;
}

.p99-timeline::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(var(--p99-green), var(--p99-yellow));
}

.p99-timeline-item {
    position: relative;
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.p99-step-icon {
    position: relative;
    z-index: 2;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--p99-green);
    border: 5px solid var(--p99-light);
    color: #fff;
    box-shadow: 0 8px 20px rgba(6,144,86,.25);
}

.p99-step-content {
    flex: 1;
    padding: 22px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--p99-border);
    transition: .3s;
}

.p99-step-content:hover {
    transform: translateX(7px);
    box-shadow: var(--p99-shadow);
}

.p99-step-content span {
    color: var(--p99-green);
    font-size: 11px;
    font-weight: 800;
}

.p99-step-content h3 {
    margin: 5px 0;
    font-size: 20px;
}

.p99-step-content p {
    margin: 0;
    color: var(--p99-gray);
    line-height: 1.7;
}


/* =========================================================
   PAYMENTS
========================================================= */

.p99-payment-section {
    padding: 95px 0;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(254,209,2,.14), transparent 30%),
        linear-gradient(135deg, var(--p99-blue), var(--p99-blue-dark));
}

.p99-payment-section h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
}

.p99-payment-section p {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

.yellow-badge {
    color: var(--p99-yellow);
    background: rgba(254,209,2,.1);
}

.p99-payment-icon {
    width: 110px;
    height: 110px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: var(--p99-black);
    background: var(--p99-yellow);
    font-size: 48px;
    animation: p99Float 3s ease-in-out infinite;
}

.p99-check-title {
    color: #fff;
    margin-bottom: 20px;
}

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

.p99-check-grid div {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
}

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

.p99-payment-note {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding: 17px;
    border-radius: 12px;
    background: rgba(0,0,0,.18);
}

.p99-payment-note p {
    margin: 0;
    font-size: 13px;
}


/* =========================================================
   WITHDRAWALS
========================================================= */

.p99-withdraw-section {
    padding: 100px 0;
    background: #fff;
}

.p99-withdraw-card {
    position: relative;
    height: 100%;
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid var(--p99-border);
    transition: .35s;
    overflow: hidden;
}

.p99-withdraw-card::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(6,144,86,.06);
    right: -40px;
    bottom: -40px;
}

.p99-withdraw-card:hover {
    transform: translateY(-8px);
    border-color: var(--p99-green);
    box-shadow: var(--p99-shadow);
}

.p99-withdraw-card > span {
    position: absolute;
    top: 15px;
    right: 18px;
    color: var(--p99-green);
    font-weight: 800;
}

.p99-withdraw-card i {
    margin: 15px 0;
    color: var(--p99-green);
    font-size: 34px;
}

.p99-withdraw-card h3 {
    font-size: 18px;
}

.p99-withdraw-card p {
    color: var(--p99-gray);
    font-size: 13px;
    line-height: 1.6;
}

.p99-bottom-note {
    margin-top: 30px;
    text-align: center;
    color: var(--p99-gray);
}


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

.p99-mobile-section {
    padding: 100px 0;
    background: var(--p99-light);
}

.p99-mobile-section h2 {
    margin: 18px 0;
    font-size: 44px;
    font-weight: 800;
}

.p99-mobile-visual {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p99-phone {
    width: 210px;
    height: 360px;
    padding: 10px;
    border-radius: 35px;
    background: var(--p99-black);
    box-shadow: 0 30px 70px rgba(0,0,0,.25);
    transform: rotate(-5deg);
}

.p99-phone-screen {
    height: 100%;
    border-radius: 27px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(160deg, var(--p99-blue), var(--p99-green));
}

.p99-phone-screen i {
    font-size: 55px;
    color: var(--p99-yellow);
    margin-bottom: 20px;
}

.p99-phone-screen strong {
    font-size: 20px;
}

.p99-phone-screen span {
    color: rgba(255,255,255,.7);
}

.p99-floating {
    position: absolute;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: #fff;
    color: var(--p99-green);
    box-shadow: var(--p99-shadow);
    animation: p99Float 3s ease-in-out infinite;
}

.mobile-one {
    top: 50px;
    left: 15%;
}

.mobile-two {
    right: 8%;
    top: 130px;
    animation-delay: .7s;
}

.mobile-three {
    left: 12%;
    bottom: 50px;
    animation-delay: 1.2s;
}

.p99-mobile-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.p99-mobile-features div {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--p99-border);
    border-radius: 12px;
    font-size: 13px;
}

.p99-mobile-features i {
    color: var(--p99-green);
}


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

.p99-support-section {
    padding: 100px 0;
    background: #fff;
}

.p99-support-card {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: auto;
    padding: 60px;
    text-align: center;
    color: #fff;
    border-radius: 30px;
    background:
        radial-gradient(circle at 10% 10%, rgba(254,209,2,.15), transparent 30%),
        linear-gradient(135deg, var(--p99-green-dark), var(--p99-black));
    box-shadow: 0 30px 70px rgba(0,0,0,.2);
}

.p99-support-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background: var(--p99-yellow);
    color: var(--p99-black);
    font-size: 38px;
}

.p99-support-card h2 {
    color: #fff;
    font-size: 42px;
    margin: 18px 0;
}

.p99-support-lead {
    max-width: 700px;
    margin: auto;
    color: rgba(255,255,255,.72);
}

.p99-support-list {
    margin: 30px 0;
}

.p99-support-list > div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    text-align: left;
}

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

.p99-support-security {
    display: flex;
    gap: 12px;
    text-align: left;
    padding: 18px;
    margin-bottom: 25px;
    border-radius: 12px;
    background: rgba(0,0,0,.25);
}

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

.p99-support-security p {
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 13px;
}


/* =========================================================
   FEATURES
========================================================= */

.p99-features-section {
    padding: 100px 0;
    background: var(--p99-light);
}

.p99-feature-card {
    position: relative;
    height: 100%;
    padding: 35px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--p99-border);
    overflow: hidden;
    transition: .35s;
}

.p99-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--p99-green);
    box-shadow: var(--p99-shadow);
}

.p99-feature-card > i {
    color: var(--p99-green);
    font-size: 35px;
}

.p99-feature-card h3 {
    margin: 20px 0 10px;
}

.p99-feature-card p {
    margin: 0;
    color: var(--p99-gray);
    line-height: 1.7;
}

.p99-feature-number {
    position: absolute;
    top: 15px;
    right: 20px;
    color: rgba(6,144,86,.1);
    font-size: 55px;
    font-weight: 900;
}


/* =========================================================
   RESPONSIBLE GAMBLING
========================================================= */

.p99-responsible-section {
    padding: 90px 0;
    background: #fff8e2;
}

.p99-responsible-card {
    padding: 50px;
    border-radius: 25px;
    background: #fff;
    border: 1px solid #f0df9a;
    box-shadow: 0 20px 60px rgba(100,80,0,.08);
}

.p99-responsible-heading {
    display: flex;
    align-items: center;
    gap: 18px;
}

.p99-responsible-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: var(--p99-yellow);
    color: var(--p99-black);
    font-size: 30px;
}

.p99-responsible-heading span {
    color: var(--p99-green);
    font-size: 12px;
    font-weight: 800;
}

.p99-responsible-heading h2 {
    margin: 5px 0;
    font-size: 38px;
}

.p99-responsible-card > p {
    color: var(--p99-gray);
}

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

.p99-responsible-grid div {
    display: flex;
    gap: 12px;
    padding: 15px;
    border-radius: 12px;
    background: #fffdf5;
    border: 1px solid #f3e7b6;
}

.p99-responsible-grid i {
    color: var(--p99-green);
}

.p99-responsible-warning {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding: 18px;
    border-radius: 12px;
    color: #713d00;
    background: #fff1c2;
}


/* =========================================================
   AGE
========================================================= */

.p99-age-section {
    padding: 70px 0;
    background: var(--p99-black);
}

.p99-age-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(254,209,2,.3);
    background:
        radial-gradient(circle at 10% 50%, rgba(254,209,2,.12), transparent 35%),
        rgba(255,255,255,.03);
}

.p99-age-icon {
    position: relative;
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--p99-black);
    background: var(--p99-yellow);
    font-size: 45px;
    font-weight: 900;
}

.p99-age-icon i {
    position: absolute;
    right: 8px;
    bottom: 8px;
    font-size: 18px;
}

.p99-age-label {
    color: var(--p99-yellow);
    font-size: 12px;
    font-weight: 800;
}

.p99-age-card h2 {
    color: #fff;
    margin: 5px 0 10px;
}

.p99-age-card p {
    color: rgba(255,255,255,.7);
    line-height: 1.7;
}


/* =========================================================
   LEGAL
========================================================= */

.p99-legal-section {
    padding: 100px 0;
    background: var(--p99-light);
}

.p99-globe-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: #fff;
    background: var(--p99-blue);
    font-size: 45px;
    box-shadow: 0 20px 40px rgba(26,61,166,.2);
}

.p99-legal-section h2 {
    font-size: 42px;
    margin: 18px 0;
}

.p99-legal-section p {
    color: var(--p99-gray);
    line-height: 1.8;
}

.p99-legal-box {
    padding: 35px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--p99-border);
    box-shadow: var(--p99-shadow);
}

.p99-legal-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin-top: 20px;
}

.p99-legal-grid div {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 14px;
    border-radius: 10px;
    background: var(--p99-light);
}

.p99-legal-grid i {
    color: var(--p99-blue);
}

.p99-legal-note {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    background: #eef3ff;
}

.p99-legal-note p {
    margin: 0;
    font-size: 13px;
}


/* =========================================================
   SECURITY
========================================================= */

.p99-security-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(254,209,2,.12), transparent 25%),
        linear-gradient(135deg, #061c14, var(--p99-green-dark), #030908);
}

.p99-security-card {
    height: 100%;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    transition: .35s;
}

.p99-security-card:hover {
    transform: translateY(-7px);
    border-color: var(--p99-yellow);
    background: rgba(255,255,255,.09);
}

.p99-security-card i {
    color: var(--p99-yellow);
    font-size: 30px;
}

.p99-security-card h3 {
    color: #fff;
    margin: 18px 0 8px;
    font-size: 19px;
}

.p99-security-card p {
    margin: 0;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    font-size: 14px;
}

.p99-final-security {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(0,0,0,.2);
    color: #fff;
}

.p99-final-security i {
    color: var(--p99-yellow);
    font-size: 25px;
}

.p99-final-security p {
    margin: 0;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes p99Float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes p99Pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(229,57,53,.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(229,57,53,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(229,57,53,0);
    }
}


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

@media (max-width: 991px) {

    .p99-login-section,
    .p99-sports-section,
    .p99-live-section,
    .p99-how-section,
    .p99-payment-section,
    .p99-withdraw-section,
    .p99-mobile-section,
    .p99-support-section,
    .p99-features-section,
    .p99-responsible-section,
    .p99-legal-section,
    .p99-security-section {
        padding: 70px 0;
    }

    .p99-payment-section h2,
    .p99-mobile-section h2,
    .p99-support-card h2,
    .p99-legal-section h2 {
        font-size: 34px;
    }

    .p99-age-card {
        align-items: flex-start;
    }
}


@media (max-width: 767px) {

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

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

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

    .p99-login-problem {
        padding: 25px 20px;
    }

    .p99-login-buttons {
        flex-direction: column;
    }

    .p99-btn {
        width: 100%;
    }

    .p99-live-grid {
        grid-template-columns: 1fr;
    }

    .p99-check-grid,
    .p99-mobile-features,
    .p99-responsible-grid,
    .p99-legal-grid {
        grid-template-columns: 1fr;
    }

    .p99-timeline::before {
        left: 23px;
    }

    .p99-timeline-item {
        gap: 15px;
    }

    .p99-step-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .p99-step-content {
        padding: 18px;
    }

    .p99-support-card {
        padding: 35px 20px;
        border-radius: 20px;
    }

    .p99-responsible-card {
        padding: 30px 20px;
    }

    .p99-responsible-heading {
        align-items: flex-start;
    }

    .p99-responsible-heading h2 {
        font-size: 28px;
    }

    .p99-age-card {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .p99-age-icon {
        margin: auto;
    }

    .p99-mobile-visual {
        height: 350px;
    }

    .p99-phone {
        width: 180px;
        height: 310px;
    }

    .p99-floating {
        width: 48px;
        height: 48px;
    }

    .p99-final-security {
        align-items: flex-start;
    }
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
/* =========================================================
   PLAY99EXCH SECTIONS
   Colors:
   Yellow  : #fed102
   Green   : #069056
   Blue    : #1a3da6
   Black   : #000000
========================================================= */

:root {
    --p99-yellow: #fed102;
    --p99-green: #069056;
    --p99-blue: #1a3da6;
    --p99-black: #000000;
    --p99-white: #ffffff;
    --p99-light: #f6f8fb;
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.p99-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}


/* =========================================================
   REGISTRATION SECTION
========================================================= */

.p99-registration {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(254, 209, 2, 0.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(6, 144, 86, 0.15),
            transparent 35%
        ),
        #f7f9fc;
}


/* Decorative background */

.p99-registration::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(26, 61, 166, 0.04);
    top: -160px;
    right: -100px;
}

.p99-registration::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(6, 144, 86, 0.04);
    bottom: -120px;
    left: -80px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.p99-section-heading {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.p99-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 18px;

    border-radius: 50px;

    background: var(--p99-blue);

    color: var(--p99-white);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

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

.p99-section-heading h2 {
    margin: 18px 0 15px;

    color: var(--p99-black);

    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.p99-section-heading p {
    max-width: 720px;
    margin: 0 auto;

    color: #606b78;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   REGISTRATION BOX
========================================================= */

.p99-registration-box {
    position: relative;
    z-index: 2;

    max-width: 950px;
    margin: auto;

    padding: 40px;

    background: #ffffff;

    border-radius: 25px;

    border: 1px solid #e8edf3;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.08);

    overflow: hidden;
}


/* Top green/yellow line */

.p99-registration-box::before {
    content: "";
    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--p99-yellow),
            var(--p99-green),
            var(--p99-blue)
        );
}


/* =========================================================
   REGISTRATION HEADER
========================================================= */

.p99-registration-header {
    display: flex;
    align-items: center;
    gap: 20px;

    padding-bottom: 30px;
    margin-bottom: 10px;

    border-bottom: 1px solid #edf0f4;
}

.p99-header-icon {
    flex: 0 0 65px;

    width: 65px;
    height: 65px;

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

    border-radius: 18px;

    background: var(--p99-blue);

    color: var(--p99-yellow);

    font-size: 28px;

    box-shadow:
        0 10px 25px rgba(26, 61, 166, 0.2);

    animation: p99IconPulse 3s infinite;
}

.p99-registration-header h3 {
    margin: 0 0 5px;

    color: var(--p99-black);

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

.p99-registration-header p {
    margin: 0;

    color: #687381;

    font-size: 15px;
}


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

.p99-reg-step {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 20px;

    padding: 22px 10px;

    border-bottom: 1px solid #edf0f4;

    transition: all 0.35s ease;
}

.p99-reg-step:hover {
    transform: translateX(8px);

    background: linear-gradient(
        90deg,
        rgba(6, 144, 86, 0.04),
        transparent
    );

    border-radius: 15px;
}


/* Icon */

.p99-step-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

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

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--p99-green),
            #057544
        );

    color: var(--p99-yellow);

    font-size: 20px;

    box-shadow:
        0 8px 20px rgba(6, 144, 86, 0.18);

    transition: all 0.3s ease;
}

.p99-reg-step:hover .p99-step-icon {
    transform: rotate(-6deg) scale(1.08);

    background: var(--p99-blue);
}


/* Text */

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

.p99-step-number {
    display: inline-block;

    margin-bottom: 3px;

    color: var(--p99-green);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.p99-step-content h4 {
    margin: 0 0 6px;

    color: var(--p99-black);

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

.p99-step-content p {
    margin: 0;

    color: #66717e;

    font-size: 14px;

    line-height: 1.65;
}


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

.p99-reg-action {
    margin-top: 30px;
}

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

    padding: 13px 24px;

    border-radius: 10px;

    background: var(--p99-green);

    color: #ffffff !important;

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

    text-decoration: none !important;

    box-shadow:
        0 10px 25px rgba(6, 144, 86, 0.2);

    transition: all 0.3s ease;
}

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

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

    background: var(--p99-blue);

    box-shadow:
        0 15px 30px rgba(26, 61, 166, 0.25);
}


/* =========================================================
   WARNING
========================================================= */

.p99-warning {
    position: relative;
    z-index: 2;

    max-width: 950px;

    display: flex;
    align-items: flex-start;

    gap: 18px;

    margin: 30px auto 0;

    padding: 20px 22px;

    border-radius: 16px;

    background: #fff8d9;

    border: 1px solid rgba(254, 209, 2, 0.5);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04);
}

.p99-warning-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

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

    border-radius: 12px;

    background: var(--p99-yellow);

    color: #000;

    font-size: 20px;
}

.p99-warning h4 {
    margin: 0 0 5px;

    color: #111;

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

.p99-warning p {
    margin: 0;

    color: #5e5a46;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   HOW TO GET ID SECTION
========================================================= */

.p99-id-section {
    position: relative;

    overflow: hidden;

    padding: 95px 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(254, 209, 2, 0.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(6, 144, 86, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #000000 0%,
            #071d14 45%,
            var(--p99-green) 100%
        );
}


/* Decorative circles */

.p99-id-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    border: 1px solid rgba(254, 209, 2, 0.12);

    top: -250px;
    right: -100px;
}

.p99-id-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(26, 61, 166, 0.08);

    bottom: -200px;
    left: -100px;
}


/* =========================================================
   ID LAYOUT
========================================================= */

.p99-id-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: minmax(0, 1fr) 380px;

    align-items: center;

    gap: 70px;
}


/* =========================================================
   ID CONTENT
========================================================= */

.p99-id-content {
    color: #ffffff;
}

.p99-id-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 16px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.15);

    color: var(--p99-yellow);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;
}

.p99-id-content h2 {
    margin: 20px 0 15px;

    color: #ffffff;

    font-size: 42px;
    line-height: 1.15;

    font-weight: 800;
}

.p99-id-lead {
    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 18px;

    line-height: 1.7;
}

.p99-id-description {
    color: rgba(255, 255, 255, 0.62);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   SETUP TITLE
========================================================= */

.p99-setup-title {
    margin: 35px 0 20px;

    color: var(--p99-yellow);

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


/* =========================================================
   SETUP ITEMS
========================================================= */

.p99-setup-item {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    margin-bottom: 18px;

    padding: 14px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.06);

    transition: all 0.35s ease;
}

.p99-setup-item:hover {
    transform: translateX(7px);

    background: rgba(254, 209, 2, 0.07);

    border-color: rgba(254, 209, 2, 0.2);
}


/* Setup Icon */

.p99-setup-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

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

    border-radius: 12px;

    background: var(--p99-blue);

    color: var(--p99-yellow);

    font-size: 18px;

    transition: all 0.3s ease;
}

.p99-setup-item:hover .p99-setup-icon {
    background: var(--p99-yellow);

    color: #000;

    transform: scale(1.08) rotate(-5deg);
}


/* Setup Text */

.p99-setup-item h4 {
    margin: 0 0 3px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

.p99-setup-item p {
    margin: 0;

    color: rgba(255, 255, 255, 0.6);

    font-size: 14px;

    line-height: 1.55;
}


/* =========================================================
   SECURITY BOX
========================================================= */

.p99-security {
    display: flex;

    gap: 15px;

    margin-top: 28px;

    padding: 18px;

    border-radius: 15px;

    background: rgba(0, 0, 0, 0.3);

    border-left: 4px solid var(--p99-yellow);
}

.p99-security-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

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

    border-radius: 10px;

    background: rgba(254, 209, 2, 0.13);

    color: var(--p99-yellow);

    font-size: 19px;
}

.p99-security strong {
    display: block;

    margin-bottom: 5px;

    color: var(--p99-yellow);

    font-size: 15px;
}

.p99-security p {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;

    line-height: 1.6;
}

.p99-support-btn {
    margin-top: 28px;
}


/* =========================================================
   RIGHT ICON GRAPHIC
========================================================= */

.p99-id-graphic {
    position: relative;

    width: 340px;
    height: 340px;

    margin: auto;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* Glow */

.p99-glow {
    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: var(--p99-green);

    opacity: 0.3;

    filter: blur(60px);

    animation: p99Glow 4s ease-in-out infinite;
}


/* Orbit */

.p99-orbit {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(254, 209, 2, 0.2);
}

.p99-orbit-one {
    width: 290px;
    height: 290px;

    animation: p99Rotate 18s linear infinite;
}

.p99-orbit-two {
    width: 220px;
    height: 220px;

    border-color: rgba(6, 144, 86, 0.35);

    animation: p99RotateReverse 14s linear infinite;
}


/* Main icon */

.p99-main-icon {
    position: relative;
    z-index: 5;

    width: 125px;
    height: 125px;

    display: flex;

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

    border-radius: 32px;

    background:
        linear-gradient(
            145deg,
            var(--p99-green),
            var(--p99-blue)
        );

    color: var(--p99-yellow);

    font-size: 55px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(6, 144, 86, 0.3);

    animation: p99Float 4s ease-in-out infinite;
}


/* Floating icons */

.p99-floating {
    position: absolute;

    z-index: 6;

    width: 58px;
    height: 58px;

    display: flex;

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

    border-radius: 17px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);

    color: var(--p99-yellow);

    font-size: 21px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2);
}

.p99-floating-one {
    top: 25px;
    left: 45px;

    animation: p99Float 3.5s ease-in-out infinite;
}

.p99-floating-two {
    right: 20px;
    top: 110px;

    animation: p99Float 4.5s ease-in-out infinite;
}

.p99-floating-three {
    bottom: 25px;
    left: 65px;

    animation: p99Float 4s ease-in-out infinite;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes p99Float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


@keyframes p99Glow {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.25;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.4;
    }
}


@keyframes p99Rotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes p99RotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


@keyframes p99IconPulse {

    0%,
    100% {
        box-shadow:
            0 10px 25px rgba(26, 61, 166, 0.2);
    }

    50% {
        box-shadow:
            0 10px 35px rgba(254, 209, 2, 0.35);
    }
}


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

@media (max-width: 991px) {

    .p99-registration {
        padding: 70px 0;
    }

    .p99-section-heading h2,
    .p99-id-content h2 {
        font-size: 35px;
    }

    .p99-id-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .p99-id-graphic {
        order: -1;
    }

}


@media (max-width: 767px) {

    .p99-registration {
        padding: 55px 0;
    }

    .p99-section-heading {
        margin-bottom: 30px;
    }

    .p99-section-heading h2,
    .p99-id-content h2 {
        font-size: 29px;
    }

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

    .p99-registration-box {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .p99-registration-header {
        align-items: flex-start;
    }

    .p99-header-icon {
        flex: 0 0 52px;

        width: 52px;
        height: 52px;

        font-size: 21px;
    }

    .p99-registration-header h3 {
        font-size: 20px;
    }

    .p99-reg-step {
        gap: 13px;
        padding: 18px 5px;
    }

    .p99-step-icon {
        flex: 0 0 43px;

        width: 43px;
        height: 43px;

        font-size: 16px;
    }

    .p99-step-content h4 {
        font-size: 16px;
    }

    .p99-step-content p {
        font-size: 13px;
    }

    .p99-warning {
        padding: 16px;
    }

    .p99-id-section {
        padding: 65px 0;
    }

    .p99-id-graphic {
        width: 280px;
        height: 280px;
    }

    .p99-orbit-one {
        width: 245px;
        height: 245px;
    }

    .p99-orbit-two {
        width: 190px;
        height: 190px;
    }

    .p99-main-icon {
        width: 100px;
        height: 100px;

        font-size: 43px;

        border-radius: 25px;
    }

    .p99-floating {
        width: 48px;
        height: 48px;

        font-size: 17px;
    }

    .p99-floating-one {
        top: 20px;
        left: 20px;
    }

    .p99-floating-two {
        right: 5px;
        top: 95px;
    }

    .p99-floating-three {
        bottom: 15px;
        left: 40px;
    }

}


@media (max-width: 480px) {

    .p99-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .p99-label,
    .p99-id-label {
        font-size: 11px;
    }

    .p99-section-heading h2,
    .p99-id-content h2 {
        font-size: 26px;
    }

    .p99-registration-header {
        gap: 12px;
    }

    .p99-warning {
        flex-direction: column;
    }

    .p99-setup-item {
        padding: 12px;
    }

    .p99-security {
        flex-direction: column;
    }

    .p99-btn {
        width: 100%;
    }

}
/* =========================================================
   PLAY99EXCH FAQ
   Color Palette:
   Yellow  : #fed102
   Green   : #069056
   Blue    : #1a3da6
   Black   : #050505
========================================================= */

.play99-faq {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(254, 209, 2, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(6, 144, 86, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #050505 0%,
            #071b16 45%,
            #071b3d 100%
        );
}


/* Background Shapes */

.play99-faq .faq-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.play99-faq .faq-bg-shape-1 {
    width: 420px;
    height: 420px;
    top: -220px;
    right: -150px;
    border: 1px solid rgba(254, 209, 2, 0.15);
    box-shadow:
        0 0 0 40px rgba(254, 209, 2, 0.025),
        0 0 0 80px rgba(254, 209, 2, 0.02);
}

.play99-faq .faq-bg-shape-2 {
    width: 320px;
    height: 320px;
    bottom: -180px;
    left: -130px;
    background: rgba(6, 144, 86, 0.07);
    border: 1px solid rgba(6, 144, 86, 0.12);
}


/* Header */

.play99-faq .faq-header {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 50px;
}

.play99-faq .faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: 18px;

    border: 1px solid rgba(254, 209, 2, 0.35);
    border-radius: 50px;

    color: #fed102;
    background: rgba(254, 209, 2, 0.08);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.play99-faq .faq-badge i {
    font-size: 15px;
}

.play99-faq .faq-header h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
}

.play99-faq .faq-header h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        #fed102,
        #069056
    );
}

.play99-faq .faq-header p {
    max-width: 720px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.8;
}


/* FAQ Wrapper */

.play99-faq .faq-wrapper {
    position: relative;
    z-index: 3;
    max-width: 950px;
    margin: auto;
}


/* FAQ Item */

.play99-faq .faq-item {
    position: relative;
    margin-bottom: 14px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.045);

    overflow: hidden;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.play99-faq .faq-item:hover {
    transform: translateY(-2px);

    border-color: rgba(254, 209, 2, 0.28);

    background: rgba(255, 255, 255, 0.065);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.22);
}


/* Question */

.play99-faq .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 22px;

    border: 0;
    outline: 0;

    color: #ffffff;
    background: transparent;

    text-align: left;
    cursor: pointer;

    font-family: inherit;
}


/* Left Side */

.play99-faq .faq-question-left {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
}


/* Question Icon */

.play99-faq .faq-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

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

    border-radius: 12px;

    color: #fed102;

    background:
        linear-gradient(
            145deg,
            rgba(254, 209, 2, 0.18),
            rgba(6, 144, 86, 0.12)
        );

    border: 1px solid rgba(254, 209, 2, 0.20);

    font-size: 18px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


/* Question Text */

.play99-faq .faq-question-text {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}


/* Plus Icon */

.play99-faq .faq-toggle {
    flex: 0 0 36px;

    width: 36px;
    height: 36px;

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

    border-radius: 50%;

    color: #fed102;

    background: rgba(254, 209, 2, 0.08);

    border: 1px solid rgba(254, 209, 2, 0.20);

    transition:
        transform 0.35s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.play99-faq .faq-toggle i {
    font-size: 13px;
}


/* Active Question */

.play99-faq .faq-item.active {
    border-color: rgba(6, 144, 86, 0.55);

    background:
        linear-gradient(
            135deg,
            rgba(6, 144, 86, 0.12),
            rgba(26, 61, 166, 0.08)
        );

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.20);
}

.play99-faq .faq-item.active .faq-icon {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #069056,
            #1a3da6
        );

    border-color: transparent;

    transform: rotate(-3deg);
}

.play99-faq .faq-item.active .faq-toggle {
    color: #050505;
    background: #fed102;
    border-color: #fed102;
    transform: rotate(180deg);
}


/* Answer */

.play99-faq .faq-answer {
    max-height: 0;
    overflow: hidden;

    opacity: 0;

    padding: 0 84px 0 83px;

    transition:
        max-height 0.45s ease,
        opacity 0.35s ease,
        padding 0.35s ease;
}

.play99-faq .faq-item.active .faq-answer {
    max-height: 300px;

    opacity: 1;

    padding-top: 0;
    padding-bottom: 22px;
}

.play99-faq .faq-answer p {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;
    line-height: 1.8;
}


/* Support CTA */

.play99-faq .faq-support {
    position: relative;
    z-index: 3;

    max-width: 950px;

    display: flex;
    align-items: center;
    gap: 20px;

    margin: 45px auto 0;
    padding: 22px 25px;

    border-radius: 16px;

    background:
        linear-gradient(
            110deg,
            #069056 0%,
            #087344 45%,
            #1a3da6 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.14);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28);
}


/* Support Icon */

.play99-faq .faq-support-icon {
    flex: 0 0 55px;

    width: 55px;
    height: 55px;

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

    border-radius: 15px;

    color: #050505;
    background: #fed102;

    font-size: 22px;
}


/* Support Content */

.play99-faq .faq-support-content {
    flex: 1;
}

.play99-faq .faq-support-content h3 {
    margin: 0 0 5px;

    color: #ffffff;

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

.play99-faq .faq-support-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;
    line-height: 1.6;
}


/* Support Button */

.play99-faq .faq-support-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    flex-shrink: 0;

    padding: 12px 20px;

    border-radius: 8px;

    color: #050505;
    background: #fed102;

    text-decoration: none;

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

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

.play99-faq .faq-support-btn:hover {
    color: #050505;
    background: #ffffff;

    transform: translateY(-2px);

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


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes faqFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}

.play99-faq .faq-bg-shape-1 {
    animation: faqFloat 7s ease-in-out infinite;
}

.play99-faq .faq-bg-shape-2 {
    animation: faqFloat 9s ease-in-out infinite reverse;
}


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

@media (max-width: 767px) {

    .play99-faq {
        padding: 60px 0;
    }

    .play99-faq .faq-header {
        margin-bottom: 35px;
    }

    .play99-faq .faq-header h2 {
        font-size: 30px;
    }

    .play99-faq .faq-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    .play99-faq .faq-question {
        padding: 16px;
        gap: 10px;
    }

    .play99-faq .faq-question-left {
        gap: 11px;
    }

    .play99-faq .faq-icon {
        flex: 0 0 40px;

        width: 40px;
        height: 40px;

        border-radius: 10px;

        font-size: 15px;
    }

    .play99-faq .faq-question-text {
        font-size: 14px;
    }

    .play99-faq .faq-toggle {
        flex: 0 0 31px;

        width: 31px;
        height: 31px;
    }

    .play99-faq .faq-answer {
        padding-left: 67px;
        padding-right: 20px;
    }

    .play99-faq .faq-item.active .faq-answer {
        padding-bottom: 18px;
    }

    .play99-faq .faq-answer p {
        font-size: 13px;
        line-height: 1.7;
    }

    .play99-faq .faq-support {
        align-items: flex-start;
        flex-wrap: wrap;

        padding: 18px;
        margin-top: 35px;
    }

    .play99-faq .faq-support-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .play99-faq .faq-support-content {
        width: calc(100% - 70px);
    }

    .play99-faq .faq-support-content h3 {
        font-size: 17px;
    }

    .play99-faq .faq-support-content p {
        font-size: 13px;
    }

    .play99-faq .faq-support-btn {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }

}