.highlighter {
    position: relative;
    display: inline-block;
    z-index: 0;
    font-weight: 700;
    color: var(--primary);
}

.ico-ios {
    width: 28px;
    height: 28px;
    font-size: 0;
    &::before {
        content: '';
        background: url('/images/home/ico-ios.svg?055') no-repeat;
        background-size: 100%;
        display: block;
        width: 100%;
        height: 100%;
        filter: var(--filter-white);
    }
}

.ico-aos {
    width: 28px;
    height: 28px;
    font-size: 0;
    &::before {
        content: '';
        background: url('/images/home/ico-aos.svg?02') no-repeat;
        background-size: 100%;
        display: block;
        width: 100%;
        height: 100%;
        filter: var(--filter-white);
    }
}
.ico-email {
    width: 28px;
    height: 28px;
    font-size: 0;
    &::before {
        content: '';
        background: url('/images/home/ico-email.svg') no-repeat;
        background-size: 100%;
        display: block;
        width: 100%;
        height: 100%;
    }
}

/*sns icon*/
.sns-facebook {
    background: url('/images/home/sns-facebook.svg') no-repeat;
    background-size: 100%;
    display: block;
    width: 22px;
    height: 22px;
    filter: var(--filter-white);
}

.sns-youtube {
    background: url('/images/home/sns-youtube.svg') no-repeat;
    background-size: 100%;
    display: block;
    width: 22px;
    height: 22px;
    filter: var(--filter-white);
}
.sns-instagram {
    background: url('/images/home/sns-instagram.svg') no-repeat;
    background-size: 100%;
    display: block;
    width: 22px;
    height: 22px;
    filter: var(--filter-white);
}

.sns-x {
    background: url('/images/home/sns-x.svg') no-repeat;
    background-size: 100%;
    display: block;
    width: 22px;
    height: 22px;
    filter: var(--filter-white);
}

.sns-google {
    background: url('/images/home/sns-google.svg') no-repeat;
    background-size: 100%;
    display: block;
    width: 22px;
    height: 22px;
}
/**************************************/
/******본문 시작***********************/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #2a2a2a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;

    .header-container {
        width: 100%;
        margin: 0;
        padding: 0 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        box-sizing: border-box;
    }

    .logo-section {
        display: flex;
        align-items: center;
        .logo-img {
            width: auto;
            height: 30px;

            filter: var(--filter-hotpink);
        }
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
        .header-container {
            padding: 0 16px;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
        }

        .header-right-section {
            gap: 6px;
        }

        .language-select {
            padding: 5px 25px 5px 8px;
            font-size: 13px;
        }

        .logo-section {
            width: 30px;
            height: 30px;
            overflow: hidden;

            .logo-img {
                display: block;
                width: auto;
                height: 100%;
                max-width: none;
                object-fit: cover;
                object-position: center;
            }
        }
    }
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #4caf50;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.header-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.header-right-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

/*sns*/
.header-social-wrap {
    display: flex;
    align-items: center;
    gap: 10px;

    .btn-social-link {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: #000;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;

        &:hover {
            background-color: #111;
            border-color: rgba(255, 255, 255, 0.16);
            transform: translateY(-1px);
        }

        &:focus-visible {
            outline: none;
            border-color: #4caf50;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
        }
    }
}

/*언어*/
.language-selector {
    position: relative;
    display: inline-block;

    &::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 12px;
        width: 10px;
        height: 6px;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
        transform: translateY(-50%);
        pointer-events: none;
    }
}

.language-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: #333;
    color: #ffffff;
    border: 1px solid #444;
    height: 36px;
    border-radius: 8px;

    padding: 0 36px 0 12px;
    font-size: 14px;
    cursor: pointer;

    transition: background-color 0.3s, border-color 0.3s;

    &:hover {
        background-color: #444;
        border-color: #555;
    }

    &:focus {
        outline: none;
        background-color: #444;
    }
}

.login-section {
    display: flex;
    align-items: center;
    gap: 10px;

    .btn-login,
    .btn-logout {
        cursor: pointer;
        transition: opacity 0.3s;
        background: var(--gray-200);
        color: var(--black);
    }
    .btn-home {
        background: var(--gr-primary-1);
        color: var(--white);
    }
}

/* Hero Section */
.hero-section {
    height: calc(100vh - 55px);
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }
}

.hero-container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 40px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-left {
    height: 100%;
    display: flex;
    align-items: center;
}

