@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --main-background: #ffffff;
    --black-color: #000000;
    --dark-color-1: #18181B;
    --dark-color-2: #090914;

    --gray-color-1: #797979;
    --gray-color-2: #B1B1B1;
    --gray-color-3: #52525B;
    --gray-color-4: #E4E4E7;
    --gray-color-5: #959595;
    --gray-color-6: #676767;
    --gray-color-7: #7D7D7D;

    --main-header-height: 80px;
    --container-width: 1200px;
    --clamp-width: 1440;
    --transition-duration: 0.2s;
}
@-webkit-keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

* {
    box-sizing: border-box;
    font-family: inherit;
}
html,body {
    font-size: 18px;
    font-family: "Inter", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    line-height: 1.28;
    color: var(--black-color);
    background-color: var(--main-background);
}
a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    text-decoration: underline;
    color: inherit;
}
button {
    transition: opacity 0.2s;
}
button:hover {
    opacity: 0.9;
}
.container {
    width: var(--container-width);
    margin: auto;
}
.block-title {
    font-weight: 700;
    font-size: clamp(32px, calc(52 / var(--clamp-width) * 100vw), 52px);
    line-height: 1.4;
    text-align: center;
    color: #18181B;
    margin-bottom: clamp(16px, calc(32 / var(--clamp-width) * 100vw), 32px);
}
.block-desc {
    font-weight: 400;
    font-size: clamp(20px, calc(18 / var(--clamp-width) * 100vw), 18px);
    line-height: 1.3;
    text-align: center;
    color: #52525B;
}

.header {
    background-color: var(--main-background);
    font-size: 18px;
    /* Keep the header (and its console dropdowns) above .ow_menu_wrap,
       which carries z-index:1 in base.css and would otherwise cover them. */
    position: relative;
    z-index: 5;
}
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--main-header-height);
}
/*.header-logo {*/
/*    display: block;*/
/*    height: 28px;*/
/*    width: 154px;*/
/*    background-image: url(index_images/logoTY.svg);*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*    background-size: contain;*/
/*    text-decoration: none;*/
/*    color: initial;*/
/*}*/
.header-console {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-console-sign-in-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 24px;
    height: 44px;
    background: linear-gradient(90deg, #F1376E 0%, #F1554F 100%);
    border-radius: 32px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
}
.header-console .ow_console_body {
    height: auto;
    margin: 0;
    padding: 0;
}
.header-console .ow_console {
    height: auto;
    margin: 0;
    padding: 0;
}
.header-console .ow_console_body .ow_console_item {
    height: auto;
    padding: 0;
    font-size: unset;
}
.header-console .ow_console_body .ow_console_items_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, calc(24 / var(--clamp-width) * 100vw), 24px);
}
/* Toolbar links (logged-in user): base.css paints them white (#fff),
   invisible on the white header. Force the dark theme color. */
.header-console .ow_console_item a.ow_console_item_link {
    color: var(--dark-color-1);
    font-size: 16px;
}
.header-console .ow_console_item:hover a.ow_console_item_link,
.header-console .ow_console_item a.ow_console_item_link:hover {
    color: #F1376E;
}
/* Dropdown menu items: highlight on hover with the theme accent. */
.ow_console .ow_console_dropdown .ow_console_dropdown_cont a:hover {
    color: #F1376E;
}
/* Tighten the divider spacing inside console dropdowns.
   The extra space comes from the <li> wrapping the divider, so collapse it. */
.ow_console .ow_console_divider {
    margin: 6px 0;
}
.ow_console ul.ow_console_dropdown li:has(> .ow_console_divider) {
    line-height: 0;
    margin: 0;
    padding: 0;
}
.header-console .ow_console_body .ow_console_item .ow_signin_label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 24px;
    height: 44px;
    background: linear-gradient(90deg, #F1376E 0%, #F1554F 100%);
    border-radius: 32px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    margin: 0;
}
.header-console .ow_console_body .ow_console_item.ow_console_button {
    line-height: 1;
    display: none;
}
.base_index_page .header-console .ow_console_item {
    color: #000;
    border: none;
}
.base_index_page .header-console .ow_console_item.ow_console_button:hover {
    background-color: transparent;
    border-color: transparent;
    color: #000;
}
html body.base_index_page .header-console .ow_console .ow_console_body .ow_console_item.ow_console_button a {
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #000;
    border: none;
    cursor: pointer;
    margin: 0;
}
.base_index_page .ow_console_lang_item span {
    font-size: 18px;
    line-height: 1;
    color: #000;
}
.ow_console_lang_item span:hover {
    color: #000 !important;
}
.ow_console_lang {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ow_tooltip_body .ow_console_lang .ow_console_lang_item span {
    padding-right: 0;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

/* ===== Responsive header: burger menu ===== */
/* Hidden on desktop; shown below the breakpoint to toggle a stacked panel
   holding the main menu (1st level) + console items. */
.ty-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.ty-burger span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--dark-color-1);
    transition: transform 0.2s, opacity 0.2s;
}
body.ty-menu-open .ty-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.ty-menu-open .ty-burger span:nth-child(2) {
    opacity: 0;
}
body.ty-menu-open .ty-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 500px) {
    .ty-burger {
        display: flex;
    }
    .header-wrapper {
        flex-wrap: wrap;
        height: auto;
        min-height: var(--main-header-height);
    }
    /* Collapse the console; it expands as a stacked panel when open.
       The main menu (.ow_menu_wrap) is left untouched — it adapts on its own. */
    .header-console {
        display: none;
    }
    /* Guest state: keep the Sign In pill visible instead of hiding it behind
       the burger (index page has no burger at all, so it would be unreachable). */
    .header-console:has(.ow_signin_label) {
        display: flex;
    }
    .header-console:has(.ow_signin_label) .ow_console_body .ow_console_item:not(:has(.ow_signin_label)) {
        display: none;
    }
    /* Contact us, static pages (guest) and join have no main menu to reveal
       (.ow_menu_wrap is hidden there), so for a guest the burger would only
       toggle an empty panel while the Sign In pill is already visible on its
       own — hide it. */
    .ty_contact_us .header-wrapper:has(.ow_signin_label) .ty-burger,
    .ty_static_page_guest .header-wrapper:has(.ow_signin_label) .ty-burger,
    .base_user_join .header-wrapper:has(.ow_signin_label) .ty-burger {
        display: none;
    }
    /* Console as a vertical list inside the panel. */
    body.ty-menu-open .header-console {
        display: flex;
        order: 3;
        flex-basis: 100%;
        width: 100%;
        padding: 8px 0;
        border-top: 1px solid var(--gray-color-4);
    }
    body.ty-menu-open .header-console .ow_console,
    body.ty-menu-open .header-console .ow_console_body,
    body.ty-menu-open .header-console .ow_console_body .ow_console_items_wrap {
        width: 100%;
    }
    body.ty-menu-open .header-console .ow_console_body .ow_console_items_wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    body.ty-menu-open .header-console .ow_console_item a.ow_console_item_link {
        display: block;
        padding: 12px 4px;
        font-size: 16px;
        text-align: center;
    }
    /* Drop the dropdown caret in the flat mobile list (it wrapped to its own
       line and created blank gaps). */
    body.ty-menu-open .header-console .ow_console_more {
        display: none;
    }
    /* Submenus (Admin, etc.) expand inline instead of floating off-screen. */
    body.ty-menu-open .header-console .ow_console_item .ow_tooltip {
        position: static !important;
        top: auto !important;
        right: auto !important;
        opacity: 1 !important;
    }
    body.ty-menu-open .header-console .ow_console_item .ow_tooltip_tail {
        display: none;
    }
    body.ty-menu-open .header-console .ow_console_item .ow_tooltip_body {
        max-width: none;
        padding: 0 0 8px;
        box-shadow: none;
        border-radius: 0;
    }
    body.ty-menu-open .header-console .ow_console_dropdown_cont a {
        text-align: center;
        padding: 8px 4px;
    }
}

