* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.9);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.6) transparent;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000;
    color: #ffffff;
    line-height: 1.6;
}
.yxg-header {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    background-image: url("/images/bg-4.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 5px 25px rgba(0,0,0,0.6);
}

.yxg-container {
    max-width: 1200px;
    margin: auto;
}

.yxg-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.yxg-logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.yxg-logo-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ec4899, #ef4444);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.yxg-logo-icon span {
    font-size: 46px;
    color: white;
    font-weight: bold;
}

.yxg-logo-text h1 {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(to right, #f472b6, #f87171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.yxg-subtitle {
    color: #ccc;
    font-size: 14px;
    margin-top: -5px;
    text-align: center;
}

.yxg-center {
    display: flex;
    justify-content: center;
}

.yxg-url-box {
    padding: 5px 20px;
    border-radius: 10px;
    font-size: 30px;
    font-weight: bold;
    color: white;

    background: linear-gradient(
        to right,
        rgba(59,130,246,0.2),
        rgba(168,85,247,0.2)
    );

    backdrop-filter: blur(5px);
    border: 1px solid rgba(96,165,250,0.4);
}

.yxg-right {
    display: flex;
    justify-content: flex-end;
}

.yxg-video-btn {
    height: 60px;
    padding: 10px 25px;
    border-radius: 12px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #ec4899, #ef4444);
    color: white;

    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);

    transition: all 0.3s ease;
}

.yxg-video-btn:hover {
    background: linear-gradient(135deg, #f43f5e, #dc2626);
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

.header-bottom-line {
    width: 100%;
    height: 1px;

    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.8),
        transparent
    );

    box-shadow: 0 0 8px rgba(255,255,255,0.6);
}

.area-nav-wrap {
    width: 100%;
}

.area-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 5px 0;
}

.area-item {
    background: transparent;
    color: #ffffff;

    font-size: 24px;
    font-weight: 600;

    padding: 6px 10px;
    border-radius: 6px;

    cursor: pointer;
    border: none;

    transition: color 0.25s ease, background 0.25s ease;
}

.area-item:hover {
    color: #ff6aa2;
    background: #1f2933;
}

.area-item.active {
    background: linear-gradient(to right, #ff4d8d, #ff3b3b);
    color: white;
    box-shadow: 0 0 12px rgba(255,70,130,0.6);
}

.area-line {
    height: 1px;
    margin-top: 8px;
    background: linear-gradient(
        to right,
        transparent,
        #ffd700,
        transparent
    );
}
@media (max-width: 1024px) {

    .yxg-logo-text h1 {
        font-size: 40px;
    }

    .yxg-url-box {
        font-size: 22px;
        padding: 6px 16px;
    }

    .yxg-video-btn {
        height: 52px;
        font-size: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {

    .yxg-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }

    .yxg-logo-box {
        justify-content: center;
    }

    .yxg-center {
        justify-content: center;
    }

    .yxg-right {
        justify-content: center;
    }

    .yxg-logo-text h1 {
        font-size: 36px;
    }

    .yxg-url-box {
        font-size: 18px;
    }

    .yxg-video-btn {
        height: 46px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {

    .yxg-logo-icon {
        width: 52px;
        height: 52px;
    }

    .yxg-logo-icon span {
        font-size: 36px;
    }

    .yxg-logo-text h1 {
        font-size: 32px;
    }

    .yxg-url-box {
        font-size: 15px;
        padding: 6px 12px;
    }

    .yxg-video-btn {
        width: 100%;
        max-width: 260px;
    }
}


@media (max-width: 900px) {

    .area-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 12px 15px;
        gap: 18px;
    }

    .area-nav::-webkit-scrollbar {
        display: none;
    }

    .area-item {
        font-size: 18px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {

    .area-item {
        font-size: 16px;
        padding: 6px 12px;
    }
}


.latest-wrap {
    position: relative;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 40px 0;
    border-radius: 20px;
    height: 160px;
    background-image: url("/images/bg-2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.latest-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(1px);
}

.latest-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.latest-title-img {
    height: 80px;
    max-width: 100%;
    border-radius: 10px;

    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.6));
}


@media (max-width: 768px) {
    .latest-wrap {
        padding: 35px 15px;
    }

    .latest-title-img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .latest-title-img {
        height: 42px;
    }
}


.product-slider-wrap {
    position: relative;
    width: 100%;
    margin-top: 5px;
}

.product-slider-window {
    width: 100%;
    overflow: hidden;
}

.product-slider-track {
    display: flex;
    gap: 18px;
    transition: transform 0.4s ease;
}
.product-card {
    flex: 0 0 calc((100% - 72px) / 5);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(0,0,0,0.7);
    background: #000;
}


.card-img {
    position: relative;
    width: 100%;
    height: 320px;
}
.card-img2 {
    position: relative;
    width: 100%;
    height: 280px;
}
.card-img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
}


.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.1)
    );
}

