/* ============================================
   POPUP CSS - Extracted from main_style.css
   Contains all styles for popup components
   ============================================ */

/* ===== BASE POPUP STYLES ===== */
.register-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: flex-start;
    z-index: 9999;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow-y: hidden;
    align-items: center;
}

.register-popup.active {
    display: block;
}

.regsiter-popup-content {
    width: 600px;
    background: rgba(17, 17, 17, 0.7);
    border: solid 1px rgba(92, 98, 112, 1);
    background-image: url(../images/register-background.png);
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-mask-image: radial-gradient(circle, white 100%, transparent 100%);
    scrollbar-width: thin;
    scrollbar-color: #444 transparent;
}

.regsiter-popup-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.7);
    z-index: 1;
}

.regsiter-popup-content::-webkit-scrollbar {
    width: 6px;
}

.regsiter-popup-content::-webkit-scrollbar-track {
    background: transparent;
}

.regsiter-popup-content::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px;
}

.regsiter-popup-content::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.register-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    position: relative;
}

/* ===== COMPLETE STEPS POPUP ===== */
.comlete-steps-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    overflow-y: hidden;
    align-items: center;
}

.complate-steps-content {
    width: 70%;
    margin: 0 auto;
    background: rgba(17, 17, 17, 1);
    border: solid 1px rgba(92, 98, 112, 1);
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-mask-image: radial-gradient(circle, white 100%, transparent 100%);
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: #444 transparent;
}

.complate-steps-content::-webkit-scrollbar {
    width: 6px;
}

.complate-steps-content::-webkit-scrollbar-track {
    background: transparent;
}

.complate-steps-content::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px;
}

.complate-steps-content::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.complate-steps-content span.selected-text {
    color: rgba(143, 149, 163, 1);
}

/* ===== PROFILE TYPE POPUP ===== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    width: 90%;
    max-width: 1100px;
    background: rgba(17, 17, 17, 1);
    border-radius: 20px;
    padding: 30px 30px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    color: #fff;
    border: solid 1px rgba(92, 98, 112, 1);
    padding-bottom: 50px;
    margin: 0 auto;
}

.popup-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.popup-title span {
    color: #ff2a2a;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    background: none;
    border: none;
    z-index: 10;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    z-index: 999999;
    position: relative;
}

.logo-center {
    text-align: center;
}

.logo-center img {
    width: 195px;
}

.name-creat {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    padding-top: 16px;
}

.name-creat.ptjiro {
    padding-top: 0;
}

.information-text {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.3px;
    vertical-align: middle;
    color: rgba(199, 202, 209, 1);
    line-height: 20px;
    margin-top: 24px;
}

.information-text.fn16 {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    margin-bottom: 34px;
}

.information-text a {
    text-decoration: underline;
}

/* ===== FORM ELEMENTS ===== */
.email-section {
    margin-top: 24px;
}

.email-section input {
    width: 100%;
    border: solid 1px rgba(92, 98, 112, 1);
    border-radius: 8px;
    gap: 8px;
    background: transparent;
    padding: 16px;
    color: rgba(143, 149, 163, 1);
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
}

.input-box {
    position: relative;
    margin-bottom: 24px;
    overflow: visible !important;
}

.input-box.mb-0 {
    margin-bottom: 0;
}

.input-box label {
    position: absolute;
    top: -6px;
    left: 22px;
    background: #111;
    padding: 0 6px;
    font-size: 12px;
    color: #ccc;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
}

.input-box input::placeholder {
    color: rgba(143, 149, 163, 1);
}

.input-box input.invalid {
    border-color: #c63737;
    box-shadow: 0 0 0 2px rgba(198,55,55,0.05);
}

.input-box-complate-age input, .input-box-complate-age textarea {
    border: solid 1px rgba(92, 98, 112, 1);
    border-radius: 8px;
    background: transparent;
    width: 100%;
    padding: 16px;
    color: rgba(171, 176, 186, 1);
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
}

.input-box-complate-age.on-boding-top {
    margin-bottom: 8px;
}

.on-boding-top input::placeholder, .input-box-complate-age textarea::placeholder {
    color: rgba(92, 98, 112, 1)
}

.input-box-complate-age.heieight textarea {
    height: 128px;
}

.onboading-flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ===== EYE ICON (PASSWORD TOGGLE) ===== */
.eye-icon {
    position: absolute;
    right: 15px;
    top: 34%;
    transform: translateY(-34%);
    cursor: pointer;
}

.eye-icon img,
.eye-icon .slash img {
    width: 20px;
}

.eye-icon .slash {
    display: none;
}