.main-content {

}

/*create-you-world*/
/*.create-you-world {*/
/*    background-image: url(index_images/mainPicture.jpg);*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*    min-height: 700px;*/
/*    height: 80vh;*/
/*}*/
.create-you-world .container {
    height: 100%;
}
.create-you-world-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.create-you-world-form {
    width: 50%;
    background-color: #FFFFFF;
    border-radius: 32px;
    padding: clamp(20px, calc(40 / var(--clamp-width) * 100vw), 40px) clamp(12px, calc(58 / var(--clamp-width) * 100vw), 58px);
}
.create-you-world-form-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    margin-bottom: clamp(16px, calc(24 / var(--clamp-width) * 100vw), 24px);
}
.create-you-world-form-text {
    font-weight: 500;
    font-size: clamp(18px, calc(16 / var(--clamp-width) * 100vw), 16px);
    line-height: 1.3;
    text-align: center;
    color: #797979;
}
.create-you-world-form-input .mob-divider {
    display: none;
}
.create-you-world-form-wrapper .sign-up {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 24px;
    margin-bottom: 16px;
    height: 44px;
    background: linear-gradient(90deg, #F1376E 0%, #F1554F 100%);
    border-radius: 32px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
}
.create-you-world-form-wrapper .sign-in {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    margin-bottom: 24px;
    height: 44px;
    background-color: #fff;
    border-radius: 32px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #000000;
    border: 2px solid #B1B1B1;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
}
.create-you-world-form-bottom-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    color: #797979;
}
.create-you-world-form-bottom-text a {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    color: #797979;
    text-decoration: underline;
}
.create-you-world-download-apps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: nowrap;
}
.create-you-world-download-apps .download_link {
    margin: 0;
    flex-shrink: 0;
}
.create-you-world-form-wrapper {
    padding-top: 34px;
}
.create-you-world-form-wrapper span.ow_button {
    display: block;
    background-color: unset;
    border-radius: 32px;
}
.create-you-world-form-wrapper span.ow_button:hover {
    background-color: unset;
}
.create-you-world-form-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}
.create-you-world-form-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.create-you-world-form-input label {
    font-weight: 500;
    font-size: clamp(16px, calc(18 / var(--clamp-width) * 100vw), 18px);
    line-height: 1.4;
    color: #000;
}
.create-you-world-form .select2-container--default .select2-selection--single {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 48px;
    background: linear-gradient(90deg, #F1376E 0%, #F1554F 100%);
    border-radius: 32px;
    border: none;
}
.create-you-world-form .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.create-you-world-form .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}
.create-you-world-form .select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.create-you-world-form .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}
.create-you-world-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    padding-left: 8px;
    line-height: 1;
    color: #FFFFFF;
}
.create-you-world-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 9L12.5 15L18.5 9' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 24px;
    width: 25px;
    position: absolute;
    top: 11px;
    right: 11px;
}
.create-you-world-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 0;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}
.base_index_page .select2-results__options {
    list-style: none;
    margin: 0;
}
.base_index_page .select2-dropdown {
    padding: 16px;
    background-color: #FFFFFF;
    border: 1px solid #B1B1B1;
    border-radius: 16px;
    min-width: 280px;
}
.base_index_page .select2-container--open .select2-dropdown--above {
    border-bottom: 1px solid #B1B1B1;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}
.base_index_page .select2-container--open .select2-dropdown--below {
    border-top: 1px solid #B1B1B1;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.base_index_page .select2-container--default .select2-results__option--selected {
    background-color: #EFF6FF;
    position: relative;
}
.base_index_page .select2-container--default .select2-results__option--selected:after {
    content: '';
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 4px;
    right: 6px;
}
.base_index_page .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #EFF6FF;
    color: #000;
}
.base_index_page .select2-results__option {
    padding: 8px 10px;
    user-select: none;
    -webkit-user-select: none;
    min-width: 220px;
    margin-bottom: 12px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;

}
.base_index_page .select2-results__option:last-child {
    margin-bottom: 0;
}