.card-overlay h3 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.card-overlay p {
    font-size: 15px;
    color: #ddd;
}


.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;

    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 22px;

    cursor: pointer;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.25s ease, transform 0.25s ease;
}

.slider-btn.left {
    left: 5px;
}

.slider-btn.right {
    right: 5px;
}

.slider-btn:hover {
    background: #ef4444;
    transform: translateY(-50%) scale(1.05);
}


@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 calc((100% - 54px) / 4);
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 calc((100% - 36px) / 3);
    }

    .card-img {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .product-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }

    .card-img {
        height: 220px;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;

    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 20;

    transition: background 0.25s ease, transform 0.25s ease;
}

.slider-btn.left {
    left: 10px;
}

.slider-btn.right {
    right: 10px;
}

.slider-btn:hover {
    background: rgba(0,0,0,0.75);
    transform: translateY(-50%) scale(1.05);
}


.arrow-icon {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.product-card img {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}
.product-slider-track {
    cursor: grab;
}

.product-slider-track:active {
    cursor: grabbing;
}

.product-slider-wrap,
.product-slider-wrap * {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.product-slider-track {
    cursor: grab;
}

.product-slider-track:active {
    cursor: grabbing;
}

.product-slider-wrap {
    overflow: hidden;
}

.product-slider-track {
    cursor: grab;
}

.product-slider-track:active {
    cursor: grabbing;
}

.product-slider-track img {
    pointer-events: none;
    user-select: none;
}

.home-divider-line {
    width: 100%;
    height: 2px;
    margin-top: 30px;

    background: linear-gradient(
        to right,
        #facc15,
        #ffffff,
        #ec4899
    );

    filter: blur(1px);
    opacity: 3;
}

.filter-wrap {
    width: 100%;
    margin-top: 10px;
    padding: 10px 24px;
    border-radius: 16px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-btn {
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(180deg,#1f2937,#0f172a);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    filter: brightness(1.15);
}

.filter-btn.active {
    background: linear-gradient(135deg,#ff4d8d,#ff3b3b);
    box-shadow: 0 0 12px rgba(255,70,130,0.8);
}


.filter-btn.orange {
    background: linear-gradient(135deg,#f97316,#ea580c);
}

.filter-btn.outline {
    background: transparent;
    border: 2px solid #ff4d8d;
}

.filter-search {
    position: relative;
    margin-left: auto;
}

.filter-search input {
    width: 260px;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    padding: 10px 42px 10px 16px;
    font-size: 15px;
    color: #fff;
}

.filter-search input::placeholder {
    color: #9ca3af;
}

.search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #cbd5f5;
    font-size: 15px;
}

@media (max-width: 900px) {

    .filter-row {
        justify-content: center;
    }

    .filter-search {
        width: 100%;
        margin-left: 0;
    }

    .filter-search input {
        width: 100%;
    }
}

.special-section{
    position: relative;
    width: 100%;
    margin-top: 10px;
    padding: 40px 0;
    height: 160px;
    background-image: url("/images/bg-1.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    border-radius: 20px;
    overflow: hidden;
}

.special-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    backdrop-filter: blur(1px);
}

.special-content{
    position: relative;
    z-index: 2;
    text-align: center;
}

.special-title-img{
    height: 80px;              
    max-width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.6));
}


@media (max-width:768px){
    .special-section{
        padding: 40px 0;
        border-radius: 14px;
    }

    .special-title-img{
        height: 60px;
    }
}

.special-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:20px;
}

@media(max-width:1024px){
    .special-grid{
        grid-template-columns:repeat(3,1fr);
        padding: 0 20px;
    }
}

@media(max-width:540px){
    .special-grid{grid-template-columns:1fr;}
}

.special-card{
    background:#0f0f0f;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 0 15px rgba(0,0,0,.6);
    transition:0.3s;
}

.special-img-wrap{
    position: relative;
    height: 500px;
    overflow: hidden;
}

.special-img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.special-verified{
    position:absolute;
    top:25px;
    left:-60px;

    background:#ef4444;
    color:#fff;
    font-size:14px;
    font-weight:600;

    padding:6px 60px;
    text-align:center;

    transform:rotate(-45deg);
    z-index:5;

    box-shadow:0 2px 6px rgba(0,0,0,0.5);
    pointer-events:none;
}

.special-service{
    position:absolute;
    top:12px;
    right:12px;
    padding:5px;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    color:#fff;

    z-index:4;
}

.special-service.full{
    background:#ff7a00;
}

.special-service.massage{
    background:#22c55e;
}
.special-service .icon{
    font-size:18px;
    line-height:1;
}

.special-overlay-info{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:16px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.4),
        transparent
    );
}

