/* LoveSeek Custom Styles */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Active menu item styling */
.menu li a.active {
    color: #FFD600 !important;
}

/* Hide info icon in mobile view */
.ellepsis-bar {
    display: none !important;
}

/* Menu icon margin */
.header-bar {
    margin-right: 16px !important;
}

/* Tablet header sizing */
@media (max-width: 991px) and (min-width: 768px) {
    .header-wrapper .logo img {
        width: 70px !important;
        height: auto !important;
    }

    .header-wrapper .logo {
        margin-left: 15px;
    }

    .header-section .header-bottom {
        padding: 10px 0 !important;
    }

    .btn-primary-action {
        min-height: 44px !important;
        padding: 0 24px !important;
        font-size: 16px !important;
    }

    /* Fixed header more compact on tablet */
    .header-section.header-fixed .header-bottom {
        padding: 8px 0 !important;
    }

    .header-section.header-fixed .logo img {
        width: 60px !important;
    }
}

/* Mobile/Tablet header layout fix */
@media (max-width: 991px) {
    .header-section .header-bottom .container .header-wrapper {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 10px 0 !important;
    }

    .header-wrapper .logo {
        flex-shrink: 0 !important;
    }

    .header-wrapper .menu-area {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-end !important;
        margin-left: auto !important;
        padding: 0 !important;
        flex: 1 !important;
    }

    /* Buttons styling on tablet/mobile */
    .header-wrapper .menu-area>.btn-secondary-action,
    .header-wrapper .menu-area>.btn-primary-action {
        display: inline-flex !important;
        min-height: 44px !important;
        padding: 0 20px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    .header-wrapper .menu-area>.btn-secondary-action {
        margin-right: 10px !important;
    }

    .header-wrapper .menu-area>.btn-primary-action {
        margin-right: 15px !important;
    }

    .header-wrapper .menu-area .header-bar {
        flex-shrink: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .header-wrapper .logo img {
        width: 60px !important;
        height: auto !important;
    }

    .header-wrapper .logo {
        margin-left: 10px !important;
    }

    .header-section .header-bottom {
        padding: 5px 0 !important;
    }

    .header-section .header-bottom .container .header-wrapper {
        padding: 5px 0 !important;
    }

    /* Smaller buttons on mobile */
    .header-wrapper .menu-area>.btn-secondary-action,
    .header-wrapper .menu-area>.btn-primary-action {
        min-height: 38px !important;
        padding: 0 14px !important;
        font-size: 13px !important;
    }

    .header-wrapper .menu-area>.btn-secondary-action {
        border-width: 1.5px !important;
        margin-right: 8px !important;
    }

    .header-wrapper .menu-area>.btn-primary-action {
        margin-right: 10px !important;
    }

    /* Fixed header even more compact on mobile */
    .header-section.header-fixed .header-bottom {
        padding: 3px 0 !important;
    }

    .header-section.header-fixed .logo img {
        width: 55px !important;
    }
}

/* Primary Action Button Style */
.btn-primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 32px;
    background: linear-gradient(to top right, #FF0000 0%, #FF00A1 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.btn-primary-action:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary-action.full-width {
    width: 100%;
    display: flex;
}

.btn-primary-action.in-progress {
    pointer-events: none;
    opacity: 0.8;
}

.btn-primary-action .spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Secondary action button (Login) */
.btn-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 32px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 12px;
}

.btn-secondary-action:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-secondary-action:active {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .btn-secondary-action {
        min-height: 44px;
        padding: 0 24px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .btn-secondary-action {
        min-height: 40px;
        padding: 0 20px;
        font-size: 14px;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Remove hearts decoration from Introducing LoveSeek form */
.banner-section .section-wrapper .banner-content .intro-form::before,
.banner-section .section-wrapper .banner-content .intro-form::after {
    display: none !important;
}

/* Add curved borders and glass effect to the form */
.banner-section .section-wrapper .banner-content .intro-form {
    border-radius: 24px !important;
    overflow: hidden;
    background: rgba(49, 19, 91, 0.3) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 3px solid #ffffff !important;
}

/* Remove background from inner form */
.banner-section .section-wrapper .banner-content .intro-form .intro-form-inner {
    background: transparent !important;
}

/* Increase intro form text sizes */
.banner-section .section-wrapper .banner-content .intro-form .intro-form-inner h3 {
    font-size: 34px !important;
}

.banner-section .section-wrapper .banner-content .intro-form .intro-form-inner p {
    font-size: 18px !important;
}

/* Make header transparent on initial load (not scrolled) */
.header-section {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Glass effect for fixed header when scrolled */
.header-section.header-fixed .header-bottom {
    background: rgba(49, 19, 91, 0.3) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

/* Remove animation delay for instant glass effect */
.header-section.header-fixed {
    animation: none !important;
    -webkit-animation: none !important;
    top: 0 !important;
}

/* Consistent spacing between form rows */
.banner-form .city,
.banner-form .gender,
.banner-form .person,
.banner-form .age {
    margin-bottom: 20px !important;
}

/* Smaller spacing for ApplyStep1 and MainSiteForm only */
#applyModal .banner-form .city,
#applyModal .banner-form .gender,
.intro-form .banner-form .city,
.intro-form .banner-form .gender {
    margin-bottom: 12px !important;
}

/* Form subtitle for sections like "Interested Age of Women/Men" */
.banner-form .form-subtitle {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 8px;
    padding-left: 30%;
    text-align: left;
    opacity: 0.9;
}

/* Yellow button style for form */
.banner-form .btn-primary-action,
.banner-form button.btn-primary-action {
    margin-top: 30px;
    background: #FFD600 !important;
    border: 3px solid #FFD600 !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
    color: #000000 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    padding: 0 32px !important;
    min-height: 56px !important;
    height: auto !important;
    line-height: normal !important;
    font-family: inherit !important;
    transition: all 0.3s ease !important;
}

.banner-form .btn-primary-action:hover,
.banner-form button.btn-primary-action:hover {
    background: #E5C200 !important;
    border-color: #E5C200 !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25) !important;
    transform: translateY(-2px);
}

/* Make text input fields match select box curved borders */
.banner-form .gender input,
.banner-form .gender select,
.banner-form .person input,
.banner-form .person select,
.banner-form .age input,
.banner-form .age select,
.banner-form .city input,
.banner-form .city select,
.banner-form input[type="text"],
.banner-form input[type="date"] {
    border-radius: 12px !important;
    -webkit-border-radius: 12px !important;
    -moz-border-radius: 12px !important;
}

/* Banner content top padding for desktop and tablet only - NOT mobile */
@media (min-width: 768px) {
    .banner-section .section-wrapper .banner-content {
        padding-top: 60px !important;
    }
}

/* Ensure no padding on mobile */
@media (max-width: 767px) {
    .banner-section .section-wrapper .banner-content {
        padding-top: 0 !important;
    }
}

/* Reduce banner section padding-top */
@media (min-width: 576px) {
    .banner-section {
        padding-top: 100px !important;
    }
}

/* Hide header top section */
.header-top {
    display: none !important;
}

/* Mission section styling */
.mission-section {
    background-color: #210053;
    background-image: url(/assets/images/bg2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.mission-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.mission-section .container {
    position: relative;
    z-index: 2;
}


.mission-content h4 {
    color: #FFD600;
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 30px;
    text-align: center;
}

.mission-content h4:first-child {
    margin-top: 0;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    text-align: center !important;
}

/* Mission content mobile and tablet padding */
@media (max-width: 991px) {
    .banner-section {
        padding-top: 100px !important;
    }
}

/* Hide unnecessary sections */
.about-section,
.work-section,
.top-member-section,
.group-section,
.clints-section {
    display: none !important;
}

/* App section with gradient background */
.app-section {
    background: linear-gradient(to top right, #FF0000 0%, #FF00A1 100%) !important;
}

.app-section .app-content p {
    font-size: 18px;
    line-height: 1.8;
}

.app-section .app-content h4 {
    font-size: 26px;
}

.app-section .app-content h2 {
    font-size: 40px;
}

/* App store buttons border radius */
.app-download li a {
    border-radius: 16px !important;
}

/* Newsletter input field and button styles */
.footer-middle-item-3 .form-control {
    border-radius: 16px !important;
}

.footer-middle-item-3 .lab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 32px;
    background: linear-gradient(to top right, #FF0000 0%, #FF00A1 100%) !important;
    border: none;
    border-radius: 50px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-middle-item-3 .lab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Scroll to top button style */
a.scrollToTop {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    color: #ffffff !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 999 !important;
}

a.scrollToTop i {
    font-size: 32px !important;
    line-height: 1 !important;
}

a.scrollToTop i::before {
    border: none !important;
    background: transparent !important;
}

a.scrollToTop::before,
a.scrollToTop::after {
    display: none !important;
}

a.scrollToTop:hover {
    transform: translateY(-2px) scale(1.1) !important;
    color: #FFD600 !important;
}

a.scrollToTop:active {
    transform: translateY(0) !important;
}

/* Increase section header font sizes */
.section-header h2 {
    font-size: 42px !important;
}

.section-header h4 {
    font-size: 22px !important;
}

/* Increase general paragraph text */
body p {
    font-size: 17px;
}

/* Lighter purple for examples section */
#examples {
    background-color: #391965 !important;
}

/* Video thumbnail with play button styles */
.video-thumb-container {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.video-thumb-container:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
}

.video-thumb-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-thumb-container:hover .play-button-overlay {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay i {
    font-size: 32px;
    color: #210053;
    margin-left: 4px;
}

.video-thumb-title {
    text-align: center;
    margin-top: 20px;
}

.video-thumb-title h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
}

.video-thumb-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

/* Modal Styling - Override Bootstrap completely */
#applyModal .modal-content,
#birthSelectorModal .modal-content,
#videoPlayerModal .modal-content,
#loginModal .modal-content {
    width: 100%;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    position: relative;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

#applyModal .modal-dialog,
#birthSelectorModal .modal-dialog,
#loginModal .modal-dialog {
    width: 500px;
    max-width: 500px;
    margin: 1.75rem auto;
}

@media (max-width: 767px) {

    #applyModal .modal-dialog,
    #birthSelectorModal .modal-dialog,
    #loginModal .modal-dialog {
        width: auto;
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
}

#applyModal .modal-body,
#birthSelectorModal .modal-body,
#loginModal .modal-body {
    padding: 0 !important;
    background: transparent !important;
}

#applyModal .modal-header,
#birthSelectorModal .modal-header,
#loginModal .modal-header {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

#applyModal .intro-form,
#birthSelectorModal .intro-form,
#loginModal .intro-form {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 24px !important;
    background: rgba(49, 19, 91, 0.3) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 3px solid #ffffff !important;
    padding: 30px 30px;
    position: relative;
    box-sizing: border-box;
}

#applyModal .intro-form::before,
#applyModal .intro-form::after,
#birthSelectorModal .intro-form::before,
#birthSelectorModal .intro-form::after,
#loginModal .intro-form::before,
#loginModal .intro-form::after {
    display: none !important;
}

#applyModal .intro-form-inner,
#birthSelectorModal .intro-form-inner,
#loginModal .intro-form-inner {
    background: transparent !important;
    width: 100%;
}

/* Modal Header Styling */
#applyModal .modal-header-custom,
#birthSelectorModal .modal-header-custom,
#loginModal .modal-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#applyModal .modal-header-custom h3,
#birthSelectorModal .modal-header-custom h3,
#loginModal .modal-header-custom h3 {
    margin: 0;
    font-size: 34px !important;
    font-weight: 600;
    color: #ffffff;
}

/* Close button in header - SVG X icon */
#applyModal .modal-close-btn,
#birthSelectorModal .modal-close-btn,
#loginModal .modal-close-btn {
    position: relative;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#applyModal .modal-close-btn svg,
#birthSelectorModal .modal-close-btn svg,
#loginModal .modal-close-btn svg {
    display: block;
    transition: all 0.3s ease;
}

#applyModal .modal-close-btn:hover svg path,
#birthSelectorModal .modal-close-btn:hover svg path,
#loginModal .modal-close-btn:hover svg path {
    stroke: #FFD600;
}

#applyModal .modal-close-btn:hover,
#birthSelectorModal .modal-close-btn:hover,
#loginModal .modal-close-btn:hover {
    transform: scale(1.1);
}

