:root {
    --wagerGreen: #1cad75;
    --backColour: #191919;
    --tabColour: #262626;
    --textColour: #f1f1f1;
    --highlight: #1cad75;
    --borderColour: #333333;
    --boxShadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    --gold: rgb(180, 140, 58);
}

.baseholder {
    background-color: #191919;
    color: white;
    font-family: 'Inter', sans-serif;
    padding-top: 50px;
}

.pageTitle {
    text-align: center;
    text-decoration: underline;
    font-size: 3.5em;
    margin-bottom: 25px;
    font-weight: 600;

}


.progress-bar-container {
    border-radius: 20px;
    width: 400px;
    height: 10px;
    background-color: #222;
    z-index: 999;
    margin-bottom: 25px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--gold), #ffe08a);
    transition: width 1s ease;
    animation: shimmer 4s infinite linear;
}

@keyframes shimmer {
    0% {
        filter: brightness(1) drop-shadow(0 0 3px var(--gold));
    }

    50% {
        filter: brightness(1.5) drop-shadow(0 0 6px var(--gold));
    }

    100% {
        filter: brightness(1) drop-shadow(0 0 3px var(--gold));
    }
}

@keyframes flashColour {

    0%,
    100% {
        color: white;
    }

    50% {
        color: #1CAD75;

    }
}

.flashingColourText {
    animation: flashColour 1.5s;
}





.mentorship-card {
    border: 1px solid var(--borderColour);
    border-radius: 12px;
    padding: 32px;
    max-width: 1200px;
    margin: 60px auto;
    box-shadow: var(--boxShadow);
    font-family: 'Barlow Semi Condensed', sans-serif;
    color: var(--textColour);
}

.mentorship-card h2 {
    font-family: 'poppins', sans-serif;
    font-size: 3em;
    color: var(--gold);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 12px;
}

.mentorship-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.mentorship-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mentor-button {
    color: white !important;
    cursor: pointer;
    max-width: 200px;
    min-width: 150px;
    background: linear-gradient(91deg, rgb(180, 150, 90) -0.03%, rgb(145, 100, 10) 102.02%);
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 1.2em;
    display: block;
    outline: none;
    border: none;
    margin: 10px auto;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    transition: 0.4s;
    box-shadow: var(--boxShadow);
}
.mentor-button a {
    color: white !important;
}

.mentor-button:hover {
     color: white;
    transform: translateY(-5px);
}

.feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
}

.feature i {
    color: var(--highlight);
    font-size: 20px;
    width: 26px;
    text-align: center;
}

