.bmc-header-auth {
    align-items: center;
    display: inline-flex;
    font-family: "Inter", sans-serif;
}

.bmc-header-auth--guest {
    gap: 14px;
}

.bmc-header-auth__button,
.bmc-header-auth--account {
    align-items: center;
    border-radius: 13px;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 10px 24px;
}

.bmc-header-auth--account{
    padding: 8px 20px;
}

.bmc-header-auth__button:hover,
.bmc-header-auth__button:focus,
.bmc-header-auth--account:hover,
.bmc-header-auth--account:focus {
    filter: brightness(1.1) !important;
    text-decoration: none;
    transform: scale(1.05) !important;
}

.bmc-header-auth__button--login {
    background: #050505;
    border: 1px solid #d400ff;
    box-shadow: 0px 4px 6px -4px rgba(216, 3, 213, 0.24), 0px 10px 15px -3px rgba(216, 3, 213, 0.40) !important;
    color: #ffffff;
}

.bmc-header-auth__button--signup,
.bmc-header-auth--account {
    background: linear-gradient(90deg, #D803D5 0%, #CD21E5 100%);
    border: none;
    box-shadow: 0 4px 3px #e007dd3d;
    color: #ffffff;
}

.bmc-header-auth__button--signup:hover,
.bmc-header-auth__button--signup:focus,
.bmc-header-auth--account:hover,
.bmc-header-auth--account:focus {
    box-shadow: 0 4px 6px -4px rgba(216, 3, 213, 0.24), 0 10px 15px -3px rgba(216, 3, 213, 0.40);
}

.bmc-header-auth--account {
    gap: 6px;
    
}

.bmc-header-auth__icon {
    display: inline-flex;
    height: 21px;
    width: 21px;
}

.bmc-header-auth__icon svg {
    display: block;
    fill: currentColor;
    height: 100%;
    width: 100%;
}

.bmc-header-auth__name {
    display: inline-block;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .bmc-header-auth--guest {
        gap: 12px;
    }

    .bmc-header-auth__button,
    .bmc-header-auth--account {
        border-radius: 11px;
        font-size: 14px;
    }

    .bmc-header-auth__button--login,
    .bmc-header-auth__button--signup {
        min-width: auto;
        padding: 10px 20px;
    }

    .bmc-header-auth__name {
        max-width: 110px;
    }
}

.bmc-auth-page {
    color: #ffffff;
    display: flex;
    font-family: "Inter", sans-serif;
    justify-content: center;
    padding: 40px 20px 0px;
}

.bmc-auth-shell {
    align-items: center;
    display: flex;
    flex-direction: column;
    max-width: 520px;
    position: relative;
    width: 100%;
}

.bmc-auth-back {
    display: none !important;
}

.bmc-auth-kicker {
    background: rgba(216, 3, 213, 0.18);
    border: 1px solid rgba(216, 3, 213, 0.55);
    border-radius: 999px;
    color: #ff35f7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    line-height: 1;
    margin-bottom: 13px;
    padding: 9px 16px;
    text-transform: uppercase;
}

.bmc-auth-kicker--cyan {
    background: rgba(0, 219, 255, 0.14);
    border-color: rgba(0, 219, 255, 0.55);
    color: #00e5ff;
}

.bmc-auth-title {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 12px;
    text-align: center;
}

.bmc-auth-switch {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    margin: 0 0 28px;
    text-align: center;
}

.bmc-auth-switch a,
.bmc-auth-row a {
    color: #00f0ff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bmc-auth-page--login .bmc-auth-switch a,
.bmc-auth-page--login .bmc-auth-row a {
    color: #02dcf7;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bmc-auth-page--register .bmc-auth-switch a {
    color: #d200cf;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bmc-auth-page--reset .bmc-auth-switch a,
.bmc-auth-page--forgot .bmc-auth-switch a {
    color: #d200cf;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bmc-auth-steps {
    align-items: center;
    color: rgba(255, 255, 255, 0.38);
    display: flex;
    font-size: 12px;
    gap: 12px;
    justify-content: center;
    margin: -10px 0 24px;
}

.bmc-auth-step-indicator {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.bmc-auth-step-indicator span {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.62);
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    height: 23px;
    justify-content: center;
    width: 23px;
}

.bmc-auth-step-indicator.is-active {
    color: #ffffff;
}

.bmc-auth-step-indicator.is-active span {
    background: linear-gradient(135deg, #d803d5 0%, #32a4ff 100%);
    color: #ffffff;
}

.bmc-auth-step-indicator.is-complete span {
    background: linear-gradient(135deg, #d803d5 0%, #32a4ff 100%);
    color: #ffffff;
}

.bmc-auth-step-indicator.is-complete span::before {
    content: "";
}

.bmc-auth-step-line {
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    height: 1px;
    width: 42px;
}

.bmc-auth-card {
    background: #FFFFFF08;
    border: 0.8px solid #FFFFFF14;
    border-radius: 20px;
    padding: 28px;
    width: 100%;
        position: relative;
    z-index: 1;
    isolation: isolate;
    overflow: hidden;
}

.bmc-auth-notice {
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    margin: -10px 0 20px;
    padding: 13px 16px;
    text-align: center;
    width: 100%;
}

.bmc-auth-notice--success {
    background: rgba(0, 219, 255, 0.13);
    border: 1px solid rgba(0, 219, 255, 0.34);
    color: #9af6ff;
}

.bmc-auth-notice--error {
    background: rgba(216, 3, 213, 0.13);
    border: 1px solid rgba(216, 3, 213, 0.38);
    color: #ff9dfb;
}

.bmc-auth-wc-notices {
    width: 100%;
}

.bmc-auth-wc-notices .woocommerce-error,
.bmc-auth-wc-notices .woocommerce-message,
.bmc-auth-wc-notices .woocommerce-info {
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    list-style: none;
    margin: -10px 0 20px;
    padding: 13px 16px;
    text-align: center;
}

.bmc-auth-wc-notices .woocommerce-error {
    background: rgba(216, 3, 213, 0.13);
    border: 1px solid rgba(216, 3, 213, 0.38);
    color: #ff9dfb;
}

.bmc-auth-wc-notices .woocommerce-message,
.bmc-auth-wc-notices .woocommerce-info {
    background: rgba(0, 219, 255, 0.13);
    border: 1px solid rgba(0, 219, 255, 0.34);
    color: #9af6ff;
}

.bmc-auth-wc-notices .woocommerce-error::before,
.bmc-auth-wc-notices .woocommerce-message::before,
.bmc-auth-wc-notices .woocommerce-info::before {
    content: none;
}

.bmc-auth-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bmc-auth-step {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bmc-auth-step[hidden] {
    display: none;
}

.bmc-auth-step-back {
    align-self: flex-start;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.62);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 14px;
    padding: 0;
}

.bmc-auth-step-back[hidden] {
    display: none;
}

.bmc-auth-step-back:hover,
.bmc-auth-step-back:focus {
    color: #ffffff;
}

.bmc-auth-form label {
    color: #FFFFFF73;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    margin: 0;
}

.bmc-auth-field {
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 11px;
    display: flex;
    gap: 10px;
    min-height: 50px;
    padding: 0 16px;
}

.bmc-auth-field:focus-within {
    border-color: rgba(216, 3, 213, 0.72);
    box-shadow: 0 0 0 3px rgba(216, 3, 213, 0.12);
}

.bmc-auth-field input {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: #ffffff !important;
    flex: 1;
    font-size: 14px;
    min-width: 0;
    outline: 0;
    padding: 0 !important;
}

.bmc-auth-field input::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.bmc-auth-field input::-ms-reveal,
.bmc-auth-field input::-ms-clear {
    display: none;
}

.bmc-auth-field__icon {
    color: rgba(255, 255, 255, 0.32);
    display: inline-flex;
    height: 17px;
    width: 17px;
}

.bmc-auth-field__icon svg {
    fill: currentColor;
    height: 100%;
    width: 100%;
}

.bmc-auth-password-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.34);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    height: 26px;
    justify-content: center;
    padding: 0;
    transition: color 0.2s ease;
    width: 26px;
}

.bmc-auth-password-toggle:hover,
.bmc-auth-password-toggle:focus {
    color: rgba(255, 255, 255, 0.78);
}

.bmc-auth-password-toggle svg {
    fill: currentColor;
    height: 20px;
    width: 20px;
}

.bmc-auth-password-toggle__visible {
    display: none;
}

.bmc-auth-password-toggle.is-visible .bmc-auth-password-toggle__hidden {
    display: none;
}

.bmc-auth-password-toggle.is-visible .bmc-auth-password-toggle__visible {
    display: inline-flex;
}

.bmc-auth-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
}

.bmc-auth-grid > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bmc-auth-row {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin: 4px 0 8px;
}

.bmc-auth-check {
    align-items: center;
    color: rgba(255, 255, 255, 0.62);
    cursor: pointer;
    display: inline-flex;
    gap: 6px;
    line-height: 1.45;
}

.bmc-auth-check input {
    accent-color: #d803d5;
    flex: 0 0 auto;
    height: 16px;
    width: 16px;
}

.bmc-auth-check a {
    color: #02dcf7;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bmc-auth-submit {
    align-items: center;
    background: linear-gradient(90deg, #d200cf 0%, #02dcf7 100%);
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(210, 0, 207, 0.3);
    color: #ffffff;
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    gap: 9px;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.bmc-auth-submit:hover,
.bmc-auth-submit:focus {
    filter: brightness(1.08);
    color: #ffffff;
    text-decoration: none;
    transform: scale(1.02);
}

.bmc-auth-empty {
    align-items: center;
    color: rgba(255, 255, 255, 0.62);
    display: flex;
    flex-direction: column;
    gap: 18px;
    line-height: 1.55;
    text-align: center;
}

.bmc-auth-empty p {
    margin: 0;
}

.bmc-auth-privacy {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.55;
    margin: 2px 0 6px;
}

.bmc-auth-privacy a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
}

.bmc-auth-footnote {
    color: rgba(255, 255, 255, 0.43);
    font-size: 12px;
    margin: 18px 0 0;
    text-align: center;
}

.bmc-auth-footnote::before {
    content: "";
    color: #fbeb7b;
    font-size: 10px;
    margin-right: 5px;
}

.bmc-auth-logged-in {
    align-items: center;
    background: #050505;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    min-height: 360px;
    padding: 48px 20px;
    text-align: center;
}

.woocommerce .bmc-auth-card form.login,
.woocommerce .bmc-auth-card form.register {
    border: 0;
    margin: 0;
    padding: 0;
}

.bmc-contact-inner {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    width: 100%;
}

.bmc-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bmc-contact-subjects {
    border: 0;
    margin: 0;
    padding: 0;
}

.bmc-contact-subjects legend,
.bmc-contact-field label {
    color: #FFFFFF73;
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 9px;
}

.bmc-contact-subjects__options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bmc-contact-subject {
    cursor: pointer;
    display: inline-flex;
    position: relative;
}

.bmc-contact-subject input {
    appearance: none;
    height: 0;
    margin: 0;
    opacity: 0;
    position: absolute;
    width: 0;
}

.bmc-contact-subject span {
    align-items: center;
    background: #FFFFFF0F;
    border: 1px solid #FFFFFF1A;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    min-height: 30px;
    padding: 5px 14px;
    transition: all 0.25s ease;
}

.bmc-contact-subject:hover span,
.bmc-contact-subject input:checked + span,
.bmc-contact-subject.is-selected span {
    background: linear-gradient(135deg, #d200cf 0%, #02dcf7 100%);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(210, 0, 207, 0.3);
    color: #ffffff;
}

.bmc-contact-subject input:focus-visible + span {
    box-shadow: 0 0 0 3px rgba(2, 220, 247, 0.18), 0 4px 12px rgba(210, 0, 207, 0.3);
}

.bmc-contact-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr 1fr;
}

.bmc-contact-field input,
.bmc-contact-field textarea {
    background: #FFFFFF0D;
    border: 0.8px solid #FFFFFF1A;
    border-radius: 13px;
    box-shadow: none;
    color: #ffffff;
    font-size: 14px;
    outline: 0;
    padding: 0 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.bmc-contact-field input {
    min-height: 45.6px;
}

.bmc-contact-field textarea {
    padding: 12px 16px;
    resize: vertical;
}

.bmc-contact-field input::placeholder,
.bmc-contact-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.24);
}

.bmc-contact-field input:focus,
.bmc-contact-field textarea:focus {
    border-color: rgba(216, 3, 213, 0.72);
    box-shadow: 0 0 0 3px rgba(216, 3, 213, 0.12);
}

.bmc-contact-company {
    display: none;
}

.bmc-contact-privacy {
    color: #FFFFFF4D;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.bmc-contact-privacy a {
    color: #02dcf7 !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
}

.bmc-contact-submit {
    align-items: center;
    background: linear-gradient(139.28deg, #D200CF 27.1%, #02DCF7 140.81%);
    border: 0;
    border-radius: 16px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 800;
    gap: 7px;
    justify-content: center;
    min-height: 56px;
    padding: 14px 204px;
    transition: filter 0.25s ease, transform 0.25s ease;
    width: 100%;
}

.bmc-contact-submit:hover,
.bmc-contact-submit:focus {
    filter: brightness(1.08);
    transform: scale(1.01);
}

.bmc-contact-notice {
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 18px;
    padding: 13px 16px;
    text-align: center;
}

.bmc-contact-notice--success {
    background: rgba(0, 219, 255, 0.13);
    border: 1px solid rgba(0, 219, 255, 0.34);
    color: #9af6ff;
}

.bmc-contact-notice--error {
    background: rgba(216, 3, 213, 0.13);
    border: 1px solid rgba(216, 3, 213, 0.38);
    color: #ff9dfb;
}

@media (max-width: 640px) {
    .bmc-auth-page {
        padding: 25px 16px 0px;
    }

    .bmc-auth-card {
        border-radius: 16px;
        padding: 22px;
    }

    .bmc-auth-grid {
        grid-template-columns: 1fr;
    }

    .bmc-auth-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .bmc-auth-title {
        font-size: 25px;
    }

    .bmc-contact-grid {
        grid-template-columns: 1fr;
    }

    .bmc-contact-submit {
        padding-left: 22px;
        padding-right: 22px;
    }
}

.woocommerce-account .woocommerce {
    color: #ffffff;
    font-family: "Inter", sans-serif;
}

.bmc-account {
    align-items: flex-start;
    display: grid;
    gap: 24px;
    grid-template-columns: 260px minmax(0, 1fr);
    margin: 24px auto 0;
    max-width: 1248px;
    padding: 0 20px 40px;
    width: 100%;
}

.bmc-account-nav {
    background: rgba(255, 255, 255, 0.03);
    border: 0.8px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    float: none !important;
    min-height: 428px;
    padding: 13px;
    width: 100% !important;
}

.bmc-account-nav__profile {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 12px;
    margin: 0 0 8px;
    min-height: 72px;
    padding: 11px 12px 16px;
}

.bmc-account-nav__avatar {
    align-items: center;
    background: linear-gradient(135deg, #d200cf 0%, #02dcf7 100%);
    border-radius: 12px;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 40px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    height: 40px;
    justify-content: center;
    line-height: 20px;
    width: 40px;
}

.bmc-account-nav__identity {
    display: grid;
    gap: 0;
    min-width: 0;
}

.bmc-account-nav__identity strong,
.bmc-account-nav__identity span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bmc-account-nav__identity strong {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 20px;
}

.bmc-account-nav__identity span {
    color: rgba(255, 255, 255, 0.35);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 16px;
}

.bmc-account-nav__list {
    display: grid;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bmc-account-nav__list li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bmc-account-nav__list a,
.bmc-account-nav__list button {
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer;
    display: flex;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    gap: 12px;
    letter-spacing: 0;
    line-height: 20px;
    min-height: 44px;
    padding: 12px 16px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    width: 100%;
}

.bmc-account-nav__list a:hover,
.bmc-account-nav__list a:focus,
.bmc-account-nav__list button:hover,
.bmc-account-nav__list button:focus {
    background: rgba(255, 255, 255, 0.045);
    color: #ffffff !important;
    outline: none;
}

.bmc-account-nav__list .is-active a {
    background: linear-gradient(105deg, rgba(210, 0, 207, 0.2) 0%, rgba(2, 220, 247, 0.15) 100%);
    border-color: rgba(210, 0, 207, 0.25);
    color: #ffffff !important;
    font-weight: 600;
}

.bmc-account-nav__item--logout {
    border-top: 1px solid #FFFFFF0F;
    margin-top: 8px !important;
    padding-top: 8px !important;
}

.bmc-account-nav__logout-form {
    margin: 0;
}

.bmc-account-nav__item--logout a,
.bmc-account-nav__item--logout button {
    color: rgba(255, 68, 68, 0.7) !important;
}

.bmc-account-nav__icon {
    background-color: currentColor;
    flex: 0 0 16px;
    height: 16px;
    -webkit-mask: var(--bmc-account-icon) center / contain no-repeat;
    mask: var(--bmc-account-icon) center / contain no-repeat;
    width: 16px;
}

.bmc-account-nav__list .is-active .bmc-account-nav__icon {
    color: #02dcf7;
}

.woocommerce-MyAccount-content.bmc-account__content {
    float: none !important;
    min-width: 0;
    width: 100% !important;
}

.bmc-account-dashboard {
    display: grid;
    gap: 24px;
}

.bmc-account-stats {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bmc-account-stat,
.bmc-account-panel,
.bmc-account-win {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.bmc-account-stat {
    align-items: center;
    border-radius: 18px;
    display: grid;
    justify-items: center;
    min-height: 110px;
    padding: 16px 17px;
    row-gap: 3px;
    text-align: center;
}

.bmc-account-stat__icon {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 0;
}

.bmc-account-stat strong,
.bmc-account-stat strong * {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 28px;
}

.bmc-account-stat > span:last-child {
    color: #ffffff59;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 16px;
    margin-top: 0;
}

.bmc-account-panel {
    border-radius: 18px;
    overflow: hidden;
}

.bmc-account-panel__header {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    min-height: 54px;
    padding: 16px 25px 16px 24px;
}

.bmc-account-panel__header h2 {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 20px;
    margin: 0;
}

.bmc-account-panel__header a {
    align-items: center;
    color: #02dcf7 !important;
    display: inline-flex;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    gap: 6px;
    letter-spacing: 0;
    line-height: 16px;
    text-decoration: none;
    white-space: nowrap;
}

.bmc-account-competition-list {
    display: grid;
}

.bmc-account-competition {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    color: #ffffff;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    min-height: 72px;
    padding: 16px 25px 16px 24px;
    text-decoration: none;
}

.bmc-account-competition:last-child {
    border-bottom: 0;
}

.bmc-account-competition:hover,
.bmc-account-competition:focus {
    background: rgba(255, 255, 255, 0.035);
    color: #ffffff;
    outline: none;
}

.bmc-account-competition strong,
.bmc-account-competition small {
    display: block;
}

.bmc-account-competition strong {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 20px;
}

.bmc-account-competition small {
    color: rgba(255, 255, 255, 0.38);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 16px;
    margin-top: 2px;
}

.bmc-account-competition em {
    border-radius: 999px;
    color: #ffffff;
    flex: 0 0 auto;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 16px;
    padding: 4px 12px;
}

.bmc-account-competition em.is-active {
    background: rgba(2, 220, 247, 0.18);
    color: #02dcf7;
}

.bmc-account-competition em.is-ended {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.bmc-account-empty {
    display: grid;
    gap: 8px;
    padding: 30px 25px 31px 24px;
}

.bmc-account-empty strong {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 20px;
}

.bmc-account-empty span {
    color: rgba(255, 255, 255, 0.45);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 16px;
}

.bmc-account-orders {
    display: grid;
    gap: 16px;
}

.bmc-account-orders > h2 {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 20px;
    margin: 0;
}

.bmc-account-orders__panel {
    background: #111111;
    border: 0.8px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: auto hidden;
}

.bmc-account-orders__table {
    display: grid;
    min-width: 760px;
}

.bmc-account-orders__head,
.bmc-account-orders__row {
    align-items: center;
    display: grid;
    grid-template-columns: 72px minmax(260px, 1fr) 110px 130px 120px;
}

.bmc-account-orders__head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 42px;
    padding: 0 20px;
}

.bmc-account-orders__head span {
    color: rgba(255, 255, 255, 0.3);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    line-height: 16px;
    text-transform: uppercase;
}

.bmc-account-orders__row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #ffffff !important;
    min-height: 67px;
    padding: 0 20px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.bmc-account-orders__row:last-child {
    border-bottom: 0;
}

.bmc-account-orders__row:hover,
.bmc-account-orders__row:focus {
    background: rgba(255, 255, 255, 0.035);
    outline: none;
}

.bmc-account-orders__number {
    color: #02dcf7;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
}

.bmc-account-orders__competition {
    display: grid;
    gap: 0;
}

.bmc-account-orders__competition strong,
.bmc-account-orders__total {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 20px;
}

.bmc-account-orders__competition small,
.bmc-account-orders__tickets {
    color: rgba(255, 255, 255, 0.5);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 16px;
}

.bmc-account-orders__tickets,
.bmc-account-orders__total,
.bmc-account-orders__status {
    justify-self: center;
}

.bmc-account-orders__status {
    justify-self: end;
}

.bmc-account-orders__status em {
    background: rgba(34, 197, 94, 0.16);
    border-radius: 999px;
    color: #22e071;
    display: inline-flex;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    padding: 4px 10px;
}

.bmc-account-orders__status em:not(.is-confirmed) {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.62);
}

.bmc-account-orders__empty {
    display: grid;
    gap: 6px;
    min-height: 132px;
    padding: 34px 20px;
}

.bmc-account-orders__empty strong {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.bmc-account-orders__empty span {
    color: rgba(255, 255, 255, 0.52);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
}

.bmc-account-competitions {
    display: grid;
    gap: 16px;
}

.bmc-account-competitions > h2 {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 20px;
    margin: 0;
}

.bmc-account-competitions__list {
    display: grid;
    gap: 16px;
}

.bmc-account-competition-card {
    background: #111111;
    border: 0.8px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    color: #ffffff !important;
    display: grid;
    gap: 16px;
    min-height: 112px;
    padding: 19px 20px 20px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.bmc-account-competition-card:hover,
.bmc-account-competition-card:focus {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.16);
    outline: none;
}

.bmc-account-competition-card__header {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.bmc-account-competition-card__header strong {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 20px;
}

.bmc-account-competition-card__header em {
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 auto;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    padding: 4px 10px;
}

.bmc-account-competition-card__header em.is-active {
    background: rgba(2, 220, 247, 0.16);
    color: #02dcf7;
}

.bmc-account-competition-card__header em.is-ended {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.bmc-account-competition-card__header em.is-won {
    background: rgba(210, 0, 207, 0.24);
    color: #ff4ff6;
}

.bmc-account-competition-card__stats {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
}

.bmc-account-competition-card__stats div {
    display: grid;
    gap: 2px;
    margin: 0;
}

.bmc-account-competition-card__stats dt {
    color: rgba(255, 255, 255, 0.32);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 16px;
}

.bmc-account-competition-card__stats dd {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 20px;
    margin: 0;
}

.bmc-account-competitions__empty {
    background: #111111;
    border: 0.8px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    display: grid;
    gap: 6px;
    min-height: 112px;
    padding: 30px 20px;
}

.bmc-account-competitions__empty strong {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.bmc-account-competitions__empty span {
    color: rgba(255, 255, 255, 0.52);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
}

.bmc-account-win {
    align-items: center;
    background: rgba(48, 0, 45, 0.82);
    border-color: rgba(216, 3, 213, 0.42);
    border-radius: 18px;
    display: flex;
    gap: 18px;
    padding: 20px 22px;
}

.bmc-account-win > span {
    font-size: 28px;
    line-height: 1;
}

.bmc-account-win strong {
    color: #ffffff;
    display: block;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
}

.bmc-account-win p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    line-height: 1.45;
    margin: 5px 0 0;
}

.bmc-account__content .woocommerce-info,
.bmc-account__content .woocommerce-message,
.bmc-account__content .woocommerce-error {
    background: #151515;
    border: 1px solid rgba(2, 220, 247, 0.28);
    border-radius: 12px;
    color: #ffffff;
}

.bmc-account__content table.shop_table,
.bmc-account__content .lty-frontend-table,
.bmc-account__content .woo-wallet-transactions-table {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-collapse: separate;
    border-radius: 16px;
    border-spacing: 0;
    color: #ffffff;
    overflow: hidden;
    width: 100%;
}

.bmc-account__content table.shop_table th,
.bmc-account__content table.shop_table td,
.bmc-account__content .lty-frontend-table th,
.bmc-account__content .lty-frontend-table td,
.bmc-account__content .woo-wallet-transactions-table th,
.bmc-account__content .woo-wallet-transactions-table td {
    border-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 14px 16px;
}

.bmc-account__content a {
    color: #02dcf7;
}

.bmc-account__content h2,
.bmc-account__content h3,
.bmc-account__content legend {
    color: #ffffff;
    font-family: "Inter", sans-serif;
}

.bmc-account__content form {
    color: rgba(255, 255, 255, 0.72);
}

.bmc-account__content label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 700;
}

.bmc-account__content input.input-text,
.bmc-account__content input[type="text"],
.bmc-account__content input[type="email"],
.bmc-account__content input[type="password"],
.bmc-account__content input[type="tel"],
.bmc-account__content input[type="number"],
.bmc-account__content textarea,
.bmc-account__content select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    color: #ffffff;
    min-height: 44px;
    padding: 10px 13px;
}

.bmc-account__content input:focus,
.bmc-account__content textarea:focus,
.bmc-account__content select:focus {
    border-color: rgba(2, 220, 247, 0.55);
    box-shadow: 0 0 0 3px rgba(2, 220, 247, 0.12);
    outline: none;
}

.bmc-account__content .button,
.bmc-account__content button,
.bmc-account__content input[type="submit"] {
    background: linear-gradient(90deg, #d803d5 0%, #02dcf7 130%);
    border: 0;
    border-radius: 11px;
    color: #ffffff;
    font-weight: 800;
    padding: 11px 18px;
}

.bmc-address {
    display: grid;
    gap: 20px;
}

.bmc-address > h2 {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 24px;
    margin: 0;
}

.bmc-address-form {
    margin: 0;
}

.bmc-address-card {
    background: #111111;
    border: 0.8px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 24px;
}

.bmc-address-grid {
    display: grid;
    gap: 0 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bmc-address-card .form-row {
    float: none;
    margin: 0 0 16px;
    padding: 0;
    width: auto;
}

.bmc-address-card .form-row-first,
.bmc-address-card .form-row-last {
    float: none;
    width: auto;
}

.bmc-address-field--wide {
    grid-column: 1 / -1;
}

.bmc-address-label,
.bmc-address-card label {
    color: rgba(255, 255, 255, 0.4) !important;
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 16px;
    margin: 0 0 6px;
}

.bmc-address-card .woocommerce-input-wrapper {
    display: block;
    width: 100%;
}

.bmc-account__content .bmc-address-card input.input-text,
.bmc-account__content .bmc-address-card input[type="text"],
.bmc-account__content .bmc-address-card input[type="email"],
.bmc-account__content .bmc-address-card input[type="tel"],
.bmc-account__content .bmc-address-card select {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 0.8px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    height: 46px;
    line-height: 46px;
    min-height: 46px;
    padding: 0 16px;
    width: 100%;
}

.bmc-account__content .bmc-address-card input::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.bmc-account__content .bmc-address-card .select2-container .select2-selection--single {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 0.8px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    display: flex;
    height: 46px;
}

.bmc-account__content .bmc-address-card .select2-container .select2-selection__rendered {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 46px;
    padding-left: 16px;
    padding-right: 40px;
}

.bmc-account__content .bmc-address-card .select2-container .select2-selection__arrow {
    height: 46px;
    right: 10px;
}

.bmc-address-actions {
    margin: 15px 0 0;
}

.bmc-account__content .bmc-address-actions .bmc-address-submit,
.bmc-account__content .bmc-address-actions button.bmc-address-submit.button {
    background: linear-gradient(135deg, #d200cf 0%, #02dcf7 100%) !important;
    border: 0 !important;
    border-radius: 13px !important;
    box-shadow: 0 6px 20px rgba(210, 0, 207, 0.25) !important;
    color: #ffffff !important;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    height: 44px;
    line-height: 20px;
    min-width: 132px;
    min-height: 44px;
    padding: 12px 20px !important;
}

.bmc-wallet {
    display: grid;
    gap: 18px;
}

.bmc-wallet > h2 {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 20px;
    margin: 0;
}

.bmc-wallet-hero {
    background:
        radial-gradient(circle at 96% 45%, rgba(2, 220, 247, 0.18), transparent 22%),
        linear-gradient(105deg, rgba(48, 0, 45, 0.88) 0%, rgba(19, 17, 37, 0.94) 48%, rgba(2, 50, 57, 0.78) 100%);
    border: 0.8px solid #D200CF4D;
    border-radius: 18px;
    min-height: 137px;
    padding: 18px 20px;
}

.bmc-wallet-hero > span {
    color: rgba(255, 255, 255, 0.42);
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 14px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.bmc-wallet-hero > strong {
    color: #ffffff;
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 38px;
}

.bmc-wallet-hero > strong * {
    color: inherit;
    display: inline;
    font: inherit;
}

.bmc-wallet-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.bmc-wallet-button {
    align-items: center;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    line-height: 16px;
    min-height: 34px;
    min-width: 161px;
    padding: 9px 16px;
    text-decoration: none;
}

.bmc-account__content .bmc-wallet-button--primary {
    background: linear-gradient(135deg, #d200cf 0%, #02dcf7 100%);
    color: #ffffff !important;
}

.bmc-account__content .bmc-wallet-button--secondary {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.82) !important;
}

.bmc-wallet-history {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    overflow: hidden;
}

.bmc-wallet-history h3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 16px;
    margin: 0;
    padding: 17px 20px;
}

.bmc-wallet-transactions {
    display: grid;
}

.bmc-wallet-transaction {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    display: grid;
    gap: 11px;
    grid-template-columns: 25px minmax(0, 1fr) auto;
    min-height: 57px;
    padding: 10px 20px;
}

.bmc-wallet-transaction:last-child {
    border-bottom: 0;
}

.bmc-wallet-transaction__icon {
    align-items: center;
    border-radius: 50%;
    color: #050505;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    height: 25px;
    justify-content: center;
    width: 25px;
}

.bmc-wallet-transaction__icon.is-credit {
    background: rgba(48, 215, 119, 0.2);
    color: #27e883;
}

.bmc-wallet-transaction__icon.is-debit {
    background: rgba(255, 68, 68, 0.16);
    color: #ff5f5f;
}

.bmc-wallet-transaction__details {
    display: grid;
    min-width: 0;
}

.bmc-wallet-transaction__details strong {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bmc-wallet-transaction__details small {
    color: rgba(255, 255, 255, 0.35);
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 14px;
}

.bmc-wallet-transaction em {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 16px;
}

.bmc-wallet-transaction em.is-credit {
    color: #27e883;
}

.bmc-wallet-transaction em.is-debit {
    color: #ff5f5f;
}

.bmc-wallet-empty {
    color: rgba(255, 255, 255, 0.42);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 18px;
    padding: 28px 20px;
    text-align: center;
}

.bmc-account-details {
    display: grid;
    gap: 18px;
}

.bmc-account-details > h2 {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 20px;
    margin: 0;
}

.bmc-account-details-card,
.bmc-account-danger {
    background: #111111;
    border: 0.8px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    margin: 3px 0;
    padding: 24px;
}

.bmc-account-details-card h3,
.bmc-account-danger h3 {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 16px;
    margin: 0 0 16px;
}

.bmc-account-details-grid {
    display: grid;
    gap: 0 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bmc-account-password-grid {
    display: grid;
    gap: 0px;
}

.bmc-account-details-field {
    margin: 0 0 16px;
    padding: 0;
}

.bmc-account-details-field--wide {
    grid-column: 1 / -1;
}

.bmc-account-details-field label {
    color: rgba(255, 255, 255, 0.4) !important;
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 16px;
    margin: 0 0 6px;
}

.bmc-account__content .bmc-account-details-card input[type="text"],
.bmc-account__content .bmc-account-details-card input[type="email"],
.bmc-account__content .bmc-account-details-card input[type="tel"],
.bmc-account__content .bmc-account-details-card input[type="password"],
.bmc-account__content .bmc-account-details-card select {
    background: rgba(255, 255, 255, 0.05);
    border: 0.8px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    height: 46px;
    line-height: 46px;
    min-height: 46px;
    padding: 0 16px;
    width: 100%;
}

.bmc-account__content .bmc-account-details-card select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23808080' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    line-height: normal;
    padding-right: 42px;
}

.bmc-account__content .bmc-account-details-card select option {
    background: #1f1f1f;
    color: #ffffff;
}

.bmc-account__content .bmc-account-details-card input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.bmc-account-details-actions {
    margin: 0;
}

.bmc-account__content .bmc-account-details-submit,
.bmc-account__content button.bmc-account-details-submit.button {
    background: linear-gradient(135deg, #d200cf 0%, #02dcf7 100%) !important;
    border: 0 !important;
    border-radius: 13px !important;
    box-shadow: 0 6px 20px rgba(210, 0, 207, 0.25) !important;
    color: #ffffff !important;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    height: 44px;
    line-height: 16px;
    min-height: 44px;
    min-width: 140px;
    padding: 12px 18px !important;
}

.bmc-account__content button.bmc-account-details-submit[value="Update Password"] {
    min-width: 158px;
}

.bmc-account-danger {
    background: #FF44440A;
    border-color: #FF444433;
}

.bmc-account-danger h3 {
    color: #ff5f5f;
}

.bmc-account-danger p {
    color: rgba(255, 255, 255, 0.38);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 16px;
    margin: 0 0 14px;
}

.bmc-account__content button.bmc-account-delete-button,
.bmc-account-delete-button {
    background: #FF44441F !important;
    border: 0.8px solid #FF444440 !important;
    border-radius: 12px !important;
    color: #ff6b6b !important;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    min-height: 42px;
    min-width: 137px;
    padding: 11px 16px !important;
}

.bmc-account-danger__status {
    color: rgba(255, 255, 255, 0.55) !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
}

.bmc-account-modal-open {
    overflow: hidden;
}

.bmc-account-modal[hidden] {
    display: none;
}

.bmc-account-modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 20px;
    position: fixed;
    z-index: 9999;
}

.bmc-account-modal__backdrop {
    background: rgba(0, 0, 0, 0.72);
    inset: 0;
    position: absolute;
}

.bmc-account-modal__dialog {
    background: #111111;
    border: 0.8px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    max-width: 440px;
    padding: 24px;
    position: relative;
    width: min(100%, 440px);
}

.bmc-account-modal__dialog h2 {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 28px;
    margin: 0 0 8px;
}

.bmc-account-modal__dialog p {
    color: rgba(255, 255, 255, 0.55);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 20px;
    margin: 0 0 18px;
}

.bmc-account-modal__dialog label {
    color: rgba(255, 255, 255, 0.45);
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 16px;
    margin: 0 0 6px;
}

.bmc-account-modal__dialog input[type="password"] {
    background: rgba(255, 255, 255, 0.05);
    border: 0.8px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    height: 46px;
    line-height: 46px;
    margin: 0 0 18px;
    min-height: 46px;
    padding: 0 16px;
    width: 100%;
}

.bmc-account-modal__actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.bmc-account-modal__button {
    border-radius: 13px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    min-height: 38px;
    padding: 10px 16px;
}

.bmc-account-modal__button--ghost {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
}

.bmc-account-modal__button--danger {
    background: rgba(255, 68, 68, 0.16);
    border: 1px solid rgba(255, 68, 68, 0.45);
    color: #ff6b6b;
}

.bmc-account__content .woo-wallet-my-wallet-container,
.bmc-account__content .lty-myaccount-lottery-wrapper {
    display: grid;
    gap: 18px;
}

.bmc-account__content .woo-wallet-header,
.bmc-account__content .woo-wallet-top-section,
.bmc-account__content .woo-wallet-content-area,
.bmc-account__content .lty-myaccount-lottery-wrapper > h2,
.bmc-account__content .lty-myaccount-lottery-contents {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 17px;
    padding: 20px;
}

.bmc-account__content .woo-wallet-header h2,
.bmc-account__content .woo-wallet-header p {
    margin-left: 0;
    margin-right: 0;
}

.bmc-account__content .woo-wallet-header p {
    color: rgba(255, 255, 255, 0.48);
}

.bmc-account__content .woo-wallet-top-section {
    align-items: stretch;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(180px, 0.35fr) 1fr;
}

.bmc-account__content .woo-wallet-balance-card {
    background: linear-gradient(135deg, rgba(216, 3, 213, 0.22), rgba(2, 220, 247, 0.1));
    border: 1px solid rgba(216, 3, 213, 0.32);
    border-radius: 14px;
    padding: 18px;
}

.bmc-account__content .woo-wallet-balance-card h3,
.bmc-account__content .woo-wallet-price {
    margin: 0;
}

.bmc-account__content .woo-wallet-price {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    margin-top: 8px;
}

.bmc-account__content .woo-wallet-nav-tabs,
.bmc-account__content .lty-myaccount-lottery-navigation nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bmc-account__content .woo-wallet-nav-tab,
.bmc-account__content .lty-myaccount-lottery-navigation a {
    align-items: center;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 7px;
    min-height: 38px;
    padding: 9px 15px;
    text-decoration: none;
}

.bmc-account__content .woo-wallet-nav-tab.active,
.bmc-account__content .lty-myaccount-lottery-navigation a.lty-current {
    background: rgba(2, 220, 247, 0.16);
    border-color: rgba(2, 220, 247, 0.38);
    color: #02dcf7;
}

.bmc-account__content .lty-no-product-notice {
    color: rgba(255, 255, 255, 0.58);
    display: block;
    padding: 6px 0;
}

@media (max-width: 1024px) {
    .bmc-account {
        grid-template-columns: 1fr;
    }

    .bmc-account-nav {
        min-height: 0;
    }

    .bmc-account-nav__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bmc-account-nav__item--logout {
        border-top: 0;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .bmc-account-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bmc-account__content .woo-wallet-top-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bmc-account {
        gap: 18px;
        margin-top: 18px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .bmc-account-nav {
        border-radius: 16px;
        padding: 18px 10px;
    }

    .bmc-account-nav__list {
        grid-template-columns: 1fr;
    }

    .bmc-account-stats {
        gap: 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bmc-account-stat {
        min-height: 92px;
    }

    .bmc-account-panel__header,
    .bmc-account-competition {
        padding-left: 16px;
        padding-right: 16px;
    }

    .bmc-account-orders__panel {
        overflow: visible;
    }

    .bmc-account-orders__table {
        min-width: 0;
    }

    .bmc-account-orders__head {
        display: none;
    }

    .bmc-account-orders__row {
        align-items: flex-start;
        display: grid;
        gap: 8px;
        grid-template-columns: 1fr auto;
        min-height: 0;
        padding: 18px 16px;
    }

    .bmc-account-orders__number,
    .bmc-account-orders__competition,
    .bmc-account-orders__tickets,
    .bmc-account-orders__total,
    .bmc-account-orders__status {
        justify-self: auto;
    }

    .bmc-account-orders__number {
        grid-column: 1;
        grid-row: 1;
    }

    .bmc-account-orders__competition {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .bmc-account-orders__tickets {
        grid-column: 1;
        grid-row: 3;
    }

    .bmc-account-orders__tickets::after {
        content: " tickets";
    }

    .bmc-account-orders__total {
        grid-column: 2;
        grid-row: 1;
    }

    .bmc-account-orders__status {
        grid-column: 2;
        grid-row: 3;
        justify-self: end;
    }

    .bmc-account-competition-card {
        padding: 18px 16px;
    }

    .bmc-account-competition-card__header {
        align-items: flex-start;
    }

    .bmc-account-competition-card__stats {
        gap: 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bmc-account-competition {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .bmc-address-card {
        padding: 18px;
    }

    .bmc-address-grid {
        grid-template-columns: 1fr;
    }

    .bmc-wallet-hero {
        padding: 18px;
    }

    .bmc-wallet-hero__actions,
    .bmc-wallet-button {
        width: 100%;
    }

    .bmc-wallet-transaction {
        grid-template-columns: 25px minmax(0, 1fr);
    }

    .bmc-wallet-transaction em {
        grid-column: 2;
        justify-self: start;
    }

    .bmc-account-details-card,
    .bmc-account-danger {
        padding: 18px;
    }

    .bmc-account-details-grid {
        grid-template-columns: 1fr;
    }

    .bmc-account-modal {
        padding: 16px;
    }

    .bmc-account-modal__dialog {
        padding: 20px;
    }

    .bmc-account-modal__actions {
        flex-direction: column-reverse;
    }

    .bmc-account-modal__button {
        width: 100%;
    }
}
.bmc-competition-progress {
    padding: 25px 20px 20px;
    width: 100%;
}

.bmc-competition-progress__top {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 13px;
}

.bmc-competition-progress__sold {
    color: #D200CF;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.bmc-competition-progress__count {
    color: #FFFFFF80;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.bmc-competition-progress__track {
    background: #2b2b2b;
    border-radius: 999px;
    height: 13px;
    overflow: hidden;
    width: 100%;
}

.bmc-competition-progress__fill {
    background: linear-gradient(90deg, #d200cf 0%, #02dcf7 100%);
    border-radius: inherit;
    display: block;
    height: 100%;
}

.bmc-competition-close-info {
    align-items: flex-start;
    display: flex;
    gap: 14px;
    padding: 18px 19px;
    width: 100%;
}

.bmc-competition-close-info__icon {
    flex: 0 0 auto;
    height: 18px;
    margin-top: 1px;
    opacity: 0.72;
    width: 18px;
}

.bmc-competition-close-info__content {
    min-width: 0;
}

.bmc-competition-close-info__title {
    color: #FFFFFFE5;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 5px;
}

.bmc-competition-close-info__description {
    color: #FFFFFF66;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 4px;
}

.bmc-cart-button {
    align-items: center;
    background: #070707;
    border: 1px solid #D200CF;
    border-radius: 13px;
    color: #ffffff !important;
    display: inline-flex;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    line-height: 18px;
    min-height: 42px;
    min-width: 112px;
    padding: 12px 15px 12px 15px;
    position: relative;
    text-decoration: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.bmc-cart-button:hover,
.bmc-cart-button:focus-visible {
    border-color: #D301D0;
    box-shadow: 2px 2px 12px -4px rgba(211, 1, 208, 0.1), 6px 6px 24px -3px rgba(211, 1, 208, 0.32);
    color: #ffffff !important;
}

.bmc-cart-button__subtotal {
    align-items: center;
    display: inline-flex;
}

.bmc-cart-button__subtotal .woocommerce-Price-amount,
.bmc-cart-button__subtotal .woocommerce-Price-currencySymbol {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 18px;
}

.bmc-cart-button__icon {
    display: inline-flex;
    height: 22px;
    position: relative;
    width: 22px;
}

.bmc-cart-button__icon svg {
    display: block;
    fill: #ffffff;
    height: 22px;
    width: 22px;
}

.bmc-cart-button__count {
    align-items: center;
    background: #EF3444;
    border: 1px solid #ffffff;
    border-radius: 999px;
    color: #ffffff;
    display: flex;
    font-family: Inter, sans-serif;
    font-size: 9px;
    font-weight: 800;
    height: 16px;
    justify-content: center;
    line-height: 1;
    min-width: 16px;
    padding: 0 3px;
    position: absolute;
    right: -7px;
    top: -7px;
}

body.woocommerce-cart main#content,
body.woocommerce-cart .site-main,
body.woocommerce-cart .page-content,
body.woocommerce-cart .elementor[data-elementor-type="wp-page"],
body.woocommerce-cart .elementor[data-elementor-type="wp-page"] > .elementor-element,
body.woocommerce-cart .elementor[data-elementor-type="wp-page"] .e-con,
body.woocommerce-cart .elementor[data-elementor-type="wp-page"] .elementor-section,
body.woocommerce-cart .elementor[data-elementor-type="wp-page"] .elementor-column,
body.woocommerce-cart .elementor[data-elementor-type="wp-page"] .elementor-widget-wrap {
    background-color: #070707 !important;
}

body.woocommerce-cart footer.elementor-location-footer,
body.woocommerce-cart footer.elementor-location-footer > .elementor-element,
body.woocommerce-cart footer.elementor-location-footer .elementor-element.e-con,
body.woocommerce-cart footer.elementor-location-footer .e-con-inner,
body.woocommerce-cart footer.elementor-location-footer .elementor-section,
body.woocommerce-cart footer.elementor-location-footer .elementor-container,
body.woocommerce-cart footer.elementor-location-footer .elementor-column,
body.woocommerce-cart footer.elementor-location-footer .elementor-widget-wrap {
    background-color: #070707 !important;
    background-image: none !important;
}

body.woocommerce-cart footer.elementor-location-footer .elementor-background-overlay {
    background: transparent !important;
    opacity: 0 !important;
}

.woocommerce-cart .woocommerce {
    align-items: start;
    color: #ffffff;
    display: grid;
    font-family: Inter, sans-serif;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 430px);
}

.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error {
    grid-column: 1 / -1;
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals {
    min-width: 0;
    width: 100%;
}

.woocommerce-cart .woocommerce .cart-collaterals {
    clear: none;
    float: none;
    position: sticky;
    top: 24px;
    width: 100%;
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart_totals {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    overflow: hidden;
}

.woocommerce-cart table.shop_table {
    background: transparent;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
    color: #ffffff;
    margin: 0;
    width: 100%;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.09);
    color: #ffffff;
    font-family: Inter, sans-serif;
}

.woocommerce-cart table.shop_table th {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    padding: 20px 18px;
}

.woocommerce-cart table.shop_table td {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 500;
    padding: 24px 18px;
    vertical-align: middle;
}

.woocommerce-cart table.shop_table .product-thumbnail img {
    border-radius: 12px;
    height: 100px !important;
    object-fit: cover;
    width: 100px !important;
}

.woocommerce-cart .product-name a {
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.woocommerce-cart .product-name a:hover {
    color: #02DCF7 !important;
}

.woocommerce-cart .product-name .variation {
    display: none;
}

.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal,
.woocommerce-cart .product-price .woocommerce-Price-amount,
.woocommerce-cart .product-subtotal .woocommerce-Price-amount {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.woocommerce-cart .product-remove a.remove {
    align-items: center;
    background: #222222;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #ffffff !important;
    display: inline-flex;
    font-size: 22px;
    height: 34px;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
    width: 34px;
}

.woocommerce-cart .product-remove a.remove:hover {
    background: rgba(211, 1, 208, 0.22);
    border-color: #D301D0;
    box-shadow: 2px 2px 12px -4px rgba(211, 1, 208, 0.1), 6px 6px 24px -3px rgba(211, 1, 208, 0.32);
}

.woocommerce-cart .quantity.bmc-cart-quantity {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.woocommerce-cart .quantity .qty,
.woocommerce-cart input.qty {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    color: #ffffff;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 800;
    height: 42px;
    text-align: center;
    width: 64px;
}

.woocommerce-cart .quantity .qty::-webkit-outer-spin-button,
.woocommerce-cart .quantity .qty::-webkit-inner-spin-button,
.woocommerce-cart input.qty::-webkit-outer-spin-button,
.woocommerce-cart input.qty::-webkit-inner-spin-button {
    appearance: none;
    margin: 0;
}

.woocommerce-cart .quantity .qty,
.woocommerce-cart input.qty {
    appearance: textfield;
}

.woocommerce-cart .bmc-cart-quantity__button {
    align-items: center;
    background: #171717;
    border: 1px solid rgba(211, 1, 208, 0.72);
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 800;
    height: 42px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    transition: all 0.2s ease;
    width: 42px;
}

.woocommerce-cart .bmc-cart-quantity__button:hover,
.woocommerce-cart .bmc-cart-quantity__button:focus-visible {
    background: rgba(211, 1, 208, 0.22);
    border-color: #D301D0;
    box-shadow: 2px 2px 12px -4px rgba(211, 1, 208, 0.1), 6px 6px 24px -3px rgba(211, 1, 208, 0.32);
    outline: 0;
}

.woocommerce-cart .quantity .qty:focus,
.woocommerce-cart input.qty:focus {
    border-color: #D301D0;
    box-shadow: 0 0 0 3px rgba(211, 1, 208, 0.16);
    outline: 0;
}

.woocommerce-cart .actions {
    background: rgba(255, 255, 255, 0.02) !important;
    display: none;
    padding: 18px !important;
    text-align: right;
}

.woocommerce-cart .coupon {
    display: none !important;
}

.woocommerce-cart .coupon .input-text {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    color: #ffffff;
    font-family: Inter, sans-serif;
    min-height: 46px;
    min-width: 180px;
    padding: 0 14px;
}

.woocommerce-cart .coupon .input-text::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.woocommerce-cart button.button,
.woocommerce-cart .coupon .button,
.woocommerce-cart button[name="update_cart"] {
    background: #171717 !important;
    border: 1px solid rgba(211, 1, 208, 0.62) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-family: Inter, sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    min-height: 46px;
    padding: 12px 18px !important;
    transition: all 0.2s ease;
}

.woocommerce-cart button.button:hover,
.woocommerce-cart .coupon .button:hover,
.woocommerce-cart button[name="update_cart"]:hover {
    border-color: #D301D0 !important;
    box-shadow: 2px 2px 12px -4px rgba(211, 1, 208, 0.1), 6px 6px 24px -3px rgba(211, 1, 208, 0.32);
}

.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
    clear: none;
    float: none;
    padding: 30px;
    width: 100%;
}

.woocommerce-cart .cart_totals h2 {
    color: #ffffff !important;
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 28px;
    margin: 0 0 22px;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
    border-color: rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}

.woocommerce-cart .cart_totals table.shop_table th {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    font-weight: 800;
}

.woocommerce-cart .cart_totals table.shop_table td,
.woocommerce-cart .cart_totals table.shop_table td .woocommerce-Price-amount {
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    text-align: right;
}

.woocommerce-cart .wc-proceed-to-checkout {
    padding: 20px 0 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    align-items: center;
    background: linear-gradient(100deg, #D200CF 0%, #02DCF7 100%) !important;
    border: 0 !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 30px rgba(210, 0, 207, 0.3);
    color: #ffffff !important;
    display: flex !important;
    font-family: Inter, sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    justify-content: center;
    line-height: 20px !important;
    min-height: 58px;
    text-decoration: none !important;
    width: 100%;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), filter .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s cubic-bezier(.4, 0, .2, 1) !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    transform: scale(1.05) !important;
    filter: brightness(1.1);
    box-shadow:
        0 25px 20px rgba(210, 0, 207, 0.25),
        0 15px 15px rgba(210, 0, 207, 0.15) !important;
}

.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: #ffffff;
    font-family: Inter, sans-serif;
    margin: 0;
}

.woocommerce-cart .return-to-shop .button {
    background: linear-gradient(100deg, #D200CF 0%, #02DCF7 100%) !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    font-family: Inter, sans-serif !important;
    font-weight: 800 !important;
    min-height: 52px;
    padding: 16px 24px !important;
}

.bmc-entry {
    width: 100%;
}

.bmc-entry__limit {
    color: #FFFFFF73;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.bmc-entry__open {
    align-items: center;
    background: linear-gradient(100deg, #d200cf 0%, #02dcf7 100%);
    border: 0;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(210, 0, 207, 0.3);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 20px;
    min-height: 60px;
    padding: 18px;
    width: 100%;
}

.bmc-entry__limit {
    display: block;
    margin-top: 13px;
    text-align: center;
}

.bmc-entry-modal[hidden] {
    display: none;
}

.bmc-entry-modal {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    padding: 24px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.bmc-entry-modal__backdrop {
    background: rgba(0, 0, 0, 0.76);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.bmc-entry-modal__dialog {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 22px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    max-height: calc(100vh - 48px);
    max-width: 640px;
    overflow: auto;
    padding: 30px;
    position: relative;
    width: min(100%, 640px);
    z-index: 1;
}

.bmc-entry-modal__close {
    align-items: center;
    background: transparent;
    border: 0;
    color: #FFFFFFCC;
    cursor: pointer;
    display: flex;
    font-size: 28px;
    height: 34px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 18px;
    top: 16px;
    width: 34px;
}

.bmc-entry-modal__section + .bmc-entry-modal__section {
    margin-top: 24px;
}

.bmc-entry-modal__section h3 {
    color: #ffffff;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin: 0 44px 16px 0;
}

.bmc-entry-modal__section p {
    color: #FFFFFFC7;
    font-family: Inter, sans-serif;
    font-size: 15px;
    line-height: 22px;
    margin: 0 0 14px;
}

.bmc-entry-answers {
    display: grid;
    gap: 10px;
}

.bmc-entry-answer {
    background: #171717;
    border: 1px solid #333333;
    border-radius: 10px;
    color: #FFFFFFD1;
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    min-height: 50px;
    padding: 14px 16px;
    text-align: left;
}

.bmc-entry-answer:hover {
    border-color: #D301D0 !important;
    box-shadow: 2px 2px 12px -4px rgba(211, 1, 208, 0.10), 6px 6px 24px -3px rgba(211, 1, 208, 0.32) !important;
}

.bmc-entry-answer.is-selected {
    background: rgba(210, 0, 207, 0.16);
    border-color: #d200cf;
    color: #ffffff;
}

.bmc-entry-slider {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
}

.bmc-entry-slider button {
    align-items: center;
    background: #440b43;
    border: 1px solid #8d168a;
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-family: Inter, sans-serif;
    font-size: 22px;
    font-weight: 700;
    height: 38px;
    justify-content: center;
    padding: 0;
    width: 38px;
}

.bmc-entry-slider input[type="range"] {
    accent-color: #d200cf;
    width: 100%;
}

.bmc-entry-slider__value {
    background: #02DCF726;
    border-radius: 50px;
    border: 0.8px solid #02DCF766;
    color: #02DCF7;
    display: inline-flex;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 700;
    gap: 3px;
    line-height: 18px;
    margin: 12px 0 0 52px;
    padding: 7px 10px;
}

.bmc-entry-modal__submit {
    background: linear-gradient(100deg, #d200cf 0%, #02dcf7 100%);
    border: 0;
    border-radius: 13px;
    color: #ffffff;
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 22px;
    min-height: 50px;
    padding: 14px 18px;
    width: 100%;
}

.bmc-entry-modal__error {
    background: rgba(211, 1, 208, 0.12);
    border: 1px solid rgba(211, 1, 208, 0.55);
    border-radius: 12px;
    color: #ffffff;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    margin-top: 12px;
    padding: 12px 14px;
}

.bmc-entry-modal__total {
    color: #FFFFFF8F;
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 18px;
    margin-top: 12px;
    text-align: center;
}

.single-product .woocommerce-notices-wrapper {
    margin: 16px auto 0;
    max-width: 1320px;
    padding: 0 20px;
}

.single-product .woocommerce-notices-wrapper .woocommerce-error,
.single-product .woocommerce-notices-wrapper .woocommerce-message,
.single-product .woocommerce-notices-wrapper .woocommerce-info {
    background: #111111;
    border: 1px solid #333333 !important;
    border-radius: 16px;
    box-shadow: 2px 2px 12px -4px rgba(211, 1, 208, 0.10), 6px 6px 24px -3px rgba(211, 1, 208, 0.24);
    color: #FFFFFFD9;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    list-style: none outside;
    margin: 0;
    overflow: hidden;
    padding: 16px 18px 16px 52px;
    position: relative;
    width: auto;
}

.single-product .woocommerce-notices-wrapper .woocommerce-error {
    border-color: rgba(211, 1, 208, 0.55) !important;
}

.single-product .woocommerce-notices-wrapper .woocommerce-error::before,
.single-product .woocommerce-notices-wrapper .woocommerce-message::before,
.single-product .woocommerce-notices-wrapper .woocommerce-info::before {
    align-items: center;
    background: linear-gradient(100deg, #d200cf 0%, #02dcf7 100%);
    border-radius: 999px;
    color: #ffffff;
    content: "!";
    display: flex;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 800;
    height: 22px;
    justify-content: center;
    left: 18px;
    line-height: 1;
    position: absolute;
    top: 15px;
    width: 22px;
}

.single-product .woocommerce-notices-wrapper .woocommerce-error li,
.single-product .woocommerce-notices-wrapper .woocommerce-message li,
.single-product .woocommerce-notices-wrapper .woocommerce-info li {
    color: inherit;
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-product .woocommerce-notices-wrapper .button {
    background: transparent;
    border: 1px solid #D301D0;
    border-radius: 999px;
    color: #ffffff;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-left: 12px;
    padding: 6px 12px;
}

.bmc-shop-archive {
    background: #070707;
    color: #ffffff;
    font-family: Inter, sans-serif;
    min-height: 60vh;
    padding: 70px 20px 110px;
}

.bmc-shop-archive__inner {
    margin: 0 auto;
    max-width: 1320px;
    width: 100%;
}

.bmc-shop-archive__header {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 52px;
    text-align: center;
}

.bmc-shop-archive__header h1 {
    color: #CF27E7;
    font-family: Montserrat, sans-serif;
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
}

.bmc-shop-archive__header span {
    background: linear-gradient(90deg, transparent 0%, #D200CF 50%, transparent 100%);
    display: block;
    height: 2px;
    margin-top: 24px;
    width: min(310px, 70vw);
}

.bmc-raffles {
    width: 100%;
}

.bmc-raffles__tabs {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.bmc-raffles__tab {
    background: #111111;
    border: 1px solid #D200CF99;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    padding: 8px 13px;
}

.bmc-raffles__tab:hover,
.bmc-raffles__tab.is-active {
    background: #D200CF33;
    border-color: #D200CF;
    box-shadow: 2px 2px 12px -4px rgba(211, 1, 208, 0.10), 6px 6px 24px -3px rgba(211, 1, 208, 0.32);
}

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

.bmc-raffle-card {
    background: #050505;
    border: 2px solid #E007DD80;
    border-radius: 18px;
    overflow: hidden;
}

.bmc-raffle-card[hidden] {
    display: none;
}

.bmc-raffle-card__image {
    aspect-ratio: 1.34;
    display: block;
    overflow: hidden;
}

.bmc-raffle-card__image img,
.bmc-raffle-card__image video {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.24s ease;
    width: 100%;
}

.bmc-raffle-card:hover .bmc-raffle-card__image img,
.bmc-raffle-card:hover .bmc-raffle-card__image video {
    transform: scale(1.035);
}

.bmc-raffle-card__body {
    padding: 20px;
}

.bmc-raffle-card h3 {
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 22px;
    margin: 3px 0 35px;
}

.bmc-raffle-card h3 a {
    font-family: Montserrat, sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
}

.bmc-raffle-card__meta {
    align-items: center;
    color: #ffffff;
    display: flex;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    gap: 12px;
    justify-content: space-between;
    line-height: 20px;
    margin-bottom: 11px;
}

.bmc-raffle-card__meta-item {
    align-items: center;
    display: inline-flex;
    gap: 10px;
    min-width: 0;
}

.bmc-raffle-card__meta-item--tickets {
    justify-content: flex-end;
    text-align: right;
}

.bmc-raffle-card__meta-icon {
    align-items: center;
    background: #222222;
    border-radius: 12px;
    display: inline-flex;
    flex: 0 0 auto;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.bmc-raffle-card__meta-icon img {
    display: block;
    height: 24px;
    width: 24px;
}

.bmc-raffle-card__progress {
    background: #E007DD33;
    border-radius: 999px;
    height: 16px;
    overflow: hidden;
}

.bmc-raffle-card__progress span {
    background: linear-gradient(90deg, #D200CF 0%, #02DCF7 100%);
    border-radius: inherit;
    display: block;
    height: 100%;
}

.bmc-raffle-card__price {
    align-items: baseline;
    display: flex;
    gap: 10px;
    margin: 35px 0 13px;
}

.bmc-raffle-card__price span {
    color: #FFFFFFB8;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 20px;
}

.bmc-raffle-card__price .woocommerce-Price-amount{
    color: #ffffff !important;
    font-family: Inter, sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 26px;
}

.bmc-raffle-card__price .woocommerce-Price-currencySymbol{
    color: #ffffff !important;
    font-family: Inter, sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 26px;
}

.bmc-raffle-card__button {
    align-items: center;
    background: #E007DD;
    border-radius: 10px;
    color: #ffffff !important;
    display: flex;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
    line-height: 18px;
    min-height: 42px;
    text-decoration: none;
    width: 100%;
}

.bmc-raffle-card__button:hover {
        box-shadow: 2px 2px 12px -4px rgba(211, 1, 208, 0.10), 
                6px 6px 24px -3px rgba(211, 1, 208, 0.32) !important;         
    border-color: #D301D0 !important; 
}

.bmc-raffles__empty {
    background: #111111;
    border: 1px solid #D200CF80;
    border-radius: 16px;
    color: #FFFFFFCC;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    margin-top: 24px;
    padding: 26px;
    text-align: center;
}

@media (max-width: 767px) {
    .bmc-competition-progress {
        border-radius: 22px;
        padding: 22px 20px;
    }

    .bmc-competition-progress__top {
        margin-bottom: 11px;
    }
    .bmc-competition-progress__track {
        height: 10px;
    }

    .bmc-competition-close-info {
        border-radius: 18px;
        gap: 12px;
        padding: 16px;
    }

    .bmc-competition-close-info__title {
        font-size: 15px;
    }

    .bmc-competition-close-info__description{
        font-size: 13px;
    }

    .bmc-entry {
        width: 100%;
    }

    .bmc-entry-modal {
        padding: 14px;
    }

    .bmc-entry-modal__dialog {
        border-radius: 18px;
        padding: 24px 18px;
    }

    .bmc-entry-modal__section h3 {
        font-size: 18px;
    }

    .woocommerce-cart .woocommerce {
        display: block;
    }

    .woocommerce-cart .woocommerce .cart-collaterals {
        margin-top: 20px;
        position: static;
    }

    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart_totals {
        border-radius: 18px;
    }

    .woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
        padding: 22px 18px;
    }

    .woocommerce-cart table.shop_table td {
        padding: 16px 14px;
    }

    .woocommerce-cart table.shop_table_responsive tr td::before {
        color: rgba(255, 255, 255, 0.52);
        font-weight: 800;
    }

    .woocommerce-cart table.shop_table .product-thumbnail img {
        height: 80px !important;
        width: 80px !important;
    }

    .woocommerce-cart .coupon .input-text,
    .woocommerce-cart .coupon .button,
    .woocommerce-cart button[name="update_cart"] {
        width: 100% !important;
    }

    .woocommerce-cart .cart_totals table.shop_table td,
    .woocommerce-cart .cart_totals table.shop_table td .woocommerce-Price-amount {
        text-align: right;
    }

    .bmc-raffles__tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .bmc-raffles__tab {
        flex: 0 0 auto;
    }

    .bmc-raffles__grid {
        grid-template-columns: 1fr;
    }

    .bmc-raffle-card__meta {
        font-size: 14px;
        gap: 8px;
    }

    .bmc-raffle-card__meta-item {
        gap: 8px;
    }

    .bmc-raffle-card__meta-icon {
        border-radius: 10px;
        height: 36px;
        width: 36px;
    }

    .bmc-raffle-card__meta-icon img {
        height: 22px;
        width: 22px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .bmc-raffles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