/* Modal backdrop darker */
.modal-backdrop.show {
    opacity: 0.7 !important;
    background-color: #000000 !important;
}

/* Form validation error styling */
.banner-form input.input-error,
.banner-form select.input-error {
    border: 1px solid #FFD600 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 214, 0, 0.25) !important;
}

.banner-form input.input-error:focus,
.banner-form select.input-error:focus {
    border-color: #FFD600 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 214, 0, 0.5) !important;
}

/* Birth date fields - 3 fields in one row */
.birth-date-fields {
    display: flex;
    gap: 10px;
    width: 100%;
}

.birth-date-field {
    position: relative;
    flex: 1;
}

.birth-date-field input.select-styled {
    width: 100%;
    padding-right: 30px;
    cursor: pointer;
    background: transparent;
}

/* CSS triangle arrow matching custom-select */
.birth-date-field::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #ffffff transparent transparent transparent;
    pointer-events: none;
}

/* Hide colon for empty labels */
.banner-form label.empty-label::after {
    display: none !important;
}

/* Back button in modal header */
#applyModal .modal-back-btn,
#birthSelectorModal .modal-back-btn {
    position: relative;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#applyModal .modal-back-btn svg,
#birthSelectorModal .modal-back-btn svg {
    display: block;
    transition: all 0.3s ease;
}