.sidebar-icons {
    position: absolute;
    left: 0;
    top: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.sidebar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

.sidebar-icon:hover {
    transform: scale(1.1);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 35px;
    align-items: center;
    text-align: center;
    position: relative;
    height: 100%;
    width: 100%;
    padding-bottom: 140px;

    .main-logo {
        .main-logo-img {
            height: 100px;
            width: auto;
            filter: var(--filter-hotpink);
        }
    }
    .main-logo-text {
        font-size: 72px;
        font-weight: bold;
        color: #ffffff;
        text-transform: lowercase;
        letter-spacing: 2px;
    }
    .stats {
        display: flex;
        align-items: center;
        gap: 10px;

        font-size: 20px;
    }

    .online-dot {
        display: inline-block;
        width: 6px;
        height: 6px;
        background: #4caf50;
        border-radius: 100px;

        animation: onlinePulseGlow 1.6s ease-in-out infinite;
    }

    .controls-bar {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-start;

        .start-chat-btn {
            background-color: #ffffff;
            padding: 18px 30px;
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 800;
            transition: all 0.3s;
            justify-content: center;
            margin: 0 auto;

            &:visited,
            &:link {
                color: #1a1a1a;
                text-decoration: none;
            }

            &:hover {
                background-color: #f0f0f0;
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            }
        }
    }
}

.hero-bottom-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    padding: 0 16px;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    text-wrap: balance;
    pointer-events: none;
}

.hero-bottom-copy > div + div {
    margin-top: 8px;
}

@media all and (max-width: 1024px) {
    .hero-content {
        padding-bottom: 170px;
    }
    .hero-bottom-copy {
        bottom: 16px;
        font-size: 15px;
        line-height: 1.45;
        font-weight: 700;
        padding: 0 12px;
    }
}
@media all and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px 16px;

        .hero-left {
            height: auto;
            padding: 25px 16px;
        }
    }

    .hero-content {
        height: auto;
        min-height: auto;
        gap: clamp(14px, 1.339vw + 9.714px, 20px);
        .main-logo {
            .main-logo-img {
                height: 50px;
                width: auto;
                filter: var(--filter-hotpink);
            }
        }
        .main-logo-text {
            font-size: 72px;
            font-weight: bold;
            color: #ffffff;
            text-transform: lowercase;
            letter-spacing: 2px;
        }
        .stats {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: clamp(15px, 1.116vw + 11.429px, 20px);
            .stats-text {
                color: var(--gray-400);
            }
        }
        .controls-bar {
            .emoji-icon {
                width: 24px;
                height: 24px;
            }
            .start-chat-btn {
                padding: 10px 16px;
                gap: 6px;
                font-size: 15px;
            }
        }
    }
}
@keyframes onlinePulseGlow {
    0% {
        transform: scale(1);
        opacity: 1;
        text-shadow: 0 0 0 rgba(76, 175, 80, 0);
    }
    50% {
        transform: scale(1.4);
        opacity: 0.7;
        text-shadow: 0 0 8px rgba(76, 175, 80, 0.8);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        text-shadow: 0 0 0 rgba(76, 175, 80, 0);
    }
}

.mobile-settings-btn {
    display: none;
}

.control-btn:hover {
    background-color: #333;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.emoji-icon {
    width: 28px;
    height: 28px;
}

.profile-preview {
    display: flex;
    gap: 3px;
}

.mini-profile {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid #ffffff;
}

/* Right Panel - Vertical Sliders */
.hero-right {
    height: 100%;
    overflow: hidden;
}

.vertical-sliders {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    height: 100%;
}