.mentorship-right {
    flex: 0 0 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mentor-icon {
    max-width: 350px;
    color: white;
}

@media screen and (max-width: 700px) {
    .mentor-icon {
        max-width: 300px;
        color: white;
    }
}

@media screen and (max-width: 650px) {
    .mentor-icon {
        max-width: 250px;
        color: white;
    }

    .mentorship-content {
        gap: 5px;
    }
}

@media screen and (max-width: 500px) {
    .mentorship-content {
        flex-direction: column-reverse;
    }
}

#priceSection {
    height: fit-content;
    width: 100%;
    display: none;
    font-weight: 600;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.price-sign-up-information {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.pricing-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.pricing-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.pricing-card {
    background-color: var(--backColour);
    border-radius: 1px solid var(--borderColour);
    border-radius: 16px;
    padding: 2rem;
    width: 300px;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.featured {
    border: 2px solid var(--gold);
    background-color: var(--backColour);
}

.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: bold;
    font-size: 0.8rem;
}

.price {
    font-size: 2rem;
    margin: 0.5rem 0;
    color: var(--gold);
}

.billing {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    height: 150px;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-card ul li {
    margin-bottom: 0.8rem;
}

.select-button {
    background-color: #444;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.select-button:hover {
    background-color: #555;
}

.select-button.primary {
    background-color: var(--gold);
    color: #000;
}

.select-button.primary:hover {
    background-color: #cfa248;
}

.daily-price {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}


.billingContainer {
    width: 80%;
    margin-bottom: 20px;
    color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.billingContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.priceOption {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.billingContainer input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #555;
    border-radius: 50%;
    margin: 10px;
    cursor: pointer;
}

.billingContainer input[type="radio"]:checked {
    background-color: #1CAD75;
    margin: 10px;
}

.billingContainer label {
    font-size: 1.75em;
    cursor: pointer;
}

.onboarding-button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    cursor: pointer;
    margin-top: 15px;
    margin-bottom: 20px;
}

.onboarding-button {
    font-size: 1.4em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 250px;
    height: 50px;
    background-color: var(--wagerGreen);
    color: white;
    border-radius: 10px;
}

.info-icon {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip {
    visibility: hidden;
    opacity: 0;
    width: 260px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 10px 12px;
    position: absolute;
    z-index: 1;
    top: -10px;
    right: 30px;
    transform: translateY(-50%);
    transition: opacity 0.3s ease;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 0 10px rgba(180, 140, 58, 0.4);
    border: 1px solid rgb(180, 140, 58);
}

.info-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
}



@media (max-width: 1000px) {
    .pricingTableContainer {
        flex-direction: column;
        align-items: center;
    }

    .priceTable {
        width: 75%;
    }
}

@media (max-width: 900px) {

    .priceTable {
        width: 65%;
    }

    .productFeatures {
        min-height: 260px;

    }

    .billingContainer label {
        font-size: 1.4em;
    }
}

@media (max-width: 600px) {
    .pricingTableContainer {
        flex-direction: column;
    }

    .priceTable {
        margin-bottom: 50px;
        width: 95%;
    }

    .productFeatures {
        min-height: 260px;

    }

    .billingContainer label {
        font-size: 1em;
    }

    .billingContainer {
        flex-direction: column;
    }

    .priceOption {
        justify-content: space-between;
        width: 50%;
    }
}




#contactSection {
    margin-top: 100px;
    width: 100%;
    display: none;
    justify-content: space-evenly;
    flex-direction: row;
}

.contactLeft {
    float: left;
    width: 40%;
}

.contactRight {
    float: right;
    width: 40%;
}

.contactInfoContainer {
    border-radius: 20px;
    padding: 20px;
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    background-color: #191919;
    min-width: fit-content;
    max-width: 450px;
    border: 1px solid #1CAD75;


    transform-origin: left;

}

.contactInfoContainer h3 {
    font-size: 3em;
    font-weight: 600;
}

.contactInfoContainer input {
    color: white;
    background-color: #191919;
    height: 30px;
    border: none;
    border-radius: 5px;
    border: 1px solid gray;
}

textarea {

    background-color: #191919;
    color: white;
    border: none;
    border-radius: 5px;
    border: 1px solid #1CAD75;
}

.contactEmailContainer,
.contactMsgContainer,
.contactLastContainer,
.contactFirstContainer {
    font-weight: 600;
    display: flex;
    flex-direction: column;
}

.contactLastContainer,
.contactFirstContainer {
    width: 45%;
}

.contactNameContainer {

    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contactButtonContainer {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contactButtonContainer button {
    color: white;
    background-color: #1CAD75;
    width: 80%;
    border: none;
    font-size: 2em;
    border-radius: 10px;
    height: 50px;
    margin-top: 10px;
}

.contactForm span {
    margin-bottom: 10px;
}

.contactLeft {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    color: white;
}

.contactLefyCotainer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
    color: white;
}

.contactLeft h2 {
    font-size: 4em;
    margin-bottom: 10px;
}

.contactLeft span {
    font-size: 1.5em;
    text-align: left;
}

.contactusEmailLabel {
    font-size: 2em !important;
    font-weight: 600;
}

.contactInfoContainer h3 {
    margin: 0;
}

@media (max-width: 900px) {
    .contactLeft h2 {
        font-size: 2.5em;
        margin-bottom: 10px;
    }

    .contactLeft span {
        font-size: 0.8em;
        text-align: left;
    }

    .contactusEmailLabel {
        font-size: 1em !important;
        font-weight: 600;
    }

    .contactLeft {
        width: fit-content;
    }

    .contactRight {
        width: 50%;
    }
}

@media (max-width: 750px) {
    .contactRight {
        width: 70%;
    }
}

@media (max-width: 750px) {
    #contactSection {
        flex-direction: column;
    }

    .contactLeft,
    .contactRight {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contactLeft {
        margin-bottom: 50px;
    }

    .contactLeft h2 {
        font-size: 4em;
        margin-bottom: 10px;
    }

    .contactLeft span {
        font-size: 1.5em;
        text-align: left;
    }

    .contactusEmailLabel {
        font-size: 2em !important;
        font-weight: 600;
    }
}

.countrySelectTextDiv {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.countrySelectSpan {
    margin-bottom: .5rem;
}

#country-select {
    border-radius: 0.25rem;
    color: #6c757d;
    background-color: #191919;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    border: 1px solid #ced4da;
    overflow: hidden;
}

#country-select option {
    color: white;
    font-weight: normal;
    display: flex;
    align-items: center;
    height: 40px;
}

#country-select option img {
    margin-right: 10px;
    width: 32px;
    height: 20px;
}

.priceTableLineContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.priceTableInnerContainer {
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.priceTableLine {
    width: 100%;
    border-bottom: 1px solid #1CAD75;
}

.freeTrialContainer {
    display: flex;
    justify-content: left;
    width: 100%;
}

.freetrialInnerContainer {
    width: fit-content;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 15px 30px 15px 30px;
    margin: 10px;
    border-radius: 20px;
    margin-left: 20px;
    background-color: #262626;
}

@keyframes slidingArrow {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.checkOutSection {
    display: none;
    flex-direction: column;
    width: 100%;
}

#checkout {
    width: 100%;
}

.accountRedirect {
    margin-left: 10px;
    margin-top: 75px;
    display: flex;
    flex-direction: column;
}

.accountRedirectInnerContainer {
    overflow-x: hidden;
    width: fit-content;
    color: white;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.4s;
    margin-bottom: 20px;
}

.accountRedirectInnerContainer:hover {
    color: white;
}

.slidingLogInArrow {
    color: var(--gold);
}

.accountRedirectInnerContainer:hover .slidingLogInArrow {
    text-decoration: none;
    animation: slidingArrow 1.5s;
}


.loader-container {
    position: relative;
    width: 25px;
    height: 25px;
}

.loader {
    position: absolute;
    border: 8px solid transparent;
    /* Light gray background for contrast */
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.loader-inner {
    border-top: 8px solid #1CAD75;
    /* White color for visibility */
    animation-name: spin-clockwise;
    top: -10px;
    /* Adjusted for larger size */
    left: -10px;
    width: calc(100% + 20px);
    /* 30% larger diameter */
    height: calc(100% + 20px);
}

.loader-outer {
    border-top: 8px solid #1CAD75;
    /* White color for visibility */
    animation-name: spin-counter-clockwise;
    top: -16px;
    /* Offset to make the ring larger */
    left: -16px;
    width: calc(100% + 32px);
    /* Increase size of outer ring */
    height: calc(100% + 32px);
}

@keyframes spin-clockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-counter-clockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}



@keyframes slideDown {
    from {
        top: -50px;
        /* Start from above the top edge */
        opacity: 0;
        /* Start with the element being fully transparent */
    }

    to {
        top: 100px;
        /* End at the top edge of the viewport */
        opacity: 1;
        /* End with the element fully visible */
    }
}

@keyframes slideUp {
    from {
        top: 100px;
        /* Start from current position */
        opacity: 1;
        /* Start fully visible */
    }

    to {
        top: -50px;
        /* Move back above the visible area */
        opacity: 0;
        /* Become fully transparent */
    }
}

.errorPopDown {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    position: fixed;
    background-color: #191919;
    border: 2px solid #1CAD75;
    width: 700px;
    height: 50px;
    top: -50px;
    z-index: 1000;
    display: none;
    left: 50%;
    transform: translateX(-50%);

    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25),
        /* Deep shadow for depth */
        0px 0px 8px 1px #1CAD75;
}

.errorPopDownContainer {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.errorPopDownInnerContainer {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    justify-content: space-between;
}

#errorTypeSpan {
    font-weight: bolder;
}

#errorMsgSpan {
    flex: 1;
    text-align: center;
}