#applyModal .modal-back-btn:hover svg path,
#birthSelectorModal .modal-back-btn:hover svg path {
    stroke: #FFD600;
}

#applyModal .modal-back-btn:hover,
#birthSelectorModal .modal-back-btn:hover {
    transform: scale(1.1);
}

/* Video Player Modal */
#videoPlayerModal .modal-dialog {
    max-width: none;
    width: auto;
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    margin: 32px auto !important;
}

#videoPlayerModal .video-modal-content {
    background: transparent !important;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#videoPlayerModal .video-player-container {
    position: relative;
    height: 100%;
    width: calc((100vh - 120px) * 9 / 16);
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid #ffffff;
    background: #000000;
}

#videoPlayerModal .video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000000;
}

#videoPlayerModal .video-modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#videoPlayerModal .video-modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

#videoPlayerModal .video-modal-close-btn svg {
    display: block;
    transition: all 0.3s ease;
}

#videoPlayerModal .video-modal-close-btn:hover svg path {
    stroke: #FFD600;
}

@media (max-width: 767px) {
    #videoPlayerModal .modal-dialog {
        max-width: 95vw;
        margin: 32px auto !important;
    }

    #videoPlayerModal .video-modal-close-btn {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }

    #videoPlayerModal .video-modal-close-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Birth selector list */