.special-overlay-info h3{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:#fff;
}

.special-overlay-info .meta{
    margin-top:4px;
    font-size:15px;
    color:#ddd;
}

.special-overlay-info .price{
    margin-top:6px;
    font-size:18px;
    font-weight:700;
    color:#ffffff;
}

.special-bottom{
    background:#5b2d7a;
    display:flex;
    justify-content:space-between;
    padding:10px 14px;
    font-size:13px;
    color:#fff;
}

.no-result-box{
    width:100%;
    display:flex;
    justify-content:center;
    margin:20px 0;
}

.no-result-card{
    width:420px;
    max-width:90%;
    padding:50px 40px;
    background:linear-gradient(135deg,#0f172a,#020617);
    border-radius:20px;
    text-align:center;
    color:#fff;
}

.no-result-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#a855f7,#ec4899);
    box-shadow:0 0 30px rgba(236,72,153,.6);
}

.no-result-card h3{
    color:#f472ff;
    font-size:22px;
    margin-bottom:6px;
}

.no-result-card .cn{
    color:#e879f9;
    font-size:15px;
    margin-bottom:20px;
}

.no-result-card .desc{
    color:#cbd5f5;
    font-size:14px;
    line-height:1.6;
}

.no-result-card .divider{
    height:1px;
    background:rgba(255,255,255,.15);
    margin:25px 0;
}

.girl-contact .tip{
    color:#fbbf24;
    font-weight:600;
}


.featured-header{
    position: relative;
    width: 100%;
    margin: 20px 0;
    padding: 40px 0;
    height: 160px;
    background-image: url("/images/bg-2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 20px;
    overflow: hidden;
}

.featured-header-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(1px);
}

.featured-header-content{
    position: relative;
    z-index: 2;
    text-align: center;
}

.featured-header-title{
    height: 80px;
    max-width: 100%;
    border-radius: 12px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.6));
}

.special-video-ribbon{
    position:absolute;
    bottom:18px;
    right:-45px;

    background:#3b82f6;
    color:#fff;

    padding:6px 60px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;

    transform:rotate(-45deg);
    text-align:center;

    box-shadow:0 2px 6px rgba(0,0,0,.6);
    z-index:6;
    pointer-events:none;
}

.normal-header{
    position:relative;
    width:100%;
    margin:20px 0;
    padding:40px 0;
    height: 160px;
    background-image:url("/images/bg-3.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    border-radius:20px;
    overflow:hidden;
}

.normal-header-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(1px);
}

.normal-header-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.normal-header-title{
    height: 80px;
    max-width: 100%;
    border-radius: 12px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.6));
}