.signUpContainer {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.signupform {
    position: relative;

    padding: 20px;
    border-radius: 20px;
    height: 100%;
    float: left;
    width: 38%;
}

.holderContainerDiv {
    width: 7%;
}

.signUpRightSide {


    padding-bottom: 10px;
    float: right;
    width: 55%;
}

.bottomPageEv {
    border: 1px solid var(--borderColour);
    left: 0;
    float: right;
    max-height: 80% !important;
    border-radius: 20px;
    box-shadow: 15px 15px 10px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 770px) {
    .signUpContainer {
        padding-top: 100px;

        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .signUpRightSide {
        margin-top: 50px;
        padding-bottom: 10px;
        float: right;
        width: 100%;
    }

    .bottomPageEv {
        width: 98%;
    }

    .signupform {
        position: relative;

        height: 100%;
        float: left;
        width: 85%;
    }
}

.purchaseCon {

    color: white !important;
}

@media (max-width: 991px) {

    .purchaseText {
        width: 100%;
        float: left;
    }

    .purchaseCon {

        flex-direction: column;
    }

    #puchaseCollageImg {
        margin-top: 50px;
        width: 100%;
    }
}

@media (min-width: 991px) {
    .purchaseText {
        width: 30%;
        float: left;
    }

    .purchaseCon {
        display: flex;

        flex-direction: column;
        width: 98%;
    }

    .purchaseImg {

        float: right;
    }

    #puchaseCollageImg {

        width: 80%;
    }

    .purchaseText {
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .bonusBetSection {


        margin-left: 0;

    }
}


.purchaseText-list {
    list-style-type: none;
    /* Removes the default list style */
    padding-left: 0;
    /* Adjusts the padding to align with the content if needed */

}

.purchaseText-list .fa-li {
    left: -2em;
    /* Adjust this value to align the check mark as you like */

    margin-bottom: 10px !important;
}

.purchaseText-heading {
    text-align: center;
    font-size: 1em;

    margin-bottom: 15px;
    font-weight: 600;
}

.purchaseText-description {
    padding-left: 20px;

    font-size: 1em;
    margin-top: 0;
}

.purchasingHeadingTitle {
    width: 80%;
    padding-top: 30px;
    text-align: center;
    font-size: 2em;
}

.sales-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.crossed-out {
    text-decoration: line-through;
}

.pricePara h4 {
    font-weight: 600;

    text-align: center !important;
}

#mainPrice {
    color: var(--gold);
    font-size: xx-large !important;
}