.eye-icon.active .slash {
    display: inline-block;
}

.eye-icon.active .eye-open {
    display: none;
}

.eye-open {
    display: block;
}

/* ===== FIELD ERROR ===== */
.field-error {
    color: #c63737;
    font-size: 13px;
    display: block;
}

/* ===== ALERTS ===== */
.alert {
    padding: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-danger {
    color: #ff0000;
    background-color: #330000;
    color: white;
    text-align: center;
}

.alert-success {
    background-color: #144D22;
    color: white;
    text-align: center;
}

.alert-info {
    background-color: #0d4a6b;
    color: white;
    text-align: center;
}

/* ===== BUTTONS ===== */
.register-button {
    margin-top: 24px;
}

.register-button.mb-0 {
    margin-bottom: 0;
}

.register-buttpn {
    width: 100%;
    background-color: rgba(255, 0, 0, 1);
    border: solid 1px rgba(92, 98, 112, 0.2);
    padding: 12px;
    text-align: center;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    text-transform: capitalize;
    border-radius: 8px;
    margin: 24px 0;
    cursor: pointer;
    color: white;
}

.register-buttpn.mb-0 {
    margin-bottom: 0;
}

.register-buttpn.login-btn {
    margin-top: 0;
}

.allrady-login {
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 1px;
    text-align: center;
    vertical-align: middle;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    color: rgba(199, 202, 209, 1);
    text-decoration: none;
    margin-top: 16px;
}

.allrady-login a {
    text-decoration: underline;
    color: rgba(199, 202, 209, 1);
}

/* ===== CHECKBOX ===== */
.check-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 20px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
}

.check-box input {
    border: solid 1px rgba(255, 0, 0, 1);
    background: transparent;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox input:checked + span {
    border-color: #ff0055;
}

.custom-checkbox span {
    width: 21px;
    height: 16px;
    border: 2px solid rgba(255, 0, 0, 1);
    border-radius: 0;
    display: inline-block;
    position: relative;
    transition: 0.2s;
}

.custom-checkbox input:checked + span::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid rgba(255, 0, 0, 1);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ===== COMPLETE STEPS CONTENT ===== */
.compalte-heding {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0px;
}

.compalte-heding span {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0px;
    color: rgba(255, 0, 0, 1);
}

.step-content {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    color: rgba(171, 176, 186, 1);
    padding-top: 10px;
    padding-bottom: 30px;
    line-height: 25px;
}

.progress-container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
    color: #fff;
}

.progress-bar {
    width: 98%;
    height: 8px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 12px;
}

.progress-fill {
    height: 100%;
    background-color: rgba(255, 77, 77, 1);
    width: 0;
    transition: width 0.5s ease;
}

.question-count {
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 1);
}

.completion {
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0px;
}

.sent-heading {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
    margin-top: 24px;
    margin-bottom: 16px;
}

.mobile-no {
    color: rgba(171, 176, 186, 1);
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0px;
    vertical-align: middle;
    margin-bottom: 18px;
}

/* ===== LAYOUT ===== */
.disp-flex-com {
    display: flex;
    gap: 30px;
}

.left-compalete-content {
    position: relative;
    width: 100%;
}

.right-complate-content {
    width: 100%;
    float: right;
}

.right-complate-content img {
    float: right;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-area,
.location-input-wrapper {
    position: relative;
    z-index: 1;
}

.scroll-area::-webkit-scrollbar {
    width: 6px;
}

.scroll-area::-webkit-scrollbar-track {
    background: transparent !important;
    pointer-events: none !important;
}

.scroll-area::-webkit-scrollbar-thumb {
    background: #bbb;
}

/* ===== PREV/NEXT BUTTONS ===== */
.prev-next-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 50%;
}

.prev-next-button.onboading {
    width: 100%;
}

.prev-next-button a {
    background: rgba(255, 255, 255, 0.04);
    border: solid 1px rgba(255, 255, 255, 0.04);
    padding: 12px 32px;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    text-decoration: none;
}

.prev-next-button a.next {
    background: rgba(255, 0, 0, 1);
    border: solid 1px rgba(255, 255, 255, 0.04);
    padding: 12px 44px;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 1);
    border-radius: 8px;
}

.prev-next-button button {
    background: rgba(255, 255, 255, 0.04);
    border: solid 1px rgba(255, 255, 255, 0.04);
    padding: 12px 32px;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    cursor: pointer;
}

.prev-next-button button.next {
    background: rgba(255, 0, 0, 1);
    border: solid 1px rgba(255, 255, 255, 0.04);
    padding: 12px 44px;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    cursor: pointer;
}

.all-set-popup.prev-next-button {
    margin-top: -42px;
}

.all-set-img img {
    text-align: left;
    margin: 20px 0 20px 0;
}

/* ===== RADIO BUTTONS ===== */
.radio-button-div {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.radio-button-div .radio-card {
    width: calc(33.33% - 12px);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.06));
    border: 1px solid rgba(127, 191, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 6px 18px rgba(2, 6, 23, 0.6);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    color: rgba(171, 176, 186, 1);
    cursor: pointer;
}

.who-sections .radio-card {
    width: calc(50% - 12px);
    border: 1px solid rgba(69, 74, 84, 1);
}

.radio-button-div .radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-button-div .radio-mark {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 2px solid var(--muted);
    display: inline-grid;
    place-items: center;
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    transition: all 180ms ease;
    flex-shrink: 0;
    border: solid 3px rgba(171, 176, 186, 1);
}

.radio-button-div .radio-mark::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    transform: scale(0);
    transition: transform 160ms ease;
    box-shadow: 0 0 6px rgba(127,191,255,0.35);
}

.radio-button-div .radio-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--label-color);
    letter-spacing: 0.2px;
}

.radio-button-div .radio-card input[type="radio"]:checked + .radio-mark {
    border-color: var(--accent);
    box-shadow: 0 0 0 6px rgba(127,191,255,0.06);
    border: solid 3px rgba(255, 0, 0, 1);
}

.radio-button-div .radio-card input[type="radio"]:checked + .radio-mark::after {
    transform: scale(1);
}

.radio-button-div .radio-card input[type="radio"]:focus-visible + .radio-mark {
    outline: 3px solid rgba(127,191,255,0.16);
    outline-offset: 3px;
}

.radio-button-div .radio-card.small {
    padding: 12px 14px;
    gap: 12px;
    border-radius: 10px;
}

.radio-button-div .radio-card:hover {
    transform: translateY(-1px);
    transition: transform 140ms ease;
}

.flex-fifty .radio-card {
    width: calc(50% - 12px);
    border: solid 1px rgba(69, 74, 84, 1);
}

.flex-fifty .radio-mark {
    border-radius: 0;
    border: solid 1px rgba(143, 149, 163, 1);
    width: 17px;
    height: 17px;
}

.flex-fifty .radio-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.flex-fifty .radio-card input[type="checkbox"]:checked + .radio-mark {
    border-color: var(--accent);
    box-shadow: 0 0 0 6px rgba(127, 191, 255, 0.06);
    border: solid 1px rgba(255, 0, 0, 1);
}

.flex-fifty .radio-card input[type="checkbox"]:checked + .radio-mark::after {
    content: "\2713";
    color: rgba(255, 0, 0, 1);
    font-size: 18px;
    transform: scale(1);
}

.radio-in-fifty .radio-card {
    width: calc(50% - 12px);
}

/* ===== CUSTOM SELECT ===== */
.custom-select-container {
    width: 100%;
    position: relative;
    font-family: sans-serif;
}

.custom-select {
    background: #1b1b1d;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(92, 98, 112, 1);
    color: #ccc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.custom-select:hover {
    border-color: rgba(127, 191, 255, 0.4);
}

.custom-select-container .arrow {
    font-size: 18px;
    opacity: 0.6;
}

.selected-text {
    color: rgba(143, 149, 163, 1);
}

.regsiter-popup-content .selected-text {
    color: rgba(171, 176, 186, 1);
}

.regsiter-popup-content .custom-select-container {
    margin-bottom: 24px;
}

.regsiter-popup-content .custom-select {
    background: transparent;
}

.dropdown {
    background: #101012;
    border-radius: 14px;
    border: 1px solid rgba(127, 191, 255, 0.2);
    margin-top: 6px;
    padding: 12px;
    display: none;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.dropdown.show {
    display: block !important;
}

.custom-select-container .search-box {
    background: #1b1b1d;
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    position: relative;
    max-width: 100%;
}

.custom-select-container .search-box input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    color: #fff;
    font-size: 16px;
    padding: 0;
}

.custom-select-container .search-icon {
    position: absolute;
    right: 12px;
    opacity: 0.7;
}

.custom-select-container #lookingForList li,
.custom-select-container #locationList li,
.custom-select-container #bodyTypeList li,
.custom-select-container #sexualityList li,
.custom-select-container #smokingList li,
.custom-select-container #alcoholList li,
.custom-select-container #editProfileLocationList li,
.custom-select-container #relationshipList li,
#clubTypeList li {
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(143, 149, 163, 1);
    cursor: pointer;
}