.birth-selector-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px 0;
    margin-right: -30px;
    padding-right: 38px;
}

/* Birth selector item */
.birth-selector-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.birth-selector-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.birth-selector-item.selected {
    background: #FFD600;
    border-color: #FFD600;
    color: #000000;
}

.birth-selector-item.selected:hover {
    background: #E5C200;
    border-color: #E5C200;
}

/* Custom scrollbar for birth selector list */
.birth-selector-list::-webkit-scrollbar {
    width: 8px;
}

.birth-selector-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.birth-selector-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.birth-selector-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Override yellow button styling for modal - use gradient instead */
#applyModal .banner-form .btn-primary-action,
#applyModal .banner-form button.btn-primary-action,
#applyModal .btn-primary-action,
#loginModal .banner-form .btn-primary-action,
#loginModal .banner-form button.btn-primary-action,
#loginModal .btn-primary-action {
    background: linear-gradient(to top right, #FF0000 0%, #FF00A1 100%) !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
    color: #ffffff !important;
}

#applyModal .banner-form .btn-primary-action:hover,
#applyModal .banner-form button.btn-primary-action:hover,
#applyModal .btn-primary-action:hover,
#loginModal .banner-form .btn-primary-action:hover,
#loginModal .banner-form button.btn-primary-action:hover,
#loginModal .btn-primary-action:hover {
    background: linear-gradient(to top right, #E50000 0%, #E5008F 100%) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25) !important;
    color: #ffffff !important;
}