.girl-box{
    margin:40px auto;
    background:linear-gradient(180deg,#0f172a,#020617);
    border-radius:14px;
    box-shadow:0 0 30px rgba(0,0,0,.7);
    overflow:hidden;
}

.girl-header{
    background:#ff7abf;
    padding:14px;
    font-size:20px;
    font-weight:700;
    color:#fff;
}

.girl-body{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:30px;
    padding:30px;
}



.girl-left img{
    width:100%;
    border-radius:12px;
    object-fit:cover;
}
.girl-right{
    position:relative;
}

.girl-right h2{
    font-size:20px;
    margin-bottom:12px;
}

.girl-right p{
    margin:6px 0;
    font-size:14px;
    color:#ddd;
}

.badge-verified{
    background:#ef4444;
    color:#fff;
    font-size:12px;
    padding:4px 10px;
    border-radius:20px;
    margin-left:10px;
}

.price{
    color:#22c55e;
    font-weight:700;
}


.share-btn{
    width:38px;
    height:38px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:#fff;
}

.wa{background:#22c55e;}
.tg{background:#3b82f6;}
.wechat{background:#10b981;}
.x{background:#000;}
.fb{background:#2563eb;}

.girl-contact{
    border-top:1px solid rgba(255,255,255,.1);
    padding:24px;
    text-align:center;
}


.contact-buttons{
    display:flex;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
    margin:20px 0;
}

.contact-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    min-width:200px;
}

.btn-contact{
    padding:14px 26px;
    border-radius:999px;
    font-weight:700;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    min-width:200px;
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,.35);
}

.contact-text{
    font-size:18px;
    font-weight:700;
    color:#ffffff;
    text-align:center;
    word-break:break-all;
}

.btn-sms{ background:#22c55e; }
.btn-call{ background:#ec4899; }
.btn-tg{ background:#3b82f6; }
.btn-wa{
    background:#25D366; 
}

@media(max-width:768px){
    .contact-item{
        min-width:100%;
    }

    .btn-contact{
        min-width:100%;
    }
}


@media(max-width:768px){
    .girl-body{
        grid-template-columns:1fr;
    }
}
.special-card-link{
    text-decoration: none;
    color: inherit;
    display:block;
}


.girl-title-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;

}

.girl-title-row h2{
    font-size:20px;
    margin:0;
}


.girl-badges{
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:center;
}


.girl-badges span{
    width:190px;            
    height:36px;             
    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
    color:#fff;
}

.badge-verified{
    background:#ef4444;
}

.badge-normal{
    background:#64748b;
}

.badge-full{
    background:#fb923c;
}



.girl-info-list{
    margin-top: -40px;
}

.girl-info-list p{
    margin:6px 0;
    font-size:18px;
    color:#ddd;
}

.price-line{
    margin-top:12px;
    font-size:15px;
}

.price{
    color:#22c55e;
    font-weight:700;
}


.desc{
    background:#111;
    padding:12px;
    border-radius:8px;
    line-height:1.5;
}


.share-col{
    position:absolute;
    right:0;
    top:140px;

    display:flex;
    flex-direction:column;
    gap:14px;
    align-items:center;
}


.share-title{
    color:#fff;
    font-size:13px;
    padding-top: 20px;
}

.share-btn{
    width:44px;
    height:44px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#111;
}

.share-btn img{
    width:44px;
    height:44px;
    object-fit:contain;
}

.wa{background:#22c55e;}
.tg{background:#3b82f6;}
.wechat{background:#f6f7f6;}
.x{background:#000;}
.fb{background:#2563eb;}

@media(max-width:768px){

    .girl-title-row{
        flex-direction:column;
    }

    .share-col{
        position:static;
        flex-direction:row;
        margin-top:20px;
        justify-content:flex-start;
    }
}


.girl-video-box{
    margin:0;
    background:#0b1220;
    border-radius:12px;
    padding:10px;
}

.girl-video-header{
    background:#ff7abf;
    color:#fff;
    padding:10px 16px;
    font-size:18px;
    font-weight:700;
    border-radius:8px;
    margin-bottom:18px;
}

.girl-video-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}
.girl-video-grid:has(.girl-video-item:only-child){
    grid-template-columns: 1fr;
    justify-items: center;
}

.girl-video-grid:has(.girl-video-item:only-child) .girl-video-item{
    width:100%;
}

.girl-video-item{
    background:#1e293b;
    padding:10px;
    border-radius:10px;

    display:flex;
    justify-content:center;
    align-items:center;
}

.girl-video-item video{
    width:100%;
    max-height:360px;
    border-radius:8px;
    object-fit:contain;
    background:#000;
}


@media(max-width:768px){

    .girl-video-grid{
        grid-template-columns:1fr;
    }

    .girl-video-item video{
        max-height:300px;
    }

}


.girl-service-box{
    margin:30px 0;
    background:#0b1220;
    border-radius:12px;
    padding:20px;
}

.girl-service-header{
    background:#ff7abf;
    color:#fff;
    padding:12px 16px;
    font-size:18px;
    font-weight:700;
    border-radius:8px;
    margin-bottom:18px;
}

.girl-service-content{
    column-count:3;
    column-gap:40px;
    font-size:18px;
    color:#fff;
    line-height:2;
}

@media(max-width:768px){
    .girl-service-content{
        column-count:1;
    }
}

.girl-gallery-box{
    margin:30px 0;
    background:#0b1220;
    border-radius:12px;
    padding:20px;
}

.girl-gallery-header{
    background:#ff7abf;
    color:#fff;
    padding:12px 16px;
    font-size:18px;
    font-weight:700;
    border-radius:8px;
    margin-bottom:18px;
}

.girl-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.girl-gallery-item{
    background:#1e293b;
    border-radius:10px;
    overflow:hidden;
}

.girl-gallery-item img{
    width:100%;
    height:100%;
    aspect-ratio:3/4;
    object-fit:cover;
    display:block;
}

@media(max-width:992px){
    .girl-gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .girl-gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

.girl-gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
    gap:15px;
}

.girl-gallery-item{
    position:relative;
    border-radius:10px;
    overflow:hidden;
    cursor:pointer;
}

.girl-gallery-item img{
    width:100%;
    height:300px;
    object-fit:fill;
    transition:.3s;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.3s;
}

.girl-gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay i{
    color:#fff;
    font-size:20px;
}
.gallery-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}
.lightbox-img-wrap{
    position:relative;
    display:inline-block;
}

.lightbox-img-wrap img{
    max-width:85vw;
    max-height:85vh;
    object-fit:contain;
    border-radius:10px;
}


.gallery-close{
    position:absolute;
    top:-20px;
    right: -50px;
    font-size:60px;
    color:#fff;
    cursor:pointer;
    z-index: 1000;
}


.gallery-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:60px;
    color:#fff;
    cursor:pointer;
    padding:10px;
}

.gallery-lightbox-inner{
    position:relative;
    max-width:90vw;
    max-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

#galleryLightboxImg{
    max-width:100%;
    max-height:90vh;
    border-radius:12px;
}

.gallery-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:48px;
    color:#fff;
    cursor:pointer;
    user-select:none;
    background:rgba(0,0,0,0.5);
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.gallery-nav.prev{ left:-40px; }
.gallery-nav.next{ right:-40px; }

@media(max-width:768px){
    .gallery-nav.prev{ left:-50px; }
    .gallery-nav.next{ right:-50px; }
}

.yxg-home-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 22px;
    border-radius:10px;

    font-size:20px;
    font-weight:900;

    color:#fff;
    text-decoration:none;

    background:linear-gradient(90deg,#ff5fa2,#ff3b3b);
    border:2px solid #ff9ec9;

    box-shadow:0 6px 20px rgba(255,80,150,0.35);

    transition:all .25s ease;
}

.yxg-home-btn:hover{
    background:linear-gradient(90deg,#ff3b3b,#ff5fa2);
    border-color:#ffd1e5;
    transform:translateY(-2px) scale(1.03);
    box-shadow:0 10px 30px rgba(255,80,150,0.55);
}

.girl-stats-box{
    margin:25px 0;
    background:linear-gradient(180deg,#0b1220,#070d18);
    border-radius:14px;
    padding:18px 26px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border:1px solid rgba(255,255,255,0.08);
}

.stat-item{
    color:#fff;
    font-size:18px;
    font-weight:600;
}

.stat-number{
    font-size:22px;
    font-weight:800;
    margin-right:6px;
}

.stat-label{
    opacity:0.9;
}

@media(max-width:768px){
    .girl-stats-box{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}


.girl-comment-box{
    margin:10px 0;
    background:#0b1220;
    border-radius:14px;
    padding:20px;
}
.waning-f {
    font-size: 18px;
    color: #fbbf24;
    font-weight: 700;
}
.girl-comment-header i{
    margin-right:8px;
    font-size:20px;
}

.girl-comment-header{
    background:#ff7abf;
    color:#fff;
    padding:12px 16px;
    font-size:18px;
    font-weight:700;
    border-radius:8px;
    margin-bottom:20px;
}

.no-comment{
    text-align:center;
    color:#cbd5e1;
    padding:40px 10px;
}
.no-comment-icon{
    font-size:40px;
    margin-bottom:10px;
}

.girl-comment-list{
    margin-bottom:30px;
}

.comment-item{
    background:#1e293b;
    border-radius:10px;
    padding:14px;
    margin-bottom:12px;
}

.comment-name{
    font-weight:700;
    color:#ff7abf;
    margin-bottom:4px;
}

.comment-text{
    color:#fff;
    line-height:1.6;
}

.comment-time{
    font-size:12px;
    color:#94a3b8;
    margin-top:6px;
}

.comment-form{
    background:#1e293b;
    border-radius:12px;
    padding:20px;
}

.comment-form h3{
    color:#fff;
    margin-bottom:14px;
}

.comment-form label{
    color:#fff;
    display:block;
    margin-bottom:6px;
}

.comment-form input,
.comment-form textarea{
    width:100%;
    padding:12px;
    border-radius:8px;
    border:none;
    background:#334155;
    color:#fff;
    margin-bottom:14px;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder{
    color:#94a3b8;
}

.comment-form button{
    background:#ff7abf;
    border:none;
    color:#fff;
    padding:12px 22px;
    border-radius:8px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;

    display:block;
    margin:20px auto 0;   
}


.comment-form button:hover{
    background:#ff5fa9;
}
.no-comment-icon i{
    font-size:48px;
    color:#9ca3af;
}

button i{
    margin-right:6px;
}


.today-pick-header-img{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
}

.today-pick-header-img img{
    display:block;
    margin:0 auto;
    max-width:100%;
    height:80px;
    object-fit:contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
}
.no-click{
    cursor: default;
}

.no-click:hover{
    transform: none;
}


.verified-nearby-box{
    margin-top:40px;
    background:linear-gradient(180deg,#0f172a,#020617);
    padding:20px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.08);
}

.verified-nearby-header{
    background:linear-gradient(90deg,#3b82f6,#8b5cf6);
    padding:12px 16px;
    border-radius:10px;
    font-size:18px;
    font-weight:700;
    color:#fff;
    margin-bottom:18px;
}

.verified-nearby-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:16px;
}

.verified-card{
    text-decoration:none;
}

.verified-img{
    position:relative;
    border-radius:12px;
    overflow:hidden;
    background:#000;
}

.verified-img img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.3s ease;
}

.verified-card:hover img{
    transform:scale(1.05);
}

.verified-badge{
    position:absolute;
    top:8px;
    right:8px;
    background:#ef4444;
    color:#fff;
    font-size:12px;
    padding:4px 8px;
    border-radius:12px;
    font-weight:700;
}

.verified-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:10px;
    background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
    color:#fff;
}

.verified-info h4{
    margin:0;
    font-size:14px;
    font-weight:700;
}

.verified-info p{
    margin:3px 0 0;
    font-size:13px;
    color:#e5e7eb;
}

.verified-nearby-header{
    display:flex;
    align-items:center;
    gap:10px;
}

.verified-icon{
    width:24px;
    height:24px;
    background:#22c55e;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.verified-icon span{
    color:#fff;
    font-size:14px;
    font-weight:900;
    line-height:1;
}

.floating-telegram{
    position:fixed;
    bottom:10px;
    left:50%;
    transform:translateX(-50%);
    width:72px;
    height:72px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    z-index:9999;
    animation:pulseTG 2.5s infinite;
    transition:transform .25s ease, box-shadow .25s ease;
    text-decoration:none;
}

.floating-telegram:hover{
    transform:translateX(-50%) scale(1.1);
}

.tg-inner{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:2px;
    animation:bounceTG 4s infinite;
}

.tg-inner i{
    font-size:60px;
    color: #27a3f7;
}

.tg-text{
    font-size:16px;
    font-weight:700;
    line-height:2;
}


@keyframes bounceTG{
    0%,90%,100%{
        transform:translateY(0);
    }
    92%{
        transform:translateY(-6px);
    }
    95%{
        transform:translateY(0);
    }
    97%{
        transform:translateY(-3px);
    }
}
.girl-description{
    grid-column:1 / -1; 
    background:#0b1220;
    padding:10px;
    border-radius:12px;

    display:flex;
    flex-direction:column;
}

.desc-title{
    font-size:20px;
    font-weight:700;
    color:#fff;
    display:block;
}

.desc-content{
    font-size:18px;
    line-height:1.7;
    color:#ddd;
    white-space:pre-line;
    display:block;
}