.create-you-world-form-input .select2-container {
    min-width: 125px;
}
/*.create-you-world-label {*/
/*    font-weight: 500;*/
/*    font-size: clamp(16px, calc(18 / var(--clamp-width) * 100vw), 18px);*/
/*    line-height: 1.4;*/
/*    color: #000;*/
/*}*/
/*#input_usearch_birthdate {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    gap: 16px;*/
/*}*/
/*#input_usearch_birthdate .ow_agerange_to {*/
/*    font-weight: 500;*/
/*    font-size: 18px;*/
/*    line-height: 1;*/
/*    text-align: center;*/
/*    color: #000000;*/
/*}*/
/*#input_usearch_birthdate input[type="text"] {*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    padding: 0px;*/
/*    gap: 6px;*/
/*    width: 72px;*/
/*    height: 48px;*/
/*    border: 2px solid #B1B1B1;*/
/*    border-radius: 32px;*/
/*    background-color: transparent;*/
/*    font-weight: 700;*/
/*    font-size: 18px;*/
/*    line-height: 1;*/
/*    color: #000000;*/
/*    text-align: center;*/
/*}*/
/*!* Chrome, Safari, Edge, Opera *!*/
/*#input_usearch_birthdate input[type="text"]::-webkit-outer-spin-button,*/
/*#input_usearch_birthdate input[type="text"]::-webkit-inner-spin-button {*/
/*    -webkit-appearance: none;*/
/*    margin: 0;*/
/*}*/
/*!* Firefox *!*/
/*#input_usearch_birthdate input[type="text"] {*/
/*    -moz-appearance: textfield;*/
/*}*/



.create-you-world-form-input input[type="number"] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 6px;
    width: 72px;
    height: 48px;
    border: 2px solid #B1B1B1;
    border-radius: 32px;
    background-color: transparent;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #000000;
    text-align: center;
}
/* Chrome, Safari, Edge, Opera */
.create-you-world-form-input input[type="number"]::-webkit-outer-spin-button,
.create-you-world-form-input input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
.create-you-world-form-input input[type="number"] {
    -moz-appearance: textfield;
}
.create-you-world-form-input .to-divider {
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    color: #000000;
}
/*create-you-world*/

/*users*/
.users {

}
.users-wrapper {
    padding: clamp(40px, calc(75 / var(--clamp-width) * 100vw), 75px) 0 clamp(40px, calc(58 / var(--clamp-width) * 100vw), 58px);
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, calc(28 / var(--clamp-width) * 100vw), 28px);
}
.user-box {
    position: relative;
    /*width: calc(100% / var(--number-of-items) - (var(--gap) * var(--number-of-gaps) / var(--number-of-items)));*/
    width: calc(100% / 5 - (clamp(12px, calc(28 / var(--clamp-width) * 100vw), 28px) * 4 / 5));
}
.user-box-icon {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9vw;
    transform: translate(24%, -52%);
}
.user-box-icon-emoji {
    position: absolute;
    top: 29%;
    animation: shake 1s infinite;
    -webkit-animation: shake 1s infinite;
    -moz-animation: shake 1s infinite;
    -o-animation: shake 1s infinite;
}
.user-box-img {
    display: block;
    position: relative;
    aspect-ratio: 218 / 287;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: clamp(18px, calc(24 / var(--clamp-width) * 100vw), 24px);
    margin-bottom: clamp(8px, calc(16 / var(--clamp-width) * 100vw), 16px);
}
.user-box-info {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 50%;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 0 0 clamp(18px, calc(24 / var(--clamp-width) * 100vw), 24px) clamp(18px, calc(24 / var(--clamp-width) * 100vw), 24px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: clamp(4px, calc(8 / var(--clamp-width) * 100vw), 8px);
    padding: 0 clamp(12px, calc(24 / var(--clamp-width) * 100vw), 24px) clamp(12px, calc(24 / var(--clamp-width) * 100vw), 24px);
}
.user-box-info-title {
    font-weight: 500;
    font-size: clamp(12px, calc(18 / var(--clamp-width) * 100vw), 18px);
    line-height: 1.2;
    color: #FFFFFF;
}
.user-box-info-loc {
    font-weight: 400;
    font-size: clamp(12px, calc(16 / var(--clamp-width) * 100vw), 16px);
    line-height: 1.2;
    color: #E0E0E0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-wrap: nowrap;
}
.user-box-button {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: clamp(32px, calc(44 / var(--clamp-width) * 100vw), 44px);
    border: clamp(1px, calc(2 / var(--clamp-width) * 100vw), 2px) solid #B1B1B1;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(12px, calc(16 / var(--clamp-width) * 100vw), 16px);
    line-height: 1;
    text-align: center;
    color: #000000;
}
/*users*/

/*special*/
.special {
    padding: clamp(40px, calc(72 / var(--clamp-width) * 100vw), 72px) 0;
}
.special-wrapper {

}
.special-items {
    display: flex;
    flex-wrap: wrap;
    padding: clamp(32px, calc(126 / var(--clamp-width) * 100vw), 126px) 0 clamp(40px, calc(76 / var(--clamp-width) * 100vw), 76px);
}
.special-item {
    width: 33.333333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 clamp(6%, calc(4 / var(--clamp-width) * 100vw), 4%);
}
.special-item:nth-child(1),
.special-item:nth-child(2),
.special-item:nth-child(3) {
    border-bottom: 1px solid #E4E4E7;
    padding-bottom: clamp(32px, calc(54 / var(--clamp-width) * 100vw), 54px);
}
.special-item:nth-child(4),
.special-item:nth-child(5),
.special-item:nth-child(6) {
    padding-top: clamp(32px, calc(54 / var(--clamp-width) * 100vw), 54px);
}
.special-item:nth-child(2),
.special-item:nth-child(5) {
    border-left: 1px solid #E4E4E7;
    border-right: 1px solid #E4E4E7;
}
.special-item-title {
    font-weight: 700;
    font-size: clamp(24px, calc(20 / var(--clamp-width) * 100vw), 20px);
    line-height: 1.2;
    text-align: center;
    color: #18181B;
    padding-top: clamp(20px, calc(30 / var(--clamp-width) * 100vw), 30px);
    margin-bottom: clamp(12px, calc(20 / var(--clamp-width) * 100vw), 20px);
}
.special-item-text {
    font-weight: 400;
    font-size: clamp(16px, calc(14 / var(--clamp-width) * 100vw), 14px);
    line-height: 1.3;
    text-align: center;
    color: #52525B;
}
/*special*/

/*stories*/
.stories {
    padding: clamp(20px, calc(96 / var(--clamp-width) * 100vw), 96px) 0;
}
.stories-wrapper {

}
.stories-items {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(32px, calc(60 / var(--clamp-width) * 100vw), 60px);
}
.stories-item {
    /*width: calc(100% / var(--number-of-items) - (var(--gap) * var(--number-of-gaps) / var(--number-of-items)));*/
    width: calc(100% / 2 - (clamp(32px, calc(60 / var(--clamp-width) * 100vw), 60px) * 1 / 2));
    display: flex;
    align-items: flex-start;
    gap: clamp(16px, calc(37 / var(--clamp-width) * 100vw), 37px);
}
.stories-item-picture {
    position: relative;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 14px;
    width: 220px;
}
.stories-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.stories-item-name {
    font-weight: 600;
    font-size: clamp(24px, calc(20 / var(--clamp-width) * 100vw), 20px);
    line-height: 1.2;
    color: #090914;
    margin-bottom: 12px;
}
.stories-item-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #090914;
}
/*stories*/