/* Age selector spacing - only for Step 3 */
#applyModal .banner-form .city .age-fields {
    padding: 20px 0;
}

/* Email field spacing - only for Step 4 */
#applyModal .banner-form .city.email-field-row {
    padding: 4px 0;
}

#applyModal .banner-form .city.email-field-row .right input {
    width: 100%;
}

/* Vertically center the colon separator in intro-form */
.intro-form .banner-form .city,
.intro-form .banner-form .gender {
    display: flex;
    align-items: center;
}

.intro-form .banner-form .city .left,
.intro-form .banner-form .gender .left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30%;
    min-width: 30%;
}

.intro-form .banner-form .city .left:after,
.intro-form .banner-form .gender .left:after {
    position: static;
    margin-left: auto;
    padding-left: 5px;
    padding-right: 10px;
}

/* Hide colon for empty label rows */
.intro-form .banner-form .city .left.empty-label:after {
    content: "" !important;
    visibility: hidden;
}

/* Make banner-thumb smaller on desktop to avoid overlap with header */
@media (min-width: 992px) {
    .banner-section .section-wrapper .banner-thumb {
        max-width: 95%;
        margin-top: 20px;
    }

    .banner-section .section-wrapper .banner-thumb img {
        max-height: 90vh;
        object-fit: contain;
    }
}

/* Error message styling */
.error-message {
    color: #FFD600;
    font-size: 14px;
    margin-top: 5px;
}

/* Ethnicity selector list */
.ethnicity-selector-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px 0;
    margin-right: -30px;
    padding-right: 38px;
}

/* Ethnicity selector item */
.ethnicity-selector-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.ethnicity-selector-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.ethnicity-selector-item.selected {
    background: #FFD600;
    border-color: #FFD600;
    color: #000000;
}

.ethnicity-selector-item.selected:hover {
    background: #E5C200;
    border-color: #E5C200;
}

/* Custom scrollbar for ethnicity selector list */
.ethnicity-selector-list::-webkit-scrollbar {
    width: 8px;
}

.ethnicity-selector-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.ethnicity-selector-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.ethnicity-selector-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Footer about image curved borders */
.footer-abt-img {
    border-radius: 16px;
}

/* Footer Quick Links - show bullets and underline on hover */
.footer-middle-item .fm-item-content ul {
    list-style-type: disc !important;
    padding-left: 20px !important;
}

.footer-middle-item .fm-item-content ul li {
    list-style: disc !important;
    display: list-item !important;
    margin-bottom: 10px !important;
}

.footer-middle-item .fm-item-content ul li:last-child {
    margin-bottom: 0 !important;
}

.footer-middle-item .fm-item-content ul li::marker {
    color: #ffffff !important;
}

.footer-middle-item .fm-item-content ul li a {
    text-decoration: none;
}

.footer-middle-item .fm-item-content ul li a:hover {
    text-decoration: underline;
}

/* Privacy Policy content - show bullets */
.privacy-policy-content ul {
    list-style-type: disc !important;
}

.privacy-policy-content ul li {
    list-style: disc !important;
    display: list-item !important;
}

.privacy-policy-content ul li::marker {
    color: #ffffff !important;
}