.signUpButtonDiv {
    padding-top: 50px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
}

#fianlPurchaseButton {
    padding: 30px !important;
    font-size: xx-large !important;
    font-weight: 600 !important;
    border: 3px solid #1cad75;
}

.purchaseImg {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stepProcessContainer {
    display: flex;
    align-items: center;
}

.stepProcessDot {
    width: 25px;
    height: 25px;
    background-color: #1CAD75;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    margin-right: 10px;
}

.stepProcessLine {
    flex: 0.5;
    height: 2px;
    background-color: #1CAD75;
    margin: 0 10px;
}

.stepProcessText {
    font-size: 18px;
}

.consentmarketing {
    display: flex;
    gap: 8px;
    justify-content: left;
    align-items: center;
    flex-direction: row;
}

.consentMarketingText {
    width: 80%;
    font-size: 1em;
    color: white;
}

#marketingCheckbox {
    width: 15px;
    height: 15px;
    color: #1cad75;

}

.checkbox-wrapper-2 {
    width: 30px;
}

.checkbox-wrapper-2 .ikxBAC {

    appearance: none;
    background-color: #dfe1e4;
    border-radius: 72px;
    border-style: none;
    flex-shrink: 0;
    height: 18px;
    margin: 0;
    position: relative;
    width: 30px;
}