/*testimonials*/
.testimonials {

}
.testimonials-wrapper {
    position: relative;
}
.testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: clamp(32px, calc(40 / var(--clamp-width) * 100vw), 40px) auto 0;
}
.testimonials-items {
    width: 80%;
}
.testimonials-items .swiper-wrapper {
    align-items: center;
}
.testimonials-items-content {
    margin: clamp(32px, calc(40 / var(--clamp-width) * 100vw), 40px) auto clamp(32px, calc(90 / var(--clamp-width) * 100vw), 90px);
    width: 80%;
}
.testimonials-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.testimonials-item-avatar {
    width: clamp(76px, calc(114 / var(--clamp-width) * 100vw), 114px);
    height: clamp(76px, calc(114 / var(--clamp-width) * 100vw), 114px);
    border-radius: 50%;
    position: relative;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
}
.swiper-slide-active .testimonials-item-avatar {
    width: clamp(120px, calc(180 / var(--clamp-width) * 100vw), 180px);
    height: clamp(120px, calc(180 / var(--clamp-width) * 100vw), 180px);
    opacity: 1;
}
.testimonials-item-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.testimonials-item-name {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    align-items: center;
    color: #090914;
    margin-bottom: 12px;
}
.testimonials-item-loc {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: #959595;
    margin-bottom: 28px;
}
.testimonials-item-rate {

}
.testimonials-button-prev {
    position: absolute;
    left: 0;
    z-index: 1;
    cursor: pointer;
}
.testimonials-button-next {
    position: absolute;
    right: 0;
    z-index: 1;
    cursor: pointer;
}
.testimonials-items-text {
    position: relative;
    font-weight: 500;
    font-size: clamp(20px, calc(24 / var(--clamp-width) * 100vw), 24px);
    line-height: 1.4;
    text-align: center;
    color: #676767;
    padding: 7% 5%;
}
.testimonials-items-text:before {
    content: '';
    display: block;
    width: clamp(48px, calc(129 / var(--clamp-width) * 100vw), 129px);
    height: clamp(35px, calc(93 / var(--clamp-width) * 100vw), 93px);
    background-image: url("data:image/svg+xml,%3Csvg width='129' height='93' viewBox='0 0 129 93' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M128.338 0V10.7016C104.475 9.23726 93.0787 33.5435 93.0787 42.3951C112.786 42.3951 127.316 49.5767 127.316 65.2759C127.316 80.9751 116.461 93 99.5922 93C82.724 93 70.365 80.307 70.365 57.0923C70.365 12.0656 109.014 0.269662 128.338 0Z' fill='%23F5F5F5'/%3E%3Cpath d='M57.9731 0V10.7016C34.1099 9.23726 22.7138 33.5435 22.7138 42.3951C42.4213 42.3951 56.9514 49.5767 56.9514 65.2759C56.9514 80.9751 46.0955 93 29.2272 93C12.359 93 0 80.307 0 57.0923C0 12.0656 38.6487 0.269662 57.9731 0Z' fill='%23F5F5F5'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.testimonials-items-text:after {
    content: '';
    display: block;
    width: clamp(48px, calc(129 / var(--clamp-width) * 100vw), 129px);
    height: clamp(35px, calc(93 / var(--clamp-width) * 100vw), 93px);
    background-image: url("data:image/svg+xml,%3Csvg width='129' height='93' viewBox='0 0 129 93' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-0.000152588 0V10.7016C23.863 9.23726 35.2591 33.5435 35.2591 42.3951C15.5516 42.3951 1.02155 49.5767 1.02155 65.2759C1.02155 80.9751 11.8774 93 28.7457 93C45.6139 93 57.9729 80.307 57.9729 57.0923C57.9729 12.0656 19.3242 0.269662 -0.000152588 0Z' fill='%23F5F5F5'/%3E%3Cpath d='M70.3648 0V10.7016C94.228 9.23726 105.624 33.5435 105.624 42.3951C85.9166 42.3951 71.3865 49.5767 71.3865 65.2759C71.3865 80.9751 82.2424 93 99.1106 93C115.979 93 128.338 80.307 128.338 57.0923C128.338 12.0656 89.6892 0.269662 70.3648 0Z' fill='%23F5F5F5'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
/*testimonials*/

/*create-account*/
.create-account-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 12%;
}
.create-account-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.2px;
    color: #FFFFFF;
    margin-bottom: clamp(17px, calc(10 / var(--clamp-width) * 100vw), 10px);
}
.create-account-desc {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.2px;
    color: #FFFFFF;
    margin-bottom: clamp(50px, calc(40 / var(--clamp-width) * 100vw), 40px);
}
.create-account-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    min-width: 380px;
    height: 56px;
    background: linear-gradient(90deg, #F1376E 0%, #F1554F 100%);
    border-radius: 32px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
}
/*create-account*/

/*main-footer*/
.main-footer {
    padding: clamp(24px, calc(40 / var(--clamp-width) * 100vw), 40px) 27px clamp(40px, calc(60 / var(--clamp-width) * 100vw), 60px);
}
/* Large top padding only on index page */
.base_index_page .main-footer {
    padding-top: clamp(40px, calc(140 / var(--clamp-width) * 100vw), 140px);
}
.main-footer-wrapper {

}
.main-footer-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px 32px;
    margin-bottom: 40px;
}
.main-footer-list li {
    text-align: center;
}
.main-footer-list-item {
    font-weight: 600;
    font-size: clamp(14px, calc(16 / var(--clamp-width) * 100vw), 16px);
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.2px;
    color: #000000;
    text-decoration: none;
}
.main-footer-copy {
    font-weight: 500;
    font-size: clamp(14px, calc(16 / var(--clamp-width) * 100vw), 16px);
    line-height: 1;
    text-align: center;
    letter-spacing: -0.2px;
    color: #7D7D7D;
}
.main-footer-social {
    display: flex;
    flex-wrap: wrap;
}
.main-footer-social-links {
    flex: 1 1 50%;
    padding: 0 0 40px;
}
.main-footer-downloads-links {
    flex: 1 1 50%;
    padding: 0 0 40px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}