.custom-select-container #lookingForList li:hover,
.custom-select-container #locationList li:hover,
.custom-select-container #bodyTypeList li:hover,
.custom-select-container #sexualityList li:hover,
.custom-select-container #smokingList li:hover,
.custom-select-container #alcoholList li:hover,
.custom-select-container #editProfileLocationList li:hover,
.custom-select-container #relationshipList li:hover,
#clubTypeList li:hover {
    background: rgba(255, 255, 255, 0.05);
}

.custom-select-container #lookingForList li.selected,
.custom-select-container #locationList li.selected,
.custom-select-container #bodyTypeList li.selected,
.custom-select-container #sexualityList li.selected,
.custom-select-container #smokingList li.selected,
.custom-select-container #alcoholList li.selected,
.custom-select-container #editProfileLocationList li.selected,
.custom-select-container #relationshipList li.selected,
#clubTypeList li.selected {
    background: rgba(255, 0, 0, 0.2);
    color: rgba(255, 255, 255, 1);
}

.who-section .who-title, .custom-select-container .who-title {
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 16px;
}

.custom-select-container .who-title {
    padding-top: 24px;
}

.who-section {
    margin-top: 24px;
}

/* ===== PROFILE TYPE POPUP SPECIFIC ===== */
.option-row {
    display: flex;
    gap: 20px;
}

.option-card {
    width: 50%;
    height: 391px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.single-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.six-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.six-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-wrap {
    width: 100%;
    height: 367px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.arrow-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: #ff3c3c;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.arrow-btn svg {
    width: 26px;
    height: 26px;
}

.profile-type-message {
    padding: 12px;
    margin: 16px 0;
    border-radius: 8px;
    text-align: center;
}

.profile-type-message.error {
    /*background-color: #330000;*/
    color: #ff0000;
}

.profile-type-message.success {
    /*background-color: #144D22;*/
    color: #fff;
}

.profile-type-message.info {
    /*background-color: #0d4a6b;*/
    color: #fff;
}

/* ===== IMAGE SKIP ===== */
.image-skip {
    position: relative;
}

.skip-button {
    border: solid 1px rgba(92, 98, 112, 0.2);
    background: transparent;
    padding: 12px 24px;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    position: absolute;
    right: 12px;
    top: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    cursor: pointer;
}

/* ===== HEIGHT SLIDER ===== */
.height-slider-box {
    width: 100%;
    border-radius: 10px;
    position: relative;
    color: white;
    font-family: sans-serif;
}

.ticks {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #bfbfbf;
    margin-top: 30px;
    position: relative;
}

.ticks div {
    position: relative;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    text-transform: capitalize;
    color: rgba(171, 176, 186, 1);
}

.ticks div::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 2px;
    background: #bfbfbf;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.height-range {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    background: linear-gradient(to right, #ff4040 0%, #5a0000 100%);
    border-radius: 3px;
    outline: none;
    position: relative;
}

.height-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: white;
    border: 2px solid #ffffff;
    cursor: pointer;
    position: relative;
}

.height-range::-webkit-slider-thumb::before {
    content: "\f007";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    font-size: 20px;
    position: absolute;
    top: -35px;
    left: 4px;
}

.slider-wrap {
    position: relative;
    width: 100%;
}

.thumb-icon {
    position: absolute;
    width: 16px;
    height: 16px;
    top: -15px;
    left: 0;
    pointer-events: none;
}

.height-label {
    position: absolute;
    top: -15px;
    left: 0;
    pointer-events: none;
    font-size: 12px;
    color: rgba(171, 176, 186, 1);
    white-space: nowrap;
    font-weight: 500;
    margin-left: 5px;
}

/* ===== MULTISELECT (GOALS, LANGUAGES) ===== */
.htr-multiselect {
    width: 450px;
    position: relative;
    font-family: sans-serif;
}

.htr-multiselect .htr-select-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #111;
    border: 1px solid #444;
    border-radius: 10px;
    cursor: pointer;
}

.htr-multiselect .htr-selected-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.htr-multiselect .htr-tag {
    background: #7a0003;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.htr-multiselect .htr-tag .htr-tag-close {
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
}

.htr-multiselect .htr-arrow {
    color: #ccc;
}

.htr-multiselect .htr-options-list {
    position: absolute;
    width: 100%;
    background: #111;
    border: 1px solid #444;
    border-radius: 10px;
    margin-top: 5px;
    display: none;
    max-height: 180px;
    overflow-y: auto;
    z-index: 100;
}