.checkbox-wrapper-2 .ikxBAC::before {

    bottom: -6px;
    content: "";
    left: -6px;
    position: absolute;
    right: -6px;
    top: -6px;
}

.checkbox-wrapper-2 .ikxBAC,
.checkbox-wrapper-2 .ikxBAC::after {
    border: 1px solid gray;
    transition: all 100ms ease-out;
}

.checkbox-wrapper-2 .ikxBAC::after {
    background-color: white;
    border-radius: 50%;
    content: "";
    height: 18px;
    left: 0px;
    position: absolute;
    top: -1px;
    width: 18px;
}

.form-control {
    color: white;
}


.form-control,
#marketingCheckBox {
    background-color: #191919;
}

.form-control:focus {
    background-color: #191919;
}

.checkbox-wrapper-2 input[type=checkbox] {
    cursor: default;
}

.checkbox-wrapper-2 .ikxBAC:hover {
    background-color: #dfe1e4;
    transition-duration: 0s;
}

.checkbox-wrapper-2 .ikxBAC:checked {
    background-color: #1cad75;
}

.checkbox-wrapper-2 .ikxBAC:checked::after {
    background-color: #1cad75;
    left: 13px;
}

.checkbox-wrapper-2 :focus:not(.focus-visible) {
    outline: 0;
}

.checkbox-wrapper-2 .ikxBAC:checked:hover {
    background-color: #1cad75;
}

.signUpButton {
    font-size: 1.2em;
    padding-bottom: 10px;
    padding-top: 5px;
    border: 3px solid #1CAD75;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px !important;
    transition: 0.4s;
}

.signUpButton:hover {
    transform: translateY(-5px);
}