.main-footer-downloads-links .download_link {
    margin: 0;
}
.main-footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}
.main-footer-social-links ul li a {
    background-color: #0A0C1C;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center
}
.main-footer-social-links ul li a:hover {
    opacity: 0.9;
}
/*main-footer*/

@media (max-width: 1280px) {
    .container {
        --container-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
    .create-you-world-wrapper {
        justify-content: center;
    }
    .create-you-world-form {
        width: 80%;
    }
    .user-box-icon {
        width: 9vw;
    }
    .stories-item {
        width: 70%;
    }
    .stories-items {
        justify-content: center;
        padding-top: 32px;
    }
    .main-footer-list {
        gap: 16px 28px;
    }
}

@media (max-width: 780px) {
    .create-you-world-form {
        width: calc(100% - 20px);
    }
    .stories-item {
        width: 100%;
    }
    .stories-item {
        flex-direction: column;
    }
    .stories-item-picture {
        width: 100%;
    }
    .user-box {
        width: calc(100% / 4 - (clamp(12px, calc(28 / var(--clamp-width) * 100vw), 28px) * 3 / 4));
    }
    .user-box:nth-child(5) {
        display: none;
    }
    .testimonials {
        padding-top: 70px;
    }
    .testimonials-button-next,
    .testimonials-button-prev {
        display: none;
    }
    .special-item {
        width: 100%;
    }
    .special-item:nth-child(1),
    .special-item:nth-child(2),
    .special-item:nth-child(3),
    .special-item:nth-child(4),
    .special-item:nth-child(5),
    .special-item:nth-child(6) {
        margin-bottom: 32px;
        padding-top: 0;
        padding-bottom: clamp(32px, calc(54 / var(--clamp-width) * 100vw), 54px);
        border-bottom: 1px solid #E4E4E7;
        border-left: none;
        border-right: none;
    }
    .special,
    .special-items {
        padding-bottom: 0;
    }
    .main-footer-social {
        flex-direction: column;
    }
    .main-footer-social-links {
        flex: 1;
        padding: 0 0 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main-footer-downloads-links {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .create-you-world-form-title {
        color: #fff;
    }
    .create-you-world-form-text {
        color: #E1E1E1;
    }
    .create-you-world-form-input .to-divider {
        color: #fff;
    }
    .create-you-world-form-input label {
        color: #fff;
    }
    .create-you-world-form {
        background-color: transparent;
    }
    .create-you-world-form {
        width: 100%;
        padding: 16px 12px;
        border-radius: 0;
        z-index: 1;
    }
    .create-you-world:before {
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        z-index: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46.59%, rgba(0, 0, 0, 0.3) 100%), linear-gradient(180.03deg, rgba(0, 0, 0, 0.44) 21.53%, rgba(102, 102, 102, 0.44) 99.98%);
    }
    .create-you-world-form-wrapper .sign-up {
        height: 56px;
    }
    .create-you-world-form-wrapper .sign-in {
        margin-bottom: 24px;
        height: 56px;
        background-color: transparent;
        color: #fff;
        border: 2px solid #ffffff;
        width: 100%;
    }
    .create-you-world-form-bottom-text {
        color: #fff;
    }
    .create-you-world-form-bottom-text a {
        color: #fff;
    }
    .create-you-world-download-apps {
        margin-top: 16px;
    }
    .create-you-world-form-input input[type="number"] {
        background-color: rgba(0, 0, 0, 0.3);
        border-color: #fff;
        color: #fff;
    }
    .create-you-world-form-row {
        flex-direction: column;
    }
    .create-you-world-form-input {
        width: 100%;
    }
    .create-you-world-form-input .mob-divider {
        display: block;
        flex: 1;
        width: 100%;
        height: 1px;
        border-bottom: 4px dotted #fff;
    }
    .base_index_page .select2-container--open .select2-dropdown {
        left: -156px;
    }
    .create-you-world {
        position: relative;
    }
    .user-box {
        width: calc(100% / 2 - (clamp(12px, calc(28 / var(--clamp-width) * 100vw), 28px) * 1 / 2));
    }
    .testimonials-items-content {
        width: 100%;
    }
    .create-account {
        min-height: 600px;
        height: auto;
    }
    .create-account-button {
        min-width: 260px;
        font-size: 20px;
    }
    .main-footer-list {
        flex-direction: column;
        gap: 16px;
    }
}

/* ===== Main menu (logged-in user) for the light theme ===== */
/* Drop the old Aurora teal bar, place the menu on the white header.
   Specificity is raised via .ow_page_wrap because base.css @imports index.css
   near the top of the file and would otherwise override these rules. */
.ow_page_wrap .ow_menu_wrap {
    background: transparent;
    padding: 0;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-color-4);
}
.ow_page_wrap .ow_main_menu li a {
    color: var(--dark-color-1);
    font-size: 16px;
    padding: 16px 0;
    border-top: none;
    border-bottom: 2px solid transparent;
}
.ow_page_wrap .ow_main_menu li.active a,
.ow_page_wrap .ow_main_menu li a:hover {
    color: #F1376E;
    border-top: none;
    border-bottom: 2px solid #F1376E;
}

/* Secondary menus (widget box menus, content menu): drop the full-width
   underline bar drawn by base.css — keep only the per-item active indicator.
   Also fixes the misaligned active underline when a toolbar button
   (e.g. Advanced Search) stretches the row height. */
.ow_page_wrap .ow_box .ow_box_menu,
.ow_page_wrap .ow_box_empty .ow_box_menu,
.ow_page_wrap .ow_content_menu {
    border-bottom: none;
}

/* ===== Profile action toolbar dropdowns (More / Moderation) ===== */
/* Match the pink pill style of the sibling action buttons instead of the
   leftover Aurora teal (#58A7B1 in base.css). Scoped to .ow_profile_toolbar_group
   so other context menus (forum, photo, comments) keep their styling. */
html body .ow_profile_toolbar_group .ow_context_action,
html body .ow_profile_toolbar_group .ow_context_action:hover,
html body .ow_profile_toolbar_group .ow_context_action:active {
    background: linear-gradient(90deg, #F1376E 0%, #F1554F 100%);
    border-radius: 32px;
    height: 24px;
    line-height: 24px;
    padding: 0 12px;
}
.ow_profile_toolbar_group .ow_context_action_value,
.ow_profile_toolbar_group .ow_context_action:hover .ow_context_action_value {
    color: #fff;
}
/* Caret: replace the dark SVG arrow with a white CSS triangle. */
html body .ow_profile_toolbar_group .ow_context_more {
    background-image: none;
    min-width: 0;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #fff;
    vertical-align: middle;
    margin: 0 0 2px 3px;
}
/* Dropdown panel + items to match the themed console dropdowns. */
html body .ow_profile_toolbar_group .ow_tooltip .ow_tooltip_body {
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.ow_profile_toolbar_group .ow_context_action_list a {
    padding: 6px 12px;
    border-radius: 8px;
}
.ow_profile_toolbar_group .ow_context_action_list a:hover {
    background: rgba(241, 55, 110, 0.08);
    color: #292834;
}
/* Keep semantic colors on hover (Suspend/Delete/Block red, Change Role green). */
html body div .ow_profile_toolbar_group .ow_context_action_list a.ow_mild_red:hover {
    color: #CE372E;
}
html body div .ow_profile_toolbar_group .ow_context_action_list a.ow_mild_green:hover {
    color: #05c18a;
}

/* ===== Auth card: Join & Complete profile ===== */
/* Hide menu on join, complete profile, email verify and stat pages (guest) */
.base_user_join .ow_menu_wrap,
.ty_complete_profile .ow_menu_wrap,
.ty_email_verify .ow_menu_wrap,
.ty_contact_us .ow_menu_wrap,
.ty_static_page_guest .ow_menu_wrap {
    display: none;
}
.base_user_join .ow_page > h1.ow_ic_file,
.ty_complete_profile .ow_page > h1.ow_ic_user,
.ty_complete_profile .ow_page > h1.ow_ic_file,
.ty_email_verify .ow_page > h1,
.ty_contact_us .ow_page > h1 {
    text-align: center;
    margin-bottom: 0;
    display: none;
}
.ty_auth_wrap {
    display: flex;
    justify-content: center;
    padding: clamp(24px, calc(56 / var(--clamp-width) * 100vw), 56px) 16px;
}
.ty_auth_card {
    width: 100%;
    max-width: 640px;
    background-color: #FFFFFF;
    border-radius: 32px;
    padding: clamp(24px, calc(48 / var(--clamp-width) * 100vw), 48px) clamp(16px, calc(48 / var(--clamp-width) * 100vw), 48px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}
.ty_auth_title {
    font-weight: 700;
    font-size: clamp(28px, calc(40 / var(--clamp-width) * 100vw), 40px);
    line-height: 1.2;
    text-align: center;
    color: var(--dark-color-1);
    margin: 0 0 24px;
}
.ty_auth_notice {
    text-align: center;
    color: var(--gray-color-3);
    font-size: 18px;
    line-height: 1.4;
}
.ty_auth_section_title {
    position: relative;
    font-weight: 700;
    font-size: clamp(22px, calc(30 / var(--clamp-width) * 100vw), 30px);
    line-height: 1.2;
    color: var(--dark-color-1);
    margin: 32px 0 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-color-4);
}
/* Pink accent underline, matching the static-page heading */
.ty_auth_section_title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 64px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #F1376E 0%, #F1554F 100%);
}
.ty_auth_fields > .ty_auth_section_title:first-child {
    margin-top: 0;
}

/* Social sign-in buttons (placed on top) */
.ty_auth_social {
    margin-bottom: 20px;
}
.ty_auth_social .ow_connect_text {
    background: unset;
}
.ty_auth_social .connect_button_cont {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}
.ty_auth_social .ow_connect_text {
    display: block;
    text-align: center;
    color: var(--gray-color-1);
    font-size: 15px;
    margin-bottom: 4px;
}
/* full-width wrappers (firebase wrappers are inline-flex by default) */
.ty_auth_social .connect_button_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.ty_auth_social .firebaseauth-auth-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
}
/* neutralize the absolutely-positioned common-button overlay */
.ty_auth_social .firebaseauth-button-wrap {
    display: none !important;
}
/* Google-style button: icon + text, content-width, centered */
.ty_auth_social .connect_button_cont a,
.ty_auth_social .connect_button_cont .ow_button {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: auto;
    height: 44px;
    padding: 0 22px;
    border-radius: 32px;
    border: 1px solid var(--gray-color-2);
    background: #FFFFFF;
    background-image: none !important;
    color: var(--black-color);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
}
.ty_auth_social .connect_button_cont a::before {
    content: "";
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    background: url("/ow_static/plugins/firebase_auth/img/ic-firebase-auth-google.svg") no-repeat center / contain;
}
.ty_auth_social .connect_button_cont a::after {
    content: "Sign up with Google";
}
.ty_auth_social .connect_button_cont a:hover {
    text-decoration: none;
    background: #fafafa;
}

/* Divider with caption */
.ty_auth_divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--gray-color-1);
    font-size: 15px;
    margin: 20px 0;
}
.ty_auth_divider::before,
.ty_auth_divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--gray-color-4);
}
.ty_auth_divider span {
    padding: 0 14px;
}