.vertical-slider {
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.slider-track {
    display: flex;
    flex-direction: column;
    height: auto;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

.slider-up-infinite .slider-track {
    animation-name: slideUpInfinite;
}

.slider-down-infinite .slider-track {
    animation-name: slideDownInfinite;
}

.vertical-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    flex-shrink: 0;

    margin: 4px 0;
}

.vertical-image-placeholder {
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .hero-right {
        height: calc(100vh - 285px);
        /* border: 5px solid red; */

        .vertical-sliders {
            grid-template-columns: repeat(3, 1fr);
            min-height: 400px;
        }
    }
}

/* Mobile Profile Grid */
.mobile-profile-grid {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.profile-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.profile-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
}

.online-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #4caf50;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}

.profile-info {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.profile-name {
    font-weight: 500;
}

.country-flag {
    font-size: 16px;
}

/* Slider Animations */
@keyframes slideUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes slideUpInfinite {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes slideDownInfinite {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

/*===========  02 Video Chat Section ===========*/
.video-chat-section {
    padding: 80px 0;
    background: var(--gr-primary-1);
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.section-description {
    font-size: 18px;
    color: #cccccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.feature-box {
    background: rgb(var(--rgb-white), 30%);
    padding: 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;

    .feature-icon {
        margin-bottom: 10px;
        width: 60px;
        height: 60px;
    }

    .feature-title {
        font-size: 50px;
        margin-bottom: 10px;
        color: var(--black);
        font-weight: 800;
    }

    .feature-description {
        font-size: 18px;
        color: var(--gray-800);
    }
}

@media all and (max-width: 768px) {
    .feature-box {
        padding: 16px;
        border-radius: 16px;

        .feature-icon {
        }

        .feature-title {
            font-size: clamp(20px, 2.232vw + 12.857px, 30px);
        }

        .feature-description {
            font-size: 16px;
        }
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.faq-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #2a2a2a;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    background-color: #333;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
}

.faq-arrow {
    font-size: 14px;
    color: #4caf50;
    transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: var(--gray-400);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    border-top: 1px solid #333;

    .footer-top-box {
        padding: 40px 0 50px;
    }

    .footer-brand {
        text-align: center;
        font-size: 36px;
        font-weight: bold;
    }

    .footer-logo {
    }

    .footer-sub-logo {
        font-size: 14px;
        color: #888;
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin: 20px 0;
    }

    .footer-link {
        color: #cccccc;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s;
    }

    .footer-link:hover {
        color: #ffffff;
    }

    .separator {
        color: #666;
    }

    .footer-info {
        text-align: center;
        color: #888;
        font-size: 14px;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 0;
        border-top: 1px solid #333;
    }

    .copyright {
        color: #888;
        font-size: 14px;
    }
}

.download-buttons {
    display: flex;
    gap: 8px;
}

.download-btn {
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 14px;
    transition: background-color 0.3s;
    gap: 8px;
}

.download-btn:hover {
    background-color: #333;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    transition: background-color 0.3s;
}

.social-icons .social-icon:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .header-right {
        gap: 10px;
    }

    .header-link {
        display: none;
    }

    .login-section {
        gap: 5px;
    }

    .login-text {
        background-color: #ffffff;
        color: #1a1a1a;

        font-weight: 500;
    }

    .section-title {
        font-size: 32px;
    }

    .faq-title {
        font-size: 32px;
    }

    .feature-box {
        padding: 25px;
    }

    .video-chat-section {
        padding: 50px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        position: relative;
        height: 100vh;
        max-height: 100vh;
        overflow: hidden;
    }

    .sidebar-icons {
        display: none;
    }

    .mobile-settings-btn {
        display: none;
    }

    /* 모바일에서 슬라이더 2개 표시 */
    .vertical-sliders {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        height: calc(100vh - 90px);
        /* padding: 5px; */
        padding-bottom: 120px;
        overflow-y: auto;
    }

    .vertical-slider {
        height: 100%;
        min-height: 750px;
        max-height: 750px;
    }

    .slider-track {
        height: 200%;
    }

    .vertical-image {
        height: 50%;
        min-height: 375px;
    }

    .mobile-profile-grid {
        display: none;
    }

    .profile-card {
        background-color: #1a1a1a;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
    }

    .profile-image-placeholder {
        width: 100%;
        aspect-ratio: 3/4;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .online-badge {
        position: absolute;
        top: 8px;
        left: 8px;
        background-color: rgba(76, 175, 80, 0.9);
        color: #ffffff;
        padding: 4px 8px;
        border-radius: 12px;
        font-size: 10px;
        font-weight: bold;
    }

    .profile-info {
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        color: #ffffff;
    }

    .profile-name {
        font-weight: 500;
    }

    .country-flag {
        font-size: 16px;
    }

    .controls-bar::after {
        content: '모든 사진은 모델이며 설명 목적으로만 사용됩니다.';
        display: block;
        width: 100%;
        margin-top: 15px;
        font-size: 12px;
        color: #888;
        text-align: center;
        order: 4;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .separator {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-right-section {
        gap: 8px;
    }

    .header-social-icons {
        gap: 8px;
    }

    .header-social-link {
        width: 32px;
        height: 32px;
    }

    .language-select {
        padding: 4px 22px 4px 7px;
        font-size: 12px;
    }

    .main-logo-text {
        font-size: 36px;
    }

    .section-title {
        font-size: 24px;
    }

    .faq-title {
        font-size: 24px;
    }

    .vertical-sliders {
        grid-template-columns: repeat(2, 1fr);
    }

    /* .hero-section {
        height: 100vh;
        max-height: 100vh;
        overflow: hidden;
    } */

    .feature-box {
        padding: 20px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.modal-signup {
    max-width: 700px;
    padding: 30px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;

    .modal-logo {
        height: 50px;
        width: auto;
        filter: var(--filter-hotpink);
    }
}

.modal-stats {
    text-align: center;
    margin-bottom: 40px;
}

.modal-stats-number {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.modal-stats-text {
    font-size: 16px;
    color: #cccccc;
}

.modal-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    justify-content: flex-start;
    background: var(--gray-100);
    color: var(--gray-800);

    .ico-ios {
        &::before {
            filter: var(--filter-black) !important;
        }
    }
    .ico-google {
        &::before {
            filter: invert(48%) sepia(48%) saturate(583%) hue-rotate(84deg) brightness(102%) contrast(93%);
        }
    }
}

.social-facebook {
    background-color: #ffffff;
    color: #1a1a1a;
}

.social-facebook:hover {
    background-color: #f0f0f0;
}

.social-phone {
    background-color: #ffffff;
    color: #1a1a1a;
}

.social-icon-google {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
}

.social-icon-facebook {
    width: 24px;
    height: 24px;
    background-color: #1877f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
}

.social-icon-phone {
    font-size: 20px;
}

.modal-footer-link {
    text-align: center;
    margin-top: 20px;
}

.contact-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #cccccc;
}

/* Signup Form Styles */
.modal-signup-header {
    margin-bottom: 30px;
}

.modal-signup-header h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;

    text-align: center;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    background-color: #3a3a3a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: #888;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gender-buttons {
    display: flex;
    gap: 10px;
}

.gender-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #3a3a3a;
    color: #ffffff;
}

.gender-btn.active {
    background-color: #4caf50;
    color: #ffffff;
}

.gender-btn:hover {
    background-color: #4a4a4a;
}

.gender-btn.active:hover {
    background-color: #45a049;
}

.signup-submit-btn {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 16px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.signup-submit-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.signup-legal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.legal-btn {
    flex: 1;
    padding: 10px;
    background-color: #3a3a3a;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.legal-btn:visited,
.legal-btn:link {
    color: #ffffff;
    text-decoration: none;
}

.legal-btn:hover {
    background-color: #4a4a4a;
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.signup-agreement-text {
    text-align: center;
    color: #cccccc;
    font-size: 12px;
    margin-top: 10px;
}

/* Email Login Modal Styles */
.modal-email-login {
    max-width: 500px;
    padding: 40px;
}

.email-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.email-login-header h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
}

.email-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.email-login-form .form-group {
    margin-bottom: 0;
}

.email-login-form input {
    background-color: #3a3a3a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.email-login-form input::placeholder {
    color: #888;
}

.email-login-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.email-login-submit-btn {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 16px;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    width: 100%;
}

.email-login-submit-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
        align-items: flex-end;
    }

    .modal-container {
        padding: 25px 20px;
        width: 100%;
        max-width: 100%;
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        margin: 0;
    }

    .modal-signup {
        padding: 20px 16px;
        max-height: 95vh;
    }

    .modal-email-login {
        padding: 25px 16px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .modal-header {
        margin-bottom: 20px;
        .modal-logo {
            height: 30px;
        }
    }

    .modal-stats {
        margin-bottom: 25px;
    }

    .modal-stats-number {
        font-size: 32px;
    }

    .modal-social-buttons {
        gap: 10px;
        margin-bottom: 20px;
    }

    .social-btn {
        padding: 14px 16px;
        font-size: 15px;
        gap: 12px;
    }

    .social-icon-google,
    .social-icon-facebook {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .social-icon-phone,
    .social-icon-apple {
        font-size: 18px;
    }

    .modal-footer-link {
        margin-top: 15px;
    }

    .contact-link {
        font-size: 13px;
    }

    .modal-signup-header {
        margin-bottom: 20px;
    }

    .modal-signup-header h2 {
        font-size: 18px;
    }

    .email-login-header {
        margin-bottom: 20px;
    }

    .email-login-header h2 {
        font-size: 18px;
    }

    .signup-form,
    .email-login-form {
        gap: 16px;
    }

    .form-group {
        gap: 6px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select {
        padding: 14px 14px;
        font-size: 16px;
    }

    .password-input-wrapper input {
        padding-right: 40px;
    }

    .password-toggle {
        right: 10px;
        font-size: 16px;
    }

    .gender-buttons {
        gap: 8px;
    }

    .gender-btn {
        padding: 14px;
        font-size: 14px;
    }

    .signup-submit-btn,
    .email-login-submit-btn {
        padding: 16px;
        font-size: 16px;
        margin-top: 5px;
    }

    .signup-legal-buttons {
        gap: 8px;
        margin-top: 8px;
    }

    .legal-btn {
        padding: 12px 8px;
        font-size: 12px;
    }

    .signup-agreement-text {
        font-size: 11px;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 0;
    }

    .modal-container {
        padding: 20px 16px;
        border-radius: 16px 16px 0 0;
        max-height: 95vh;
    }

    .modal-signup {
        padding: 18px 14px;
    }

    .modal-email-login {
        padding: 20px 14px;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .modal-logo {
        height: 45px;
    }

    .modal-stats-number {
        font-size: 28px;
    }

    .social-btn {
        padding: 12px 14px;
        font-size: 14px;
    }

    .modal-signup-header h2,
    .email-login-header h2 {
        font-size: 16px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 12px;
        font-size: 16px;
    }

    .signup-submit-btn,
    .email-login-submit-btn {
        padding: 14px;
        font-size: 15px;
    }

    .gender-btn {
        padding: 12px;
        font-size: 13px;
    }
}

/* Welcome Video Chat Modal Styles */
.modal-welcome-video {
    max-width: 500px;
    padding: 0;
    overflow: hidden;
}

.welcome-video-content {
    display: flex;
    flex-direction: column;
}

.welcome-video-images {
    display: flex;
    gap: 0;
    background-color: #1a1a1a;
    position: relative;
    min-height: 300px;
}

.welcome-image-left,
.welcome-image-right {
    flex: 1;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.welcome-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.welcome-image-female {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.welcome-image-male {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.welcome-image-icons {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.welcome-icon {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.welcome-arrow-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s;
}

.welcome-arrow-btn:hover {
    background-color: #ffffff;
    transform: scale(1.1);
}

.welcome-video-info {
    padding: 30px 40px;
    background-color: #2a2a2a;
}

.welcome-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 16px;
}

.welcome-online-dot {
    color: #4caf50;
    font-size: 20px;
    font-weight: bold;
}

.welcome-stats-text {
    color: #cccccc;
}

.welcome-title {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.welcome-description {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 25px;
}

.welcome-start-btn {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 18px 40px;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block;
}

.welcome-start-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.welcome-start-btn:visited,
.welcome-start-btn:link {
    color: #1a1a1a;
    text-decoration: none;
}

@media (max-width: 768px) {
    .modal-welcome-video {
        max-width: 100%;
        width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
        padding: 0;
    }

    .welcome-video-content {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .welcome-video-images {
        flex-direction: row;
        min-height: auto;
        flex-shrink: 0;
    }

    .welcome-image-left,
    .welcome-image-right {
        min-height: 200px;
        max-height: 200px;
        flex: 1;
    }

    .welcome-image-placeholder {
        min-height: 200px;
        max-height: 200px;
    }

    .welcome-image {
        object-fit: cover;
    }

    .welcome-image-icons {
        left: 10px;
        gap: 10px;
        transform: translateY(-50%);
    }

    .welcome-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .welcome-video-info {
        padding: 20px 16px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow-y: auto;
    }

    .welcome-stats {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .welcome-online-dot {
        font-size: 16px;
    }

    .welcome-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .welcome-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .welcome-start-btn {
        padding: 16px 20px;
        font-size: 16px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-welcome-video {
        border-radius: 16px 16px 0 0;
        max-height: 95vh;
    }

    .welcome-image-left,
    .welcome-image-right {
        min-height: 160px;
        max-height: 160px;
    }

    .welcome-image-placeholder {
        min-height: 160px;
        max-height: 160px;
    }

    .welcome-image-icons {
        left: 8px;
        gap: 8px;
    }

    .welcome-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .welcome-video-info {
        padding: 16px 14px;
    }

    .welcome-stats {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .welcome-online-dot {
        font-size: 14px;
    }

    .welcome-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .welcome-description {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .welcome-start-btn {
        padding: 14px 18px;
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .welcome-image-left,
    .welcome-image-right {
        min-height: 140px;
        max-height: 140px;
    }

    .welcome-image-placeholder {
        min-height: 140px;
        max-height: 140px;
    }

    .welcome-video-info {
        padding: 14px 12px;
    }

    .welcome-title {
        font-size: 16px;
    }

    .welcome-description {
        font-size: 11px;
    }

    .welcome-start-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}