.htr-multiselect .htr-option {
    padding: 12px;
    color: #fff;
    cursor: pointer;
}

.htr-multiselect .htr-option:hover {
    background: #7a0003;
}

.htr-multiselect .htr-option.selected {
    background: #7a0003;
}

/* ===== COVER UPLOAD (PHOTO POPUPS) ===== */
.cover-upload {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cover-preview {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-actions {
    display: flex;
    gap: 24px;
}

.cover-actions button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.crop-btn {
    background-color: #fff;
    color: #e00;
}

.upload-btn {
    background-color: #e00;
    color: #fff;
}

/* ===== CROP MODAL ===== */
.cropper-parent {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: sans-serif;
}

.crop-modal {
    width: 540px;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    padding-bottom: 20px;
    border: solid 1px rgba(143, 149, 163, 1);
    border-radius: 8px;
}

.crop-header {
    padding: 18px 24px;
    border-bottom: 1px solid #222;
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.crop-header .close-btn {
    cursor: pointer;
    font-size: 24px;
    background: none;
    border: none;
    color: #fff;
}

.crop-header h2 {
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 0;
    width: 100%;
}

.crop-body {
    padding: 20px 24px 10px;
    border-bottom: solid 1px rgba(143, 149, 163, 1);
    margin: 0 10px;
}

.crop-area {
    background: #000;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crop-area img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

.crop-frame {
    display: none; /* Not used - image is directly in crop-area */
}

.zoom-area {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.zoom-area input[type=range] {
    width: 100%;
}

.zoom-icon {
    font-size: 20px;
}

.crop-footer {
    padding: 18px 24px 10px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cancel-btn {
    background: #222;
    padding: 10px 28px;
    color: #ddd;
    border-radius: 8px;
    border: 1px solid #333;
    cursor: pointer;
}

.save-btn {
    background: #ff0000;
    padding: 10px 35px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

/* ===== WEEK DAYS (CLUB WORKING) ===== */
.week-days {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    position: relative;
    z-index: 5;
}

.week-days .day {
    padding: 6px 16px;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid rgba(92, 98, 112, 1);
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
}

.week-days button.day {
    position: relative;
    z-index: 5;
}

.week-days .day:hover {
    border-color: #666;
}

.week-days .day.active {
    background: #ff0000;
    border-color: #ff0000;
}

.day.active {
    background: #ff0000 !important;
    border-color: #ff0000 !important;
    color: #fff;
}

/* ===== TIME BOX (CLUB WORKING) ===== */
.time-box {
    display: flex;
    gap: 16px;
}

.time-group {
    width: 100%;
}

.time-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #ddd;
}

.time-group select {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    color: white;
    border: 1px solid rgba(92, 98, 112, 1);
    border-radius: 4px;
    font-size: 16px;
    appearance: none;
    cursor: pointer;
    outline: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

/* ===== WARNING POPUP ===== */
.boxes-eighteen-years {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.boxes-eighteen-years a {
    border: solid 1px rgba(69, 74, 84, 1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: rgba(171, 176, 186, 1);
    padding: 16px 26px;
    min-width: 115px;
    text-decoration: none;
}

.boxes-eighteen-years a.active {
    background: rgba(204, 0, 0, 0.16);
    border: solid 1px rgba(204, 0, 0, 1);
}

.years-link {
    margin-top: 88px;
    text-align: center;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    display: block;
    color: rgba(199, 202, 209, 1);
    text-decoration: none;
}

.years-link.mt-24 {
    margin-top: 24px;
}

/* ===== UTILITY CLASSES ===== */
.mb-0 {
    margin-bottom: 0;
}

.mt-24 {
    margin-top: 24px;
}

.onboading a {
    border: solid 1px rgba(92, 98, 112, 1);
}

.error-reasons {
    margin-top: 20px;
}

.error-reasons ul {
    list-style: disc;
    padding-left: 20px;
    color: rgba(255, 77, 77, 1);
}

.error-reasons li {
    margin-bottom: 8px;
}

/* ===== REGISTER FORM ===== */
.register-form {
    position: relative;
    z-index: 2;
}

/* ===== SENT SMS CODE (OTP) ===== */
.sent-sms-code {
    margin-top: 24px;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .complate-steps-content {
        width: 90%;
        padding: 20px;
    }
    
    .regsiter-popup-content {
        width: 90%;
        padding: 30px;
    }
    
    .disp-flex-com {
        flex-direction: column;
    }
    
    .option-row {
        flex-direction: column;
    }
    
    .option-card {
        width: 100%;
    }
}