/* Fields stacked single column */
.ty_auth_fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ty_join_field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ty_join_label,
.ty_join_label label {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: var(--dark-color-1);
}
.ty_join_desc {
    font-size: 13px;
    line-height: 1.4;
    color: var(--gray-color-1);
}

/* Gray pill inputs / selects */
.ty_auth_card .ty_join_input input[type="text"],
.ty_auth_card .ty_join_input input[type="email"],
.ty_auth_card .ty_join_input input[type="password"],
.ty_auth_card .ty_join_input input[type="number"],
.ty_auth_card .ty_join_input select,
.ty_auth_card .ty_join_input textarea {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    padding: 12px 18px;
    background-color: var(--gray-color-4);
    border: 1px solid transparent;
    border-radius: 32px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    color: var(--dark-color-1);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.ty_auth_card .ty_join_input textarea {
    border-radius: 20px;
    resize: vertical;
}
.ty_auth_card .ty_join_input select {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%2352525B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}
.ty_auth_card .ty_join_input input::placeholder {
    color: var(--gray-color-5);
}
.ty_auth_card .ty_join_input input:focus,
.ty_auth_card .ty_join_input select:focus,
.ty_auth_card .ty_join_input textarea:focus {
    border-color: var(--gray-color-2);
}
/* DateField (birthdate): 3 jcf-selects in one row */
.ty_auth_card .ty_join_input .birthdate {
    display: flex;
    gap: 10px;
    align-items: center;
}
.ty_auth_card .ty_join_input .birthdate .ow_inline.owm_inline {
    flex: 1 1 0;
    min-width: 0;
    display: block;
    margin: 0;
}
.ty_auth_card .ty_join_input .birthdate .jcf-select {
    width: 100%;
    min-width: 0;
}
.ty_auth_card .ty_join_input .birthdate .jcf-select .jcf-select-text {
    margin: 0 36px;
    text-align: center;
}

/* Multi-choice fields (kept as native radio/checkbox lists, just smoothed) */
.ty_auth_card .ty_join_input .ow_radio_group,
.ty_auth_card .ty_join_input .ow_checkbox_group {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px 16px;
}
.ty_auth_card .ty_join_input .ow_radio_group li,
.ty_auth_card .ty_join_input .ow_checkbox_group li {
    width: auto !important;
    float: none !important;
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    font-size: 16px;
    color: var(--dark-color-1);
}
.ty_auth_card .ty_join_input .ow_radio_group li input,
.ty_auth_card .ty_join_input .ow_checkbox_group li input {
    width: 18px;
    height: 18px;
    margin: 0;
    flex: 0 0 auto;
    accent-color: #F1376E;
}
.ty_auth_card .ty_join_input .ow_radio_group li label,
.ty_auth_card .ty_join_input .ow_checkbox_group li label {
    margin: 0;
    cursor: pointer;
    line-height: 1.3;
}

/* jcf select override — gray pill */
.ty_auth_card .ty_join_input .jcf-select {
    display: block;
    width: 100%;
    height: 48px;
    background: var(--gray-color-4);
    border: 1px solid transparent;
    border-radius: 32px;
}
.ty_auth_card .ty_join_input .jcf-select .jcf-select-text {
    font-size: 16px;
    line-height: 48px;
    margin: 0 44px 0 18px;
    color: var(--dark-color-1);
    font-family: "Inter", sans-serif;
}
.ty_auth_card .ty_join_input .jcf-select .jcf-select-text span.jcf-option-hideme {
    color: var(--gray-color-5);
}
.ty_auth_card .ty_join_input .jcf-select .jcf-select-opener {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%2352525B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    width: 40px;
    background-color: transparent;
}
.ty_auth_card .ty_join_input .jcf-select.jcf-focus {
    border-color: var(--gray-color-2);
}
/* Dropdown list */
.ty_auth_card .ty_join_input .jcf-select .jcf-select-drop {
    left: 0;
    right: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    background: #fff;
    border: 1px solid var(--gray-color-4);
}
.ty_auth_card .ty_join_input .jcf-select-drop .jcf-list ul li span {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    padding: 10px 18px;
    color: var(--dark-color-1);
}
.ty_auth_card .ty_join_input .jcf-select-drop .jcf-list ul li.jcf-hover span,
.ty_auth_card .ty_join_input .jcf-select-drop .jcf-list ul li:hover span {
    background: var(--gray-color-4);
}
.ty_auth_card .ty_join_input .jcf-select-drop .jcf-list ul li.jcf-selected span {
    background: linear-gradient(90deg, #F1376E 0%, #F1554F 100%);
    color: #fff;
}

/* jcf checkbox override — pink accent */
.ty_auth_card .ty_join_input .jcf-checkbox {
    background: #fff;
    border-color: var(--gray-color-2);
    border-radius: 6px;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    margin: 0;
}
.ty_auth_card .ty_join_input .jcf-checkbox.jcf-checked {
    background-color: #F1376E;
    border-color: #F1376E;
}
.ty_auth_card .ty_join_input .jcf-checkbox.jcf-checked span {
    background-color: #F1376E;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background-position: center;
}

/* jcf radio override */
.ty_auth_card .ty_join_input .jcf-radio {
    background: #fff;
    border-color: var(--gray-color-2);
    margin: 0;
}
.ty_auth_card .ty_join_input .jcf-radio.jcf-checked {
    background: #F1376E;
    border-color: #F1376E;
}

/* Google map location field: input full width, icons pinned right */
.ty_auth_card .ty_join_input .googlelocation_form_element_div {
    position: relative;
    overflow: visible;
}
.ty_auth_card .ty_join_input .ow_googlelocation_location_input {
    float: none !important;
    width: 100% !important;
    box-sizing: border-box;
    padding-right: 80px;
}
.ty_auth_card .ty_join_input .googlelocation_address_icon_div {
    display: flex !important;
    position: absolute;
    top: 0;
    right: 16px;
    height: 48px;
    width: auto;
    align-items: center;
    gap: 12px;
    margin: 0;
}
.ty_auth_card .ty_join_input .googlelocation_address_icon_div > span,
.ty_auth_card .ty_join_input .googlelocation_address_icon_div > div {
    position: static !important;
    float: none !important;
    margin: 0 !important;
    left: auto !important;
    top: auto !important;
    display: inline-block;
}
.ty_auth_card .ty_join_input .ic_googlemap_pin.googlelocation_address_icon {
    width: 18px;
    height: 20px;
    background-position: center;
}

/* Terms of use checkbox row */
.ty_join_field_terms {
    clear: both;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
}
.ty_join_field_terms .ty_join_input {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-color-3);
    line-height: 1.4;
}
.ty_join_field_terms input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex: 0 0 auto;
}
.ty_join_field_terms a {
    text-decoration: underline;
    color: var(--gray-color-3);
}