.signupButtonCon {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.purchaseText-list {
    margin-bottom: 0px !important;
}

.teermsAndCon {
    color: #1CAD75;
}

.purchaseText {

    padding-top: 10px;

}

.bonusBetSection {

    margin: 10px;
    margin-left: 20px;

    border-radius: 10px;
    padding-top: 10px;
}

.ContainerForArbEv {
    margin: 10px;
    padding-top: 10px;

    border-radius: 10px;
}

@media (max-width: 991px) {

    .bonusBetSection {


        margin-left: 10px;

    }
}

.freeContainer {
    font-weight: 600;
    margin-left: 50px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    font-size: 1.1em;
}

.freeContainer i {
    width: fit-content;
    margin-top: 5px;
    color: #1CAD75
}

.purchaseText-list fa-ul {
    font-size: 2em !important;
}

.boldingForTier {
    padding-bottom: 4px;
}

.bonusBetContainer,
.ContainerForArbEv {
    width: 50%;
}

.signUpContainer {
    display: flex;
}

.baseholder {
    background-image:
        radial-gradient(circle at 70% 60%, #1cad7513 20%, transparent 30%),
        radial-gradient(circle at 10% 10%, #1cad7513 5%, transparent 20%);
}

.onboarding-container {
    margin-top: 10px;
    margin-bottom: 75px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;


}

.onboarding-body {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
}

.onboarding-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 700px;
}

.onboarding-page {
    overflow-x: hidden;
    display: none;
}

.onboarding-page:first-of-type {
    display: flex;
}

.onboarding-header {
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.5;
    color: white;
}

.onboarding-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 500px;
    background-color: #1a1a1a;
    border-left: 4px solid #1cad75;
    padding: 14px 16px;
    margin-bottom: 15px;

    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;

}

.onboarding-info i {
    color: #1cad75;
    font-size: 18px;
    margin-top: 2px;
}


.question {
    width: 500px;
    text-align: center;
    font-size: 1.5em;
    line-height: 1.5;
    margin-bottom: 15px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.radio-option {
    width: 450px;
    padding: 16px 10px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 1.5em;
    cursor: pointer;
    transition: background 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
    gap: 25px;
    flex-direction: row;
}

.radio-option input[type="radio"] {
    color: #1cad75;
    appearance: none;
    border: 2px solid #888;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    background: none;
    cursor: pointer;
}

.radio-option input[type="radio"]:checked {
    border-color: #1cad75;
    background-color: #1cad75;
}

.radio-option.selected {
    border-color: #1cad75;
}

.radio-desc {
    color: #ccc;
    font-size: 0.5em;
    display: block;
    margin-top: 5px;
    line-height: 1.3;
}

.strategy-option-container {
    width: 100%;
}

.highlight {
    color: #1cad75;
    font-weight: bold;
}


.onboarding-3-question-block {

    margin-bottom: 20px;
}

.onboarding-3-question {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.onboarding-3-brand {
    color: #29c770;
}

.onboarding-3-radio-group {
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.onboarding-3-radio-group label {
    width: 500px;
    background-color: #1f1f1f;
    border: 1px solid #333;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.onboarding-3-radio-group label:hover {
    background-color: #2a2a2a;
}

.onboarding-3-radio-group input[type="radio"] {
    margin-right: 0.75rem;
}

.onboarding-3-divider {
    text-align: center;
    font-size: 1.2rem;
    margin: 15px;
    color: #666;
}


.strategy-option {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    cursor: pointer;
}

.strategy-option:hover {
    background-color: #222222;
}

.strategy-label {
    display: flex;
    align-items: center;
    font-size: 24px;
}

.strategy-label i.fa-plus {
    color: #1cad75;
}

.strategy-label i.fa-exchange-alt {
    color: #a95eff;
}

.strategy-label i.fa-wave-square {
    color: #f57c00;
}

.strategy-label i.fa-bolt {
    color: #ffce00;
}

.strategy-label i.fa-search {
    color: #00bfff;
}

.strategy-label i {
    margin-right: 10px;
}

.onboarding-3-radio-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 850px) {
    .onboarding-3-question {
        width: 400px;
    }

    .strategy-option-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .strategy-option,
    .onboarding-3-radio-group label {
        width: 400px;
        margin-bottom: 5px;
    }

    .onboarding-header {
        margin-bottom: 30px;
        max-width: 500px;
    }

    .onboarding-info {
        width: 400px;
    }

    .radio-option,
    .question {
        width: 400px;
    }

    .onboarding-3-radio-group label {
        width: 400px;
    }

}

@media (max-width: 470px) {

    .question {
        margin-bottom: 5px;
    }

    .strategy-option-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .strategy-option,
    .onboarding-3-radio-group label {
        width: 300px;
    }

    .onboarding-header {
        font-size: 1em;
        margin-bottom: 20px;
        max-width: 400px;
    }

    .strategy-label {
        font-size: 18px;
    }

    .onboarding-info {
        width: 350px;
    }

    .radio-option {
        padding: 10px 5px;
    }

    .radio-option,
    .question {
        width: 350px;
    }
}

@media (max-width: 440px) {
    .strategy-option-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .onboarding-header {
        font-size: 1em;
        margin-bottom: 20px;
        max-width: 350px;
    }

    .strategy-label {
        font-size: 18px;
    }

    .progress-bar-container {
        width: 300px;
    }

    .onboarding-info {
        width: 320px;
    }

    .radio-option {
        font-size: 1.4em;
    }

    .radio-option,
    .question {
        width: 320px;
    }

    .onboarding-3-question {
        width: 300px;
    }
}








@media (max-width: 770px) {
    .purchaseText {

        display: flex;
        flex-direction: row;


    }
}

@media (max-width: 430px) {
    .purchaseText {

        display: flex;
        flex-direction: column;
    }

    .bonusBetContainer {
        width: 100% !important;
    }

    .ContainerForArbEv {
        width: 95% !important;
    }
}

@media (max-width: 380px) {

    .ContainerForArbEv {
        width: 93% !important;
    }
}