/*
========================
GOBAL CSS START
========================
*/

/* Font Declarations */
@font-face {
    font-family: "Niveau Grotesk";
    src: url("../fonts/NiveauGroteskLight.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Niveau Grotesk";
    src: url("../fonts/NiveauGroteskMedium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Niveau Grotesk";
    src: url("../fonts/NiveauGroteskBold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Niveau Grotesk";
    src: url("../fonts/NiveauGroteskBlack.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Niveau Grotesk";
    src: url("../fonts/NiveauGroteskRegular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-blue: #4461f2;
    --gradient-start: #2563eb;
    --gradient-end: #1e40af;
    --text-white: #ffffff;
    --dark-blue: #223bc9;
    --success-green: #4caf50;
    --error-red: #ff5252;
}

body {
    font-family: "Niveau Grotesk", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    /* background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%); */
    background: url(images/body-bg.webp) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
    min-height: 100vh;
}

:root {
    --selection-bg: #0078d7;
    --selection-color: #fff;
    --scroll-top-bg: #223bc9;
    --scroll-top-color: #fff;
    --yellow-color: #fde004;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-webkit-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-moz-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--scroll-top-bg);
    text-align: center;
    font-size: 22px;
    color: var(--scroll-top-color);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scrolltotop img {
    width: 14px;
    margin-top: -4px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(0px);
    }

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

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -7px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--scroll-top-bg);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 4px;
    left: -1px;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*===============
 GOBAL CSS END  
 ============== */

/*===== nav style start hare ======== */

.navbar-brand img {
    max-width: 220px;
}

.action-btn {
    display: inline-flex;
    padding: 5px 20px;
    font-size: 22px;
    color: #ffffff;
    font-weight: bold;
    border: 2px solid #fff;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.action-btn:hover {
    color: var(--yellow-color);
    border-color: var(--yellow-color);
}

.navbar-nav .nav-link {
    font-size: 20px;
    color: #fff;
}

.navbar-nav .nav-link:hover {
    color: var(--yellow-color);
}

.offcanvas {
    /* background: url(images/body-bg.png) no-repeat; */
    background-position: center;
    background-size: 100%;
}

.offcanvas-title img {
    max-width: 180px;
}

.mobile-nav-colose {
    background: transparent;
    border: none;
    color: #fff;
    margin-left: auto;
    font-size: 20px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/*======== nav area style end hare ========= */

.hero-area {
    padding: 50px 0;
}

.hero-wrapper h4 {
    /* font-size: 43px;
    background: linear-gradient(to right, #CD3939 30%, #FEEA09 60%, #FEF8A0);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-align: center;
    filter: drop-shadow(0px 3px 4.5px rgba(0, 0, 0, 0.61)); */
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.1rem;
    margin-top: 3rem;
    text-transform: uppercase;
}

.hero-wrapper h3 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    /* margin-top: 3rem; */
    text-transform: uppercase;
}

.hero-wrapper h2 {
    font-size: 43px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    filter: drop-shadow(0px 3px 4.5px rgba(0, 0, 0, 0.61));
}

.hero-wrapper p {
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    /* filter: drop-shadow(0px 3px 4.5px rgba(0, 0, 0, 0.61)); */
    /* max-width: 850px; */
    /* margin: 0 auto; */
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reting-card ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--yellow-color);
}

.rating-star img {
    max-width: 130px;
}

.reting-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reting-card p {
    font-size: 20px;
    filter: none;
}

.reting-card p a {
    font-weight: 700;
    text-decoration: underline;
}

.reting-card p a:hover {
    color: var(--yellow-color);
}

.action-btn-fill {
    display: inline-flex;
    padding: 15px 60px;
    border-radius: 11px;
    filter: drop-shadow(0px 3px 4.5px rgba(0, 0, 0, 0.61));
    background-image: linear-gradient(90deg,
            #cb3402 0%,
            #fbd500 46%,
            #fbd500 66%,
            #fbe206 100%);
    font-size: 20px;
    color: #000000;
    font-weight: bold;
    text-align: center;
    transform: background-image 0.3s ease;
    border: none;
    justify-content: center;
}

.action-btn-fill:hover {
    background-image: linear-gradient(-90deg,
            #cb3402 0%,
            #fbd500 46%,
            #fbd500 66%,
            #fbe206 100%);
}

.hero-action-btns {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 20px;
}

@media (max-width: 480px) {
    .hero-action-btns {
        flex-direction: column;
        gap: 10px;
    }

    .model-title {
        margin-bottom: 20px !important;
    }
}

.official-pertners {
    padding-top: 50px;
    padding-bottom: 50px;
}

.official-pertners p {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.official-pertners ul {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
}

/*======== hero style end hare ========= */

/*======= success story area style start hare ======== */

.success-story-area {
    /* padding-top: 30px; */
    padding-bottom: 50px;
    position: relative;
    z-index: 5;
}

.success-story-wrapper h4 {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.success-story-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.how-to-join-section h4 {
    font-size: 2.5rem !important;
}

.success-story-wrapper h2 {
    font-size: 46px;
    background: linear-gradient(to right, #cd3939 30%, #feea09 60%, #fef8a0);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-align: center;
    filter: drop-shadow(0px 3px 4.5px rgba(0, 0, 0, 0.61));
    padding-top: 5px;
}

.premium-member-wrapper {
    overflow: hidden;
    padding-top: 60px;
}

/* .premium-member-slider .item {
    height: 100%;
    padding: 0 20px;
}

.premium-member-slider .item img {
    height: 100%;
    object-fit: cover;
    object-position: center;
} */

/*======== research section style start hare ======= */

.research-section {
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.research-bg {
    position: absolute;
    right: 0;
    top: -1500px;
    height: 700%;
    width: 100%;
    z-index: -2;
}

.research-racngle {
    position: absolute;
    left: 0;
    top: -290px;
    height: 130%;
    z-index: -2;
    width: 80%;
}

.section-top h4 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.1rem;
    color: #ffffff;
    margin-top: 3rem;
    text-transform: uppercase;
}

.section-top h2 {
    font-size: 45px;
    color: #ffffff;
    font-weight: bold;
    filter: drop-shadow(0px 3px 4.5px rgba(0, 0, 0, 0.61));
    margin-top: 15px;
}

.section-top .sports-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 25px;
}

.section-top p {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
}

.single-sport-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.single-sport-items .icon {
    width: 56px;
}

.single-sport-items p {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.research-img {
    padding-top: 30px;
}

.research-img .research-mobile {
    display: none;
}

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

@media (max-width: 767px) {
    .research-img .research-mobile {
        display: block;
        width: 100%;
    }

    .research-img .research-desktop {
        display: none;
    }
}

.resarch-bottom-wrapper h4 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.02em;
}

.resarch-bottom-wrapper h2 {
    font-size: 45px;
    color: #ffffff;
    font-weight: bold;
    filter: drop-shadow(0px 3px 4.5px rgba(0, 0, 0, 0.61));
    margin-top: 15px;
}

.predictive-wrapper {
    padding-top: 50px;
}

.single-predictive {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.single-predictive .icons {
    width: 60px;
}

.single-predictive h5 {
    font-size: 23px;
    color: #ffffff;
    font-weight: bold;
}

.single-predictive p {
    font-size: 12px;
    color: #ffffff;
}

.text-right-top {
    position: absolute;
    right: 0;
    top: 50px;
    opacity: 0.4;
    font-size: 149px;
    line-height: 131px;
    color: #000000;
    font-weight: bold;
    text-align: right;
    z-index: -2;
}

.text-left-bottom {
    position: absolute;
    left: 0;
    bottom: 25%;
    opacity: 0.4;
    font-size: 149px;
    line-height: 131px;
    color: #000000;
    font-weight: bold;
    text-align: right;
    z-index: -2;
}

/*======= research area style end hare ======= */

/*======== plan area style start hare ===== */

.plan-area {
    padding: 50px 0;
    position: relative;
    z-index: 5;
}

.plan-card {
    display: flex;
    max-width: 356px;
    flex-direction: column;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
    background: #000;
    background-clip: padding-box;
    border: 5px solid transparent;
    border-radius: 14px;
    margin: 0 auto;
    margin-top: 60px;
    gap: 10px;
}

.plan-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -5px;
    border-radius: inherit;
    background-image: linear-gradient(90deg,
            #cd3939 0%,
            #fde909 46%,
            #fde909 66%,
            #fdf79f 100%);
}

.plan-card h4 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.02em;
}

.plan-price {
    display: flex;
    align-items: end;
    gap: 5px;
}

.plan-price h2 {
    font-size: 60px;
    color: #ffffff;
    font-weight: bold;
    line-height: 90%;
    filter: drop-shadow(0px 3px 4.5px rgba(0, 0, 0, 0.61));
}

.plan-price span {
    font-size: 24px;
    font-weight: bold;
    filter: drop-shadow(0px 3px 4.5px rgba(0, 0, 0, 0.61));
}

.plan-card h5 {
    font-size: 20px;
    margin: 10px 0;
}

.plan-card ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.plan-card ul li {
    display: flex;
    align-items: center;
}

.plan-card ul li span {
    font-size: 14px;
}

.plan-card .action-btn-fill {
    font-size: 15px;
}

.payment-option img {
    max-width: 200px;
}

.plan-bottom-card {
    max-width: 501px;
    margin: 0 auto;
    text-align: center;
    margin-top: 100px;
}

.plan-bottom-card p {
    font-size: 20px;
    color: #ffffff;
}

.site-footer {
    padding: 30px 0;
    position: relative;
    padding-bottom: 200px;
    z-index: 5;
    text-align: center;
    background: #213aca;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-wrapper ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-wrapper p {
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
}

.footer-wrapper ul li a {
    display: block;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
}

.footer-wrapper ul li a:hover {
    color: var(--yellow-color);
}

.plan-area .text-left-top {
    position: absolute;
    left: 10%;
    top: 20%;
    opacity: 0.09;
    font-size: 69px;
    color: #fde005;
    font-weight: bold;
    text-align: right;
    line-height: 120%;
}

.bottom-backround {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
}

.plan-area .text-left-bottom {
    position: absolute;
    left: 20%;
    bottom: 20%;
    opacity: 0.09;
    font-size: 69px;
    color: #fde005;
    font-weight: bold;
    text-align: left;
    line-height: 120%;
}

.plan-area .text-right-top {
    position: absolute;
    right: 13%;
    top: 20%;
    opacity: 0.09;
    font-size: 69px;
    color: #fde005;
    font-weight: bold;
    text-align: left;
    line-height: 120%;
}

.plan-area .text-right-bottom {
    position: absolute;
    right: 5%;
    bottom: 20%;
    opacity: 0.09;
    font-size: 69px;
    color: #fde005;
    font-weight: bold;
    text-align: left;
    line-height: 120%;
}

.sticky-bar {
    position: fixed;
    left: 0;
    bottom: 50px;
    width: 100%;
    z-index: 999;
}

.sticky-wrapper {
    backdrop-filter: blur(72px);
    background-color: #0e0e0e;
    border: 1px solid #ffffff26;
    border-radius: 8px;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    padding: 32px;
    display: flex;
}

.sticky-left-bar h4 {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.sticky-left-bar p {
    color: #fff9;
    max-width: 48ch;
    margin-right: 16px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.select-items {
    position: absolute;
    bottom: 115%;
    left: 0;
    right: 0;
    border-radius: 6px;
    overflow: hidden;
    display: none;
    z-index: 999;
}

.select-items div {
    color: white;
    padding: 10px;
    cursor: pointer;
}

.select-arrow {
    float: right;
    margin-top: 3px;
    transition: transform 0.3s ease;
}

.select-selected.active .select-arrow {
    transform: rotate(180deg);
}

.custom-select {
    border: 1px solid #fff3;
    border-radius: 8px;
    flex: 1;
    max-width: 330px;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    min-width: 300px;
}

.sticky-right-bar {
    display: flex;
    gap: 15px;
}

.select-selected {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 16px 19.2px;
    display: flex;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.float_btn-txt {
    color: #fff;
    text-transform: uppercase;
    font-size: 20.8px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.float_cta-span {
    color: #ffffff80;
    text-transform: uppercase;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.select-items {
    border: 1px solid #ffffff26;
    border-radius: 8px;
    background-color: #0e0e0e;
}

.apple-pay button {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    cursor: pointer;
    color: #000;
    background-color: #fff;
    border-radius: 8px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 176px;
    padding: 8px 24px;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    border: none;
    height: 100%;
}

.apple-pay button i {
    font-size: 28px;
}

.buy-button button {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    cursor: pointer;
    color: #fff;
    background-color: var(--dark-blue);
    border-radius: 8px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 176px;
    padding: 8px 24px;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    border: none;
    height: 100%;
    text-transform: capitalize;
}

.team-top-slider .slide-items,
.premium-member-slider .slide-items,
.team-bottom-slider .slide-items {
    padding: 0 10px;
}

.team-area {
    padding-top: 50px;
    position: relative;
    z-index: 7;
    pointer-events: none;
    margin-top: 50px;
}

@media screen and (max-width: 576px) {
    .testimonials {
        margin-top: 1px !important;
    }
}

.team-bottom-slider {
    direction: rtl;
}

.perner-slider-wp {
    padding: 5px 0;
    overflow: hidden;
    width: 100%;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    will-change: transform;
}

.perner-slider {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    will-change: transform;
}

.perner-slider.slick-initialized {
    opacity: 1;
    visibility: visible;
}

.perner-slider .slick-track {
    display: flex;
    align-items: center;
    gap: 0;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    will-change: transform;
    perspective: 1000;
    -webkit-perspective: 1000;
}

.perner-slider .slick-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.perner-slider li {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 54px;
    margin: 0;
    padding: 0 30px;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    will-change: transform;
}

.slick-slider {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.perner-slider li img,
.perner-slider li svg {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000;
    -webkit-perspective: 1000;
    will-change: transform;
}

.review-area {
    padding-top: 80px;
    overflow: hidden;
}

.review-wrapper .review-top {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-star-img img {
    max-width: 160px;
}

.review-top p {
    font-size: 22px;
}

.review-user .user-logo {
    margin: 0px 0px 0px 0px;
    border-style: solid;
    border-width: 3px 3px 3px 3px;
    border-color: #ffffff;
    border-radius: 100% 100% 100% 100%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25098039215686274);
    width: 69px;
    height: 69px;
    overflow: hidden;
}

.review-user .user-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-review-content {
    background: #fff;
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 45px;
    padding-right: 30px;
    width: calc(100% - 8px);
    margin-left: auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: #000;
}

.review-main-wp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding-top: 50px;
}

.single-review-card {
    width: 806px;
    max-width: 100%;
    background: linear-gradient(135deg, #151a7b 0%, #151a7b 100%);
    border-radius: 8px;
    overflow: hidden;
}

.review-user {
    max-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-user .username {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    padding: 5px 0;
}

.review-user .user-rating img {
    max-width: 110px;
}

.review-text p {
    font-size: 18px;
}

.premium-member-slider .item a {
    pointer-events: none;
}

.slide-items {
    width: 401px !important;
    max-width: 401px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.feature-item {
    display: flex;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
    height: auto;
    max-height: 100px;
}

.feature-item.hidden {
    opacity: 0;
    transform: translateY(-20px);
    height: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.toggle-features-btn {
    background: transparent;
    border: none;
    color: var(--yellow-color);
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
    text-align: left;
    margin-left: 10px;
}

.toggle-features-btn:hover {
    opacity: 0.8;
}

.features-list.expanded .feature-item.hidden {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    max-height: 100px;
}

.model-card img {
    border-radius: 8px;
    overflow: hidden;
}

/* Join Section Styles */
.join-steps {
    margin: 30px auto;
    max-width: 800px;
    margin-top: 0.5rem !important;
    margin-bottom: 0px !important;
}

.join-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
}

.join-icons-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin: 0 auto;
    max-width: 600px;
}

.join-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-bottom: 5px;
}

.join-step p {
    padding-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: gray;
}

@media (max-width: 480px) {
    .join-step p {
        padding-top: 5px;
        font-size: 12px !important;
    }
}

.join-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.2));
}

.how-to-join-title {
    /* font-size: 3.5rem; */
    /* font-weight: 700; */
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
    background: white;
    display: inline-block;
    padding: 4px 30px;
    border-radius: 30px;
    font-weight: 500;
    color: #1a237e !important;
    border: 3px solid #1a237e;
    margin-top: 20px !important;
    font-size: 20px !important;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    width: 170px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #1a237e;
    transition: all 0.3s ease;
}

.step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    background: white;
    color: #1a237e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid #1a237e;
}

/* Position for step 2's number */
.step-card:nth-child(2) .step-number {
    top: auto;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

/* Position for step 3's number */
.step-card:nth-child(3) .step-number {
    left: auto;
    right: -10px;
}

.step-icon {
    font-size: 3rem;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.step-card h6 {
    color: #1a237e;
    margin: 0;
    /* font-weight: 300; */
    margin-bottom: 12px;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .how-to-join-title {
        font-size: 2.5rem;
    }

    .steps-container {
        gap: 10px;
        padding: 1rem 0;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .step-card {
        width: 100px;
        padding: 0.5rem;
        margin: 0;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        top: -5px;
        left: -5px;
    }

    .step-card:nth-child(2) .step-number {
        bottom: -15px;
    }

    .step-card:nth-child(3) .step-number {
        right: -5px;
    }

    .step-icon {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .step-card h6 {
        font-size: 11px;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .step-icon i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .join-icons-wrapper {
        /* flex-direction: column; */
        gap: 20px;
    }

    .join-step {
        padding: 5px;
    }

    .join-step h6 {
        font-size: 12px;
    }

    .join-title {
        font-size: 24px;
    }

    .steps-container {
        padding: 0.5rem;
    }

    .step-card {
        width: 90px;
        padding: 0.5rem 0.25rem;
    }

    .step-icon {
        font-size: 1.25rem;
    }

    .step-card h6 {
        font-size: 10px;
        margin-bottom: 6px;
    }
}

/* Model Slider Styles */
@media (max-width: 480px) {
    .model-slider .model-card {
        padding: 0 5px;
    }

    .model-slider.slick-initialized {
        display: block;
    }

    .model-slider .slick-slide {
        margin: 0 5px;
    }

    .model-slider .slick-list {
        margin: 0 -5px;
    }

    .model-slider .slick-track {
        display: flex;
        align-items: center;
    }
}

@media (min-width: 480px) {
    .model-slider {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
    .line-break {
        display: block;
    }
}

/* # new styles */

/* .logo {
    color: var(--text-white);
font-size: 1.75rem;
font-weight: 700;
text-decoration:
none;
letter-spacing: -0.02em;
} */

.logo {
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.logo img {
    max-height: 65px;
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo img {
        max-height: 65px;
    }
}

@media (min-width: 992px) {
    .logo img {
        max-height: 65px;
    }
}

.btn-join {
    background-color: #151a7b;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Video Container Styles */
.video-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.header-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* .play-button::before {
    content: '▶';
    color: white;
    font-size: 24px;
    font-family: Arial, sans-serif;
    display: inline-block;
} */

.play-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid rgba(255, 255, 255, 0.8);
}

/* .join-section {
    padding: 3rem 0;
} */

.premium-plan-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 400px;
    margin: 40px auto;
    box-shadow: 0 20px 40px var(--dark-blue);
    position: relative;
}

.premium-plan-card::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--dark-blue);
    border-radius: 16px;
    pointer-events: none;
}

.premium-title {
    font-size: 1.85rem;
    color: var(--dark-blue);
    font-weight: 600;
    text-align: center;
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 30px;
    justify-content: leftr;
}

.price {
    font-size: 3.5rem;
    color: var(--dark-blue);
    font-weight: 700;
    -webkit-text-stroke: 2px var(--dark-blue);
    text-stroke: 2px var(--dark-blue);
    color: white;
    /* text-shadow: 2px 2px 0px var(--dark-blue); */
}

.period {
    font-size: 1.5rem;
    color: var(--dark-blue);
    font-weight: 500;
}

.benefits-title {
    color: var(--dark-blue);
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-weight: 400;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-blue);
    opacity: 1;
    max-height: 50px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.benefit-item.hidden {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
}

.benefit-item svg {
    color: var(--dark-blue);
    width: 24px;
    height: 24px;
}

.show-more {
    background: none;
    border: none;
    color: var(--dark-blue);
    font-size: 1rem;
    cursor: pointer;
    text-decoration: underline;
    width: 100%;
    text-align: left;
    transition: opacity 0.3s ease;
    margin: 10px;
}

.join-button {
    display: block;
    background: var(--dark-blue);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.join-button:hover {
    background: white;
    color: var(--dark-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--dark-blue);
}

@media (max-width: 768px) {
    .premium-plan-card {
        padding: 28px;
        margin: 20px;
    }

    .premium-title {
        font-size: 1.5rem;
        margin-top: 3rem;
    }

    .price {
        font-size: 3rem;
    }

    .premium-plan-card::before {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

.research-models {
    /* padding: 3rem; */
    position: relative;
}

.model-title {
    font-size: 3.5rem;
    color: white;
    /* font-weight: 700; */
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); */
    margin-bottom: 20px;
}

.model-subtitle {
    font-size: 2.5rem;
    color: white;
    font-weight: 600;
    margin-bottom: 60px;
}

.prediction-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
    padding: 0 20px;
}

.prediction-image-wrapper {
    flex: 0 1 auto;
    max-width: 500px;
    width: 100%;
}

.prediction-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.prediction-image:hover {
    transform: translateY(-5px);
}

.prediction-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.prediction-card.phillies {
    border: 2px solid #e81828;
}

.prediction-card.bluejays {
    border: 2px solid #134a8e;
}

.team-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.team-info h4 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.game-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.game-time i {
    color: #999;
    font-size: 1rem;
}

.prediction-details {
    display: flex;
    gap: 10px;
    margin: 12px 0;
}

.prediction,
.over-under {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
    text-align: center;
}

.prediction {
    background: #f5f5f5;
    color: #333;
}

.phillies .prediction {
    background: #e81828;
    color: white;
}

.bluejays .prediction {
    background: #134a8e;
    color: white;
}

.over-under {
    background: #f5f5f5;
    color: #333;
}

.views {
    color: #999;
    font-size: 0.85rem;
}

@media (max-width: 480px) {
    .prediction-details {
        flex-direction: column;
    }

    .team-info h4 {
        font-size: 1rem;
    }

    .game-time {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .prediction-cards {
        gap: 20px;
    }

    .prediction-image-wrapper {
        max-width: 100%;
    }
}

.stars {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.stars svg {
    width: 24px;
    height: 24px;
    fill: white;
    stroke: white;
    stroke-width: 1;
}

.stars svg.filled {
    opacity: 1;
}

.stars svg:not(.filled) {
    opacity: 0.3;
}

.stars svg.partial {
    clip-path: polygon(0 0, 70% 0, 70% 100%, 0% 100%);
    opacity: 1;
}

@media (max-width: 767px) {
    .stars svg {
        width: 20px;
        height: 20px;
    }
}

.rating-container {
    --star-color: #ffffff;
}

.dot {
    color: #151a7b;
}

.red-dot {
    color: #e81828;
}

.blue-dot {
    color: var(--dark-blue);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-blue);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    display: none;
}

/* Slick Dots Styling */
.steps-container .slick-dots {
    bottom: -30px;
    list-style: none;
    display: flex !important;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.steps-container .slick-dots li {
    margin: 0 5px;
}

.steps-container .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.steps-container .slick-dots li.slick-active button {
    background-color: #007bff;
}

#preloader img {
    width: 320px;
    height: auto;
}

.video-placeholder {
    display: none;
}

.typewriter {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.15em;
    width: 0;
    opacity: 0;
}

.typewriter.animate {
    animation: typing 3.5s steps(40, end) forwards, blink-caret 0.75s step-end infinite;
    opacity: 1;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-right-color: transparent;
    }
    50% {
        border-right-color: orange;
    }
}

.header-video {
    cursor: pointer;
}

.game-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.game-slider .slick-slide {
    height: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.game-slider.slick-initialized {
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-slider .slick-track {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.game-slider .slick-list {
    width: 100%;
    overflow: hidden;
    align-items: center;
}

.game-slider .model-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.game-slider .model-card img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 576px) {
    .game-slider .slick-slide {
        padding: 0 5px;
    }
    
    .game-slider .model-card {
        width: 100%;
        margin: 0 auto;
    }
    
    .game-slider .model-card img {
        width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }
}

.notification-popup {
    position: fixed;
    right: 20px;
    bottom: 200px;
    z-index: 1000;
    background: white;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(120%);
    transition: transform 0.3s ease-out;
}

.notification-popup.show {
    transform: translateX(0);
}

.notification-popup .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3366ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.notification-popup .content {
    display: flex;
    flex-direction: column;
}

.notification-popup .content .title {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.notification-popup .content .location {
    font-size: 12px;
    color: #666;
}

/* Tablet/iPad Styles */
@media (max-width: 1024px) {
    .notification-popup {
        padding: 8px 16px;
        right: 15px;
        bottom: 180px;
    }

    .notification-popup .avatar {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .notification-popup .content .title {
        font-size: 13px;
    }

    .notification-popup .content .location {
        font-size: 11px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .notification-popup {
        padding: 6px 12px;
        right: 10px;
        bottom: 150px;
        gap: 8px;
    }

    .notification-popup .avatar {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .notification-popup .content .title {
        font-size: 12px;
    }

    .notification-popup .content .location {
        font-size: 10px;
    }
}

/* Small Mobile Styles */
@media (max-width: 375px) {
    .notification-popup {
        padding: 5px 10px;
        right: 8px;
        bottom: 130px;
        gap: 6px;
    }

    .notification-popup .avatar {
        width: 25px;
        height: 25px;
        font-size: 11px;
    }

    .notification-popup .content .title {
        font-size: 11px;
    }

    .notification-popup .content .location {
        font-size: 9px;
    }
}