/* Terms label text */
.ty_join_field_terms .ty_join_terms_label,
.ty_join_field_terms .ty_join_terms_label label {
    font-weight: 400;
    font-size: 15px;
    color: var(--gray-color-3);
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
}

/* Captcha: centered, image + refresh inline, styled input */
.ty_join_field_captcha {
    align-items: center;
}
.ty_auth_card .ty_join_field_captcha .captchaField_input_joinForm_captchaField {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ty_auth_card .ty_join_field_captcha .ow_automargin {
    margin: 0 auto !important;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ty_auth_card .ty_join_field_captcha .ow_automargin .ow_left,
.ty_auth_card .ty_join_field_captcha .ow_automargin .ow_right {
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
}
.ty_auth_card .ty_join_field_captcha #siimage {
    display: block;
    border-radius: 8px;
}
.ty_auth_card .ty_join_field_captcha .ic_refresh {
    cursor: pointer;
}
.ty_auth_card .ty_join_field_captcha input[type="text"] {
    width: 200px !important;
    min-height: 48px;
    box-sizing: border-box;
    padding: 12px 18px;
    margin-top: 12px;
    background-color: var(--gray-color-4);
    border: 1px solid transparent;
    border-radius: 32px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    color: var(--dark-color-1);
    outline: none;
}
.ty_auth_card .ty_join_field_captcha input[type="text"]:focus {
    border-color: var(--gray-color-2);
}

/* Error messages */
.ty_auth_card .ow_error,
.ty_auth_card .owm_error {
    color: #F1376E;
    font-size: 13px;
    margin-top: 4px;
}

/* Primary submit button - pink gradient */
.ty_auth_submit {
    margin-top: 28px;
}
.ty_auth_submit span.ow_button,
.ty_auth_submit span.ow_button:hover {
    display: block;
    width: 100%;
    background: none !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.ty_auth_card .ty_auth_submit input[type="submit"],
.ty_auth_card .ty_auth_submit input[type="button"] {
    display: block;
    width: 100%;
    height: 48px;
    border: none !important;
    border-radius: 32px;
    background: linear-gradient(90deg, #F1376E 0%, #F1554F 100%) !important;
    color: #FFFFFF !important;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}
.ty_auth_card .ty_auth_submit input[type="submit"]:hover {
    opacity: 0.92;
}

@media (max-width: 700px) {
    .ty_auth_card {
        border-radius: 24px;
    }
}

/* ===== Static documents: Terms of use, Privacy policy ===== */
.ty_static_page .ow_page_container {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(24px, calc(56 / var(--clamp-width) * 100vw), 56px) 16px;
}
/* Logged-in users still get the main menu bar on static pages. Align it with
   the centered content column instead of letting it span from the left edge. */
.ty_static_page .ow_menu_wrap .ow_canvas {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 16px;
}
.ty_static_page .ow_canvas {
    width: auto;
    background: transparent;
}
.ty_static_page .ow_page.ow_bg_color {
    background: #FFFFFF;
    border-radius: 32px;
    padding: clamp(28px, calc(56 / var(--clamp-width) * 100vw), 56px) clamp(20px, calc(56 / var(--clamp-width) * 100vw), 56px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

/* Page heading */
.ty_static_page .ow_page > h1 {
    position: relative;
    font-weight: 700;
    font-size: clamp(28px, calc(40 / var(--clamp-width) * 100vw), 40px);
    line-height: 1.2;
    color: var(--dark-color-1);
    margin: 0 0 8px;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--gray-color-4);
}
/* Drop the default Oxwall file icon before the heading */
.ty_static_page .ow_page > h1.ow_ic_file {
    background: none;
    padding-left: 0;
}
/* Pink accent underline under the heading */
.ty_static_page .ow_page > h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 64px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #F1376E 0%, #F1554F 100%);
}

/* Body typography */
.ty_static_page .ow_content {
    margin-top: 28px;
    color: var(--gray-color-3);
    font-size: 17px;
    line-height: 1.7;
}
/* Force Inter everywhere: the pasted document HTML carries inline
   font-family on ul/li/span, which beats the inherited theme font */
.ty_static_page .ow_content,
.ty_static_page .ow_content * {
    font-family: "Inter", sans-serif !important;
}
.ty_static_page .ow_content p {
    margin: 0 0 16px;
}
.ty_static_page .ow_content h2,
.ty_static_page .ow_content h3 {
    color: var(--dark-color-1);
    font-weight: 700;
    line-height: 1.3;
    margin: 32px 0 12px;
}
.ty_static_page .ow_content h2 {
    font-size: clamp(20px, calc(26 / var(--clamp-width) * 100vw), 26px);
}
.ty_static_page .ow_content h3 {
    font-size: clamp(18px, calc(22 / var(--clamp-width) * 100vw), 22px);
}
.ty_static_page .ow_content ul,
.ty_static_page .ow_content ol {
    margin: 0 0 16px;
    padding-left: 22px;
}
.ty_static_page .ow_content ul {
    list-style: none;
    padding-left: 0;
}
.ty_static_page .ow_content li {
    margin: 0 0 10px;
    font-size: 17px !important;
    line-height: 1.7 !important;
}
.ty_static_page .ow_content a {
    color: #F1376E;
    text-decoration: none;
    transition: opacity var(--transition-duration);
}
.ty_static_page .ow_content a:hover {
    opacity: 0.85;
    text-decoration: underline;
}
.ty_static_page .ow_content strong,
.ty_static_page .ow_content b {
    color: var(--dark-color-1);
}

@media (max-width: 700px) {
    .ty_static_page .ow_page.ow_bg_color {
        border-radius: 24px;
    }
    .ty_static_page .ow_content {
        font-size: 16px;
    }
}


/* ===== Custom themed pages: center content (no Aurora sidebar gutter) ===== */
/* general.html omits .ow_sidebar on themed pages; base.css keeps a 185px right
   gutter for it, so recentre the page column here. */
.ty_custom_chrome .ow_page {
    margin: 0 auto;
}

/* ===== Generic form buttons/inputs for themed pages =====
   base.css is reverted to stock Aurora globally; re-supply the pink pill shape
   the themed pages relied on. Loaded only on themed pages, so it never leaks. */
input[type=submit], input[type=button] {
    font-family: "Inter", sans-serif;
    padding: 0 28px;
    font-weight: 600;
    height: 44px;
    line-height: 44px;
    font-size: 15px;
    border-radius: 32px;
}
span.ow_button {
    background-color: transparent;
    background-image: linear-gradient(90deg, #F1376E 0%, #F1554F 100%);
    border-radius: 32px;
}
span.ow_button:hover {
    background-image: linear-gradient(90deg, #F1376E 0%, #F1554F 100%);
    opacity: 0.92;
}
