@import "styles/variables.php";
@import "styles/header.css";
@import "styles/footer.css";
@import "styles/index.css";
@import "styles/video.css";

* 
{
    border:0;
    padding:0;
    margin:0;
    box-sizing: border-box;
}

body, html
{


    scroll-behavior: smooth;
    max-width: 100vw;
    margin:0;
    padding:0;
    background:white;
    font-family:var(--fontFamily);
    position:relative;
    scroll-behavior: smooth;
    overflow-x:hidden !important;

}

body 
{
    overflow-x:hidden;
}


.body--open 
{
    overflow-y:hidden !important;
}





/* Comments */

.t-comments .title{
    font-size: 18px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.t-comments .comments-login-info{
    margin-top: 20px;
    margin-bottom: 50px;
}

.t-comments .comments-login-info a{
    color: #d00482;
}

.t-comments .add-comment-form{
    display: flex;
    margin-top: 20px;
}
.t-comments .add-comment-form .avatar{
    display: flex;
    flex: 1;
    max-width: 140px;
    justify-content: center;
}
.t-comments .add-comment-form .avatar .inner{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #252525;
    display: flex;
    align-items: center;
    justify-content: center;
}
.t-comments .add-comment-form .avatar i{
    color: #fff;
    font-size: 40px;
}
.t-comments .add-comment{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.t-comments .textarea-holder{
    width: 100%;
    position: relative;
}
.t-comments .textarea-holder:before{
    display: inline-block;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent #252525 transparent transparent;
    position: absolute;
    top: 25px;
    left: -15px;
}
.t-comments .add-comment textarea{
    width: 100%;
    border: 0;
    background: #252525;
    font-size: 16px;
    color: #cbcbcb;
    font-family: Exo\ 2, sans-serif !important;
    min-height: 100px;
    padding: 15px;
    position: relative;
}
.t-comments .add-comment button{
    margin-top: 20px;
    display: inline-flex;
    background: #58b4c4;
    border: 2px solid #58b4c4;
    font-size: 16px;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: Exo\ 2, sans-serif !important;
    height: 40px;
    border-radius: 10px;
    padding: 0 20px;
    text-transform: uppercase;
}
.t-comments .add-comment button:hover{
    border: 2px solid #fff;
}
.t-comments .comments-order{
    display: flex;
    padding: 0;
    border-bottom: 1px solid #252525;
    margin-top: -30px;
}
.t-comments .comments-order li{
    display: inline-flex;
    align-items: center;
    margin-bottom: -1px;
    border-bottom: 1px solid #252525;
}
.t-comments .comments-order li.active{
    border-bottom: 1px solid #58b4c4;
}
.t-comments .comments-order a{
    padding: 15px 20px;
    color: #000;
}
.t-comments .comments-order li.active a,
.t-comments .comments-order a:hover{
    color: #d00482;
}
.t-comments .comments-list{
    
}
.t-comments .comment-item{
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #252525;
    width: 100%;
}
.t-comments .comment-item .comment-item{
    display: flex;
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #252525;
    border-bottom: 0;
}
.t-comments .comment-left{
    display: flex;
    flex: 1;
    max-width: 140px;
    justify-content: center;
}
.t-comments .comment-left .avatar{
    display: flex;
    flex: 1;
    max-width: 140px;
    justify-content: center;
}
.t-comments .comment-left .avatar .inner{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #252525;
    display: flex;
    align-items: center;
    justify-content: center;
}
.t-comments .comment-left .avatar i{
    color: #fff;
    font-size: 40px;
}
.t-comments .comment-right{
    flex: 1;
}
.t-comments .top-info{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #58b4c4;
    font-weight: 800;
    font-size: 17px;
}
.t-comments .added-date{
    font-size: 15px;
    color: #fff;
}
.t-comments .comment-body{
    font-size: 16px;
    line-height: 24px;
    color: #cbcbcb;
    text-align: justify;
    margin-bottom: 10px;
}
.t-comments .comment-actions{
    display: flex;
}
.t-comments .action{
    margin-right: 10px;
    padding-right: 10px;
    display: inline-flex;
    align-items: center;
    border-right: 1px solid #252525;
}
.t-comments .action:last-child{
    border: 0;
}
.t-comments .action i{
    margin-right: 4px;
}
.t-comments .action i:hover,
.t-comments .action a:hover{
    color: #58b4c4;
}
.t-comments .reply-comment{
    margin-top: 20px;
}
.t-comments .edit-comment .actions,
.t-comments .reply-comment .actions{
    text-align: right;
}
.t-comments .edit-comment textarea,
.t-comments .reply-comment textarea{
    width: 100%;
    border: 0;
    background: #252525;
    font-size: 16px;
    color: #cbcbcb;
    font-family: Exo\ 2, sans-serif !important;
    padding: 15px;
    position: relative;
}
.t-comments .edit-comment .btn,
.t-comments .reply-comment .btn{
    margin-top: 20px;
    display: inline-flex;
    background: #58b4c4;
    border: 2px solid #58b4c4;
    font-size: 16px;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: Exo\ 2, sans-serif !important;
    height: 30px;
    border-radius: 5px;
    padding: 0 15px;
    text-transform: uppercase;
    margin-left: 10px;
}
.t-comments .edit-comment .btn[data-action="cancel-edit-comment"],
.t-comments .reply-comment .btn[data-action="cancel-reply-comment"]{
    background: #7c7c7c;
    border: 2px solid #7c7c7c;
}

.t-comments .original-comment{
    display: none;
}

.loader-wrapper{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 70px;
}

.load-more-comments{
    margin-bottom: 20px;
    display: inline-flex;
    background: #58b4c4;
    border: 2px solid #58b4c4;
    font-size: 16px;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: Exo\ 2, sans-serif !important;
    height: 40px;
    border-radius: 10px;
    padding: 0 20px;
    cursor: pointer;
    margin-top: 10px;
    text-transform: uppercase;
}

.load-more-comments:hover{
    border: 2px solid #fff;
}

@media(max-width: 1000px){
    .t-comments .comment-left{
        display: none;
    }
    .t-comments .comment-item .comment-item .comment-right{
        padding-left: 40px;
    }
}
@media(max-width: 800px){
    .t-comments .comments-order{
        margin-top: 0;
    }
}
/* EOF Comments */

/* CSS Loader */

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

/* EOF CSS Loader */
.top-models-page { min-height: 100vh; background: #f8f9fa; }

.top-models-hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 3rem 2rem 2rem; text-align: center; }
.page-title { font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 0.75rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.page-title i { color: #ffd700; font-size: 1.75rem; }
.page-subtitle { font-size: 1rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; }

.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.stat-card { background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); border-radius: 16px; padding: 1.25rem; display: flex; align-items: center; gap: 1rem; transition: all 0.3s ease; }
.stat-card:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }
.stat-icon { width: 45px; height: 45px; background: linear-gradient(135deg, #ff4157 0%, #ff6b7a 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: white; flex-shrink: 0; }
.stat-content { text-align: left; flex: 1; }
.stat-number { font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.5px; }

.filters-section { background: #fff; padding: 1.5rem; border-bottom: 2px solid #e9ecef; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.filter-group { margin-bottom: 1rem; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group label { display: block; color: #495057; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem; }
.filter-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn { padding: 0.5rem 1rem; background: #f8f9fa; border: 2px solid #dee2e6; border-radius: 8px; color: #495057; text-decoration: none; font-weight: 600; font-size: 0.8125rem; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.filter-btn:hover { background: #e9ecef; border-color: #adb5bd; color: #212529; transform: translateY(-1px); }
.filter-btn.active { background: linear-gradient(135deg, #ff4157 0%, #ff6b7a 100%); border-color: #ff4157; color: white; box-shadow: 0 4px 12px rgba(255,65,87,0.3); }

.models-section { padding: 2rem 1rem; background: #f8f9fa; }
.leaderboard-list { display: flex; flex-direction: column; gap: 1rem; }
.leaderboard-item { background: #fff; border: 2px solid #e9ecef; border-radius: 16px; padding: 1.25rem; display: grid; grid-template-columns: 50px 100px 1fr auto auto; gap: 1.25rem; align-items: center; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.leaderboard-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); border-color: #ff4157; }
.leaderboard-item.online { border-color: #2ecc71; background: linear-gradient(to right, #fff 0%, #f0fff4 100%); }

.rank-badge { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 1.25rem; font-weight: 900; flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.rank-1 { background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%); color: #1a1a1a; }
.rank-2 { background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%); color: #1a1a1a; }
.rank-3 { background: linear-gradient(135deg, #cd7f32 0%, #e5a564 100%); color: #fff; }
.rank-other { background: #f8f9fa; color: #6c757d; font-size: 1rem; border: 2px solid #dee2e6; }

.model-image { position: relative; flex-shrink: 0; }
.model-image img { width: 100px; height: 100px; object-fit: cover; border-radius: 12px; border: 3px solid #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.online-indicator { position: absolute; top: 6px; left: 6px; background: #2ecc71; color: white; padding: 3px 8px; border-radius: 6px; font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; gap: 3px; box-shadow: 0 2px 8px rgba(46,204,113,0.4); }
.trending-badge { position: absolute; top: 6px; right: 6px; background: linear-gradient(135deg, #ff4157 0%, #ff6b7a 100%); color: white; padding: 3px 8px; border-radius: 6px; font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; gap: 3px; box-shadow: 0 2px 8px rgba(255,65,87,0.4); }

.model-info { flex: 1; min-width: 0; }
.model-name { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.model-name a { color: #212529; text-decoration: none; }
.model-name a:hover { color: #ff4157; }
.model-meta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.meta-item { color: #6c757d; font-size: 0.8125rem; display: flex; align-items: center; gap: 0.4rem; }
.meta-item i { color: #adb5bd; }

.model-stats { display: flex; gap: 1.5rem; flex-shrink: 0; }
.stat-item { text-align: center; min-width: 80px; }
.stat-item i { color: #adb5bd; font-size: 0.875rem; margin-bottom: 0.25rem; }
.stat-item.primary strong { color: #ff4157; font-size: 1.375rem; }
.stat-item strong { display: block; font-size: 1.125rem; font-weight: 700; color: #212529; margin-bottom: 0.25rem; }
.stat-item span { display: block; font-size: 0.6875rem; color: #ffffff; text-transform: uppercase; letter-spacing: 0.5px; }

.main__statsContainer { display: grid; grid-template-columns: 1fr 280px; gap: 20px; align-items: start; }
.main__statsGrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 10px; }
.main__statsSidePhoto { position: sticky; top: 20px; width: 100%; }
.main__photoWrapper { position: relative; width: 100%; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; cursor: pointer; background: #0f0f1e; box-shadow: 0 3px 15px rgba(0,0,0,0.3); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.main__photoWrapper:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255,65,87,0.4); }
.main__photoWrapper img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.main__photoWrapper:hover img { transform: scale(1.05); }
.main__photoOverlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255,65,87,0.8) 0%, rgba(255,65,87,0.95) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; transition: opacity 0.3s ease; }
.main__photoWrapper:hover .main__photoOverlay { opacity: 1; }
.main__photoOverlay i { font-size: 32px; color: #fff; }
.main__photoCount { font-size: 13px; font-weight: 700; color: #fff; background: rgba(0,0,0,0.3); padding: 5px 12px; border-radius: 15px; text-transform: uppercase; letter-spacing: 0.5px; }

.main__statItem { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); border: 1px solid rgba(255,255,255,0.05); border-radius: 6px; padding: 10px 12px; display: flex; align-items: center; gap: 10px; transition: all 0.3s ease; }
.main__statItem:hover { border-color: rgba(255,65,87,0.3); transform: translateX(2px); }
.main__statItem--highlight { border-color: rgba(255,65,87,0.4); background: linear-gradient(135deg, #1f1f3a 0%, #1a2338 100%); }
.main__statIcon { font-size: 16px; color: #ff4157; min-width: 20px; text-align: center; }
.main__statContent { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.main__statLabel { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.3px; }
.main__statValue { font-size: 13px; font-weight: 600; color: #fff; }
.main__statItem.online .main__statIcon { color: #00ff88; animation: pulse 2s ease-in-out infinite; }
.main__statItem.offline .main__statIcon { color: #666; }

.btn-view-profile { padding: 0.75rem 1.5rem; background: linear-gradient(135deg, #ff4157 0%, #ff6b7a 100%); color: white; text-decoration: none; border-radius: 12px; font-weight: 700; font-size: 0.875rem; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; white-space: nowrap; flex-shrink: 0; box-shadow: 0 4px 12px rgba(255,65,87,0.3); }
.btn-view-profile:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,65,87,0.5); }

.no-results { text-align: center; padding: 4rem 2rem; color: #6c757d; background: #fff; border-radius: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.no-results i { font-size: 3rem; margin-bottom: 1rem; color: #adb5bd; }
.no-results h3 { font-size: 1.25rem; color: #212529; margin-bottom: 0.5rem; }

.profile-header { display: flex; gap: 25px; align-items: center; margin-bottom: 25px; flex-wrap: wrap; }
.profile-image { flex-shrink: 0; width: 180px; height: 180px; border-radius: 12px; overflow: hidden; border: 3px solid #ff4157; box-shadow: 0 8px 25px rgba(255,65,87,0.3); }
.profile-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.profile-image:hover img { transform: scale(1.05); }
.profile-intro { flex: 1; min-width: 250px; }
.profile-intro h2 { margin: 0 0 10px 0; font-size: 28px; }
.profile-intro .tagline { color: #ff6b6b; font-weight: 600; font-size: 16px; margin: 0; }
.main__p .profile-text-image { float: right; width: 180px; height: 180px; border-radius: 12px; object-fit: cover; border: 3px solid #ff4157; box-shadow: 0 8px 25px rgba(255,65,87,0.3); margin: 0 0 20px 25px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.main__p .profile-text-image:hover { transform: scale(1.03); box-shadow: 0 12px 35px rgba(255,65,87,0.4); }

.main__videoGallery { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.main__heroGallery { display: flex; flex-direction: column; height: 100%; min-height: 400px; }
.heroGallery__main { position: relative; flex: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; cursor: pointer; background: #0a0a14; }
.heroGallery__main img { max-width: 100%; max-height: 500px; object-fit: contain; transition: transform 0.3s; }
.heroGallery__main img:hover { transform: scale(1.02); }
.heroGallery__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.6); color: #fff; border: none; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 18px; transition: all 0.3s; display: flex; align-items: center; justify-content: center; z-index: 10; }
.heroGallery__nav:hover { background: rgba(233,30,99,0.8); transform: translateY(-50%) scale(1.1); }
.heroGallery__nav--prev { left: 15px; }
.heroGallery__nav--next { right: 15px; }
.heroGallery__counter { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.7); color: #fff; padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 500; }
.heroGallery__status { position: absolute; top: 15px; left: 15px; padding: 8px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.heroGallery__status.online { background: rgba(76,175,80,0.9); color: #fff; }
.heroGallery__status.online i { animation: pulse 1.5s infinite; }
.heroGallery__thumbs { display: flex; gap: 8px; padding: 12px; background: rgba(0,0,0,0.3); overflow-x: auto; justify-content: center; }
.heroGallery__thumb { flex-shrink: 0; width: 70px; height: 70px; border-radius: 8px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: all 0.3s; opacity: 0.6; }
.heroGallery__thumb:hover { opacity: 0.9; transform: scale(1.05); }
.heroGallery__thumb.active { border-color: #e91e63; opacity: 1; }

.main__offlineHero { display: flex; align-items: center; justify-content: center; min-height: 400px; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%); border-radius: 12px; position: relative; overflow: hidden; }
.offlineHero__content { text-align: center; padding: 40px 20px; position: relative; z-index: 1; }
.offlineHero__icon { font-size: 64px; color: #7c7cba; margin-bottom: 20px; animation: pulse 3s ease-in-out infinite; }
.offlineHero__title { font-size: 28px; font-weight: 700; color: #ffffff; margin: 0 0 10px 0; }
.offlineHero__subtitle { font-size: 14px; color: #a0a0b0; margin: 20px 0 20px 0; }
.offlineHero__button { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%); color: #ffffff; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 15px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(255,107,107,0.3); }
.offlineHero__button:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(255,107,107,0.4); }

.video-overlay { display: none; position: absolute; inset: 0; background: rgba(0,0,0,0.85); z-index: 1000; justify-content: center; align-items: center; }
.pt-overlay { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; z-index: 50; background: rgba(0,0,0,.85); }
.pt-overlay.show { display: flex; }

.seo-content-section { background: #fff; padding: 3rem 2rem; border-top: 0.5px solid #e5e7eb; }
.seo-content { max-width: 1200px; margin: 0 auto; line-height: 1.8; }
.seo-content h2 { font-size: 1.75rem; font-weight: 600; color: #111; margin: 0 0 1rem; line-height: 1.3; }
.seo-lead { font-size: 1.0625rem; color: #6b7280; margin: 0 0 2.5rem; max-width: 820px; line-height: 1.8; }

/* Grid van content-blokken */
.seo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: #e5e7eb; border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; margin: 0 0 2.5rem; }
.seo-grid-item { background: #fff; padding: 1.5rem; }
.seo-grid-item h3 { font-size: 1rem; font-weight: 600; color: #111; margin: 0 0 0.5rem; }
.seo-grid-item p { font-size: 0.9375rem; color: #6b7280; margin: 0; line-height: 1.7; }

/* Checklijst */
.seo-list { list-style: none; padding: 0; margin: 0 0 2.5rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0; }
.seo-list li { display: flex; align-items: flex-start; gap: 12px; padding: 0.875rem 0; border-bottom: 1px solid #f3f4f6; color: #6b7280; font-size: 0.9375rem; line-height: 1.6; }
.seo-list li:last-child { border-bottom: none; }
.seo-list li i { color: #16a34a; flex-shrink: 0; margin-top: 3px; }
.seo-list li strong { display: block; color: #111; font-weight: 600; margin-bottom: 2px; }

/* CTA balk */
.seo-cta { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 10px; padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.seo-cta-text { flex: 1; min-width: 200px; }
.seo-cta-text p { margin: 0; font-size: 1rem; color: #6b7280; line-height: 1.6; }
.seo-cta-text strong { color: #111; }
.seo-cta-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; background: #111; border-radius: 8px; font-size: 0.9375rem; font-weight: 600; color: #fff; text-decoration: none; white-space: nowrap; }
.seo-cta-btn:hover { background: #333; }

/* Performer Bio */
.performer-bio.mature-profile { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; line-height: 1.7; color: #333; max-width: 100%; margin: 0 auto; padding: 20px; }
.performer-bio h1 { font-size: 1.8rem; font-weight: 700; color: #1a1a1a; margin-bottom: 1rem; line-height: 1.3; }
.performer-bio h2 { font-size: 1.25rem; font-weight: 700; color: #2d2d2d; margin: 1.5rem 0 0.75rem 0; padding-bottom: 0; border-bottom: none; }
.performer-bio .intro { font-size: 1.1rem; color: #444; margin-bottom: 1.5rem; padding: 1rem; background: linear-gradient(135deg, #fff5f7 0%, #fff 100%); border-left: 4px solid #c41230; border-radius: 0 8px 8px 0; }

.pt-kwiky { margin: 16px 0 4px; }
.pt-kwiky__card { display: flex; align-items: center; gap: 14px; padding: 10px 14px 10px 10px; background: linear-gradient(135deg, #1c1c1e, #2a1a30); border: 1px solid rgba(212,160,23,.2); border-radius: 10px; text-decoration: none; transition: all .2s; max-width: 380px; }

/* ── Offline widget ── */

.offlinePivot{padding:14px;background:#1a2235;color:#e8ecf3}
.offlinePivot__head{display:flex;align-items:center;gap:10px;margin-bottom:14px}
.offlinePivot__avatar{width:44px;height:44px;border-radius:50%;overflow:hidden;flex-shrink:0;background:#2a3245;display:flex;align-items:center;justify-content:center;font-weight:600;color:#c8b8d8;font-size:16px}
.offlinePivot__avatar img{width:100%;height:100%;object-fit:cover}
.offlinePivot__info{flex:1;min-width:0}
.offlinePivot__name{font-size:15px;font-weight:500;color:#fff}
.offlinePivot__sub{font-size:12px;color:#8b96a8;margin-top:2px}
.offlinePivot__notify{background:transparent;border:1px solid #3a4458;color:#c8d1e0;font-size:12px;padding:6px 12px;border-radius:8px;text-decoration:none;white-space:nowrap;display:inline-flex;align-items:center;gap:4px}
.offlinePivot__notify:hover{background:#2a3245;color:#fff}

.offlinePivot__banner{background:rgba(255,135,78,0.08);border:1px solid rgba(255,135,78,0.3);border-radius:8px;padding:10px 12px;margin-bottom:10px;font-size:13px;display:flex;align-items:center;gap:8px}
.offlinePivot__dot{width:8px;height:8px;background:#4ade80;border-radius:50%;animation:opPulse 2s infinite}
@keyframes opPulse{0%,100%{opacity:1}50%{opacity:.5}}

.offlinePivot__tags{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:12px}
.offlinePivot__tag{background:#1e2a3f;color:#7aa7d9;font-size:11px;padding:4px 9px;border-radius:999px;text-decoration:none}
.offlinePivot__tag:hover{background:#2a3a5a;color:#a8c7e8}

.offlinePivot__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin-bottom:14px}
@media(min-width:600px){.offlinePivot__grid{grid-template-columns:repeat(4,1fr)}}

.offlinePivot__card{background:#0e1525;border-radius:8px;overflow:hidden;text-decoration:none;color:inherit;display:block;transition:transform .15s}
.offlinePivot__card:hover{transform:translateY(-2px)}
.offlinePivot__cardImg{position:relative;aspect-ratio:4/3;background:#0a1020;overflow:hidden}
.offlinePivot__cardImg img{width:100%;height:100%;object-fit:cover}
.offlinePivot__cardLive{position:absolute;top:6px;left:6px;background:rgba(0,0,0,.7);color:#fff;font-size:10px;padding:2px 6px;border-radius:4px;display:flex;align-items:center;gap:3px;font-weight:600}
.offlinePivot__cardLive span{width:5px;height:5px;background:#ef4444;border-radius:50%}
.offlinePivot__cardViewers{position:absolute;bottom:6px;right:6px;background:rgba(0,0,0,.7);color:#fff;font-size:10px;padding:2px 6px;border-radius:4px}
.offlinePivot__cardName{padding:6px 8px;font-size:12px;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

.offlinePivot__cta{display:flex;align-items:center;justify-content:center;gap:6px;width:100%;background:#ea580c;color:#fff;padding:12px;border-radius:8px;text-decoration:none;font-weight:500;font-size:14px;box-sizing:border-box}
.offlinePivot__cta:hover{background:#c2470a;color:#fff}

/* Animations */
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.05); } }

/* Responsive */
@media (max-width: 1200px) { 
    .main__statsContainer { grid-template-columns: 1fr 245px; gap: 15px; }
    .leaderboard-item { grid-template-columns: 45px 90px 1fr; grid-template-rows: auto auto; }
}
@media (max-width: 768px) { 
    .main__statsContainer { grid-template-columns: 1fr; gap: 15px; }
    .main__statsGrid { grid-template-columns: 1fr; }
    .main__statsSidePhoto { position: relative; top: 0; max-width: 350px; margin: 0 auto; }
    .page-title { font-size: 1.5rem; }
    .leaderboard-item { grid-template-columns: 1fr; text-align: center; }
    .profile-header { flex-direction: column; text-align: center; }
    .profile-image { width: 150px; height: 150px; }
}
@media (max-width: 480px) { 
    .main__offlineHero { min-height: 300px; }
}

/* ── PT-OVERLAY — performer page overlays ── */
.pt-overlay{position:absolute !important;inset:0 !important;width:100% !important;height:100% !important;display:none;align-items:center;justify-content:center;z-index:50;background:rgba(10,10,20,.85) !important;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px)}
.pt-overlay.show{display:flex !important;align-items:center !important;justify-content:center !important}
.pt-overlay__box{text-align:center;color:#fff;padding:32px 28px;background:linear-gradient(145deg,rgba(30,30,40,.96),rgba(20,20,30,.98));border-radius:14px;max-width:400px;width:88%;border:1px solid rgba(255,135,78,.15);margin:auto;box-shadow:0 20px 60px rgba(0,0,0,.5)}
.pt-overlay__box h2{font-size:20px;margin:0 0 8px;color:#ff874e;font-weight:700;letter-spacing:.02em}
.pt-overlay__box p{font-size:13px;margin:0 0 18px;color:#b0b4be;line-height:1.6}
.pt-overlay__box a{display:inline-flex;align-items:center;gap:8px;padding:11px 26px;background:linear-gradient(135deg,#ff874e,#e85d04);color:#fff;text-decoration:none;border-radius:8px;font-weight:700;font-size:14px;letter-spacing:.03em;transition:transform .15s,box-shadow .15s;box-shadow:0 4px 16px rgba(255,135,78,.3)}
.pt-overlay__box a:hover{transform:translateY(-1px);box-shadow:0 6px 24px rgba(255,135,78,.45)}
.pt-overlay__btn{display:inline-flex;align-items:center;gap:8px;padding:11px 26px;background:linear-gradient(135deg,#ff874e,#e85d04);color:#fff;border:none;border-radius:8px;font-weight:700;font-size:14px;cursor:pointer;transition:transform .15s,box-shadow .15s;box-shadow:0 4px 16px rgba(255,135,78,.3)}
.pt-overlay__btn:hover{transform:translateY(-1px);box-shadow:0 6px 24px rgba(255,135,78,.45)}
.pt-overlay__sub{display:block;margin-top:12px;font-size:11px;color:#6b7280}
.pt-overlay__dismiss{cursor:pointer;text-decoration:underline;transition:color .15s}
.pt-overlay__dismiss:hover{color:#ff874e}
.pt-overlay__close{position:absolute;top:10px;right:12px;background:rgba(255,255,255,.08);border:none;color:#9ca3af;font-size:20px;cursor:pointer;z-index:51;width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:background .15s,color .15s}
.pt-overlay__close:hover{background:rgba(255,135,78,.2);color:#fff}
.pt-overlay--fixed{position:fixed !important;inset:0 !important;width:100% !important;height:100% !important;z-index:9000 !important}

/* Responsive */
@media (max-width: 768px) {
    .main__stats, .main__schedule, .main__details, .main__gallery, .main__text, .main__joinSection { margin: 8px; padding: 12px; }
    .main__statsGrid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .schedule__grid { grid-template-columns: repeat(4, 1fr); }
    .main__galleryGrid { grid-template-columns: repeat(4, 1fr); }
    .main__heroGallery { min-height: 280px; }
    .heroGallery__main img { max-height: 300px; }
    .heroGallery__thumb { width: 50px; height: 50px; }
}
@media (max-width: 480px) {
    .schedule__grid { grid-template-columns: repeat(3, 1fr); }
    .main__statsGrid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   15. PERFORMER TEMPLATE — nieuwe mv-* classes
   ========================================================================== */

/* ── Page header ── */
.page-header            { padding: 10px 16px !important; margin-bottom: 0 !important; background: #fff !important; border-bottom: 2px solid #e91e63 !important; border-radius: 0 !important; box-shadow: none !important; }
.page-header::before    { display: none !important; }
.page-header__title     { font-size: 14px !important; font-weight: 700 !important; letter-spacing: .06em !important; text-transform: uppercase !important; color: #1f2937 !important; margin: 0 !important; }

/* ── Video ratio ── */
.mv-ratio               { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.mv-ratio iframe,
.mv-ratio video         { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; overflow: hidden; }
#iframe-container       { overflow: hidden !important; }
#iframe-container iframe { overflow: hidden !important; scrollbar-width: none !important; }

/* ── Join button ── */
.mv-join                { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px 20px; background: #e91e63; color: #fff; text-decoration: none; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; border: none; cursor: pointer; transition: background .2s; }
.mv-join:hover          { background: #e85d04; color: #fff; }

/* ── Topbar ── */
.mv-topbar              { display: flex; align-items: center; gap: 10px; padding: 8px 12px; background: #fff; border-bottom: 1px solid #e5e7eb; flex-wrap: wrap; }
.mv-topbar__left        { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.mv-topbar__right       { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.mv-avatar              { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid #e91e63; flex-shrink: 0; }
.mv-info                { min-width: 0; }
.mv-name                { font-size: 14px; font-weight: 700; color: #1f2937; display: flex; align-items: center; gap: 5px; flex-wrap: wrap; line-height: 1.3; }
.mv-badge               { font-size: 9px; padding: 1px 5px; border-radius: 2px; font-weight: 700; white-space: nowrap; }
.mv-badge--hd           { background: #dbeafe; color: #1d4ed8; }
.mv-badge--new          { background: #fff3e6; color: #e91e63; }
.mv-badge--star         { background: #fef9c3; color: #a16207; }
.mv-meta                { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.mv-meta-item           { font-size: 10px; color: #9ca3af; display: flex; align-items: center; gap: 2px; }
.mv-meta-item i         { color: #ffffff; font-size: 9px; }
.mv-subject             { flex: 1; min-width: 0; font-size: 11px; color: #6b7280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 5px 10px; background: #f9fafb; border-radius: 4px; border-left: 2px solid #e91e63; }

/* ── Save / Next / Ext ── */
.mv-save, .mv-next, .mv-ext { display: inline-flex; align-items: center; gap: 5px; padding: 7px 12px; border-radius: 5px; font-size: 11px; font-weight: 700; cursor: pointer; text-decoration: none; border: none; white-space: nowrap; transition: all .2s; text-transform: uppercase; letter-spacing: .3px; }
.mv-save                { background: #e91e63; color: #fff; }
.mv-save:hover          { background: #e85d04; color: #fff; }
.mv-save.saved          { background: #16a34a; color: #fff; }
.mv-next                { background: #4f46e5; color: #fff; }
.mv-next:hover          { background: #4338ca; color: #fff; }
.mv-ext                 { background: #f3f4f6; color: #374151; border: 1px solid #e5e7eb; }
.mv-ext:hover           { background: #e5e7eb; }
.mv-saved-link          { display: none; align-items: center; gap: 4px; font-size: 11px; color: #9ca3af; text-decoration: none; padding: 7px 10px; border-radius: 5px; border: 1px solid #e5e7eb; }
.mv-saved-link:hover    { color: #e91e63; border-color: #e91e63; }

/* ── Activity strip ── */
.mv-strip               { display: flex; overflow-x: auto; scrollbar-width: none; background: #fff; border-bottom: 1px solid #e5e7eb; }
.mv-strip::-webkit-scrollbar { display: none; }
.mv-strip__item         { flex: 0 0 auto; padding: 7px 14px; border-right: 1px solid #f3f4f6; min-width: 75px; }
.mv-strip__label        { font-size: 9px; color: #9ca3af; text-transform: uppercase; letter-spacing: .4px; }
.mv-strip__val          { font-size: 12px; font-weight: 700; color: #1f2937; margin-top: 1px; }
.mv-strip__val--green   { color: #16a34a; }
.mv-strip__val--orange  { color: #e91e63; }

/* ── Tabs ── */
.mv-tabs                { display: flex; background: #fff; border-bottom: 2px solid #e5e7eb; overflow-x: auto; scrollbar-width: none; position: sticky; top: 56px; z-index: 10; }
.mv-tabs::-webkit-scrollbar { display: none; }
.mv-tab-btn             { flex: 0 0 auto; padding: 9px 13px; font-size: 11px; font-weight: 600; color: #9ca3af; background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; white-space: nowrap; text-transform: uppercase; letter-spacing: .3px; display: flex; align-items: center; gap: 4px; transition: color .15s, border-color .15s; }
.mv-tab-btn:hover       { color: #6b7280; }
.mv-tab-btn.active      { color: #e91e63; border-bottom-color: #e91e63; }
.mv-panel               { display: none; }
.mv-panel.active        { display: block; }

/* ── Custom text ── */
.mv-custom-text         { padding: 20px 20px 0; background: #fff; }
.mv-custom-text h1,
.mv-custom-text h2      { font-size: 16px !important; font-weight: 700 !important; color: #e91e63 !important; margin: 10px 0 6px !important; text-transform: uppercase !important; letter-spacing: .04em !important; }
.mv-custom-text h1::after,
.mv-custom-text h2::after { display: block; content: ''; height: 2px; background: linear-gradient(90deg,#e91e63,transparent); margin: 6px 0 12px; }
.mv-custom-text p,
.mv-custom-text .main__p { font-size: 13px !important; line-height: 1.75 !important; color: #374151 !important; margin: 10px 0 12px !important; }
.mv-custom-text p:last-child { margin-bottom: 0 !important; }
.mv-custom-text-sep     { height: 1px; background: #e5e7eb; margin: 16px 0 0; }

/* ── History ── */
.mv-hist-grid           { display: grid; grid-template-columns: repeat(auto-fill,minmax(140px,1fr)); gap: 6px; padding: 12px; }
.mv-hist-item           { padding: 8px 10px; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 6px; }
.mv-hist-label          { font-size: 9px; color: #9ca3af; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 2px; }
.mv-hist-val            { font-size: 12px; font-weight: 600; color: #1f2937; }
.mv-hist-sub            { font-size: 10px; color: #9ca3af; margin-top: 1px; }
.mv-hist-val--green     { color: #16a34a; }
.mv-hist-val--orange    { color: #e91e63; }
.mv-hist-item--link     { text-decoration: none; border-color: rgba(255,135,78,.3) !important; background: rgba(255,135,78,.04) !important; transition: background .15s, border-color .15s; }
.mv-hist-item--link:hover { background: rgba(255,135,78,.1) !important; border-color: #e91e63 !important; }

/* ── Weekday activity ── */
.mv-weekday             { padding: 6px 12px 12px; }
.mv-weekday-title       { font-size: 11px; font-weight: 700; color: #374151; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.mv-weekday-title i     { color: #e91e63; }
.mv-day-row             { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.mv-day-label           { font-size: 11px; color: #6b7280; width: 80px; flex-shrink: 0; }
.mv-day-bar             { flex: 1; height: 6px; background: #f3f4f6; border-radius: 3px; overflow: hidden; }
.mv-day-fill            { height: 100%; background: #e91e63; border-radius: 3px; }
.mv-day-time            { font-size: 10px; color: #9ca3af; width: 90px; flex-shrink: 0; text-align: right; font-family: monospace; }
.mv-day-check           { font-size: 10px; color: #16a34a; width: 14px; text-align: center; flex-shrink: 0; }

/* ── Schedule time-display (UTC→local) ── */
.schedule__time .time-display { display: block; font-size: 11px; font-family: monospace; font-weight: 700; }
.schedule__time .time-end     { display: block; font-size: 9px; font-family: monospace; color: #9ca3af; }
.schedule__item.today .schedule__time .time-end { color: rgba(255,255,255,.75) !important; }
.schedule__item.today         { background: #e91e63 !important; border-color: #e91e63 !important; color: #fff !important; }
.schedule__item.today .schedule__day  { color: #fff !important; }
.schedule__item.today .schedule__time { color: #fff !important; }

/* ── Details table ── */
.mv-dtable              { width: 100%; border-collapse: collapse; }
.mv-dtable td           { padding: 5px 12px; font-size: 12px; border-bottom: 1px solid #f3f4f6; vertical-align: top; }
.mv-dtable td:first-child { color: #9ca3af; width: 40%; white-space: nowrap; }
.mv-dtable td:last-child  { color: #1f2937; font-weight: 500; }
.mv-dtable tr:last-child td { border-bottom: none; }

/* ── Rating widget ── */
.rating-widget          { display: flex; align-items: center; gap: 10px; padding: 6px 12px; background: #fff; border-radius: 8px; border: 1px solid #e5e7eb; }
.rating-score           { display: flex; align-items: baseline; }
.rating-percent         { font-size: 18px; font-weight: 700; color: #e91e63; }
.rating-symbol          { font-size: 11px; font-weight: 600; color: #e91e63; }
.rating-buttons         { display: flex; gap: 4px; }
.rating-btn             { width: 32px; height: 32px; border: none; border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 13px; transition: all .2s; }
.rating-up              { background: #ecfdf5; color: #10b981; }
.rating-up:hover:not(.disabled), .rating-up.active { background: #10b981; color: #fff; }
.rating-down            { background: #fef2f2; color: #ef4444; }
.rating-down:hover:not(.disabled), .rating-down.active { background: #ef4444; color: #fff; }
.rating-btn.disabled    { opacity: .6; cursor: default; }
.rating-votes           { font-size: 11px; color: #9ca3af; }

/* ── Responsive additions for mv-* ── */
@media (max-width: 768px) {
    .mv-tab-btn         { padding: 8px 10px; font-size: 10px; }
    .mv-hist-grid       { grid-template-columns: repeat(2,1fr); gap: 5px; padding: 8px; }
    .mv-day-time        { width: 70px; }
    .mv-custom-text     { padding: 14px 14px 0; }
    .page-header__title { font-size: 12px !important; }
}
@media (max-width: 480px) {
    .mv-topbar__right   { width: 100%; justify-content: flex-start; }
    .mv-hist-grid       { grid-template-columns: 1fr 1fr; }
}
/* ================================================
   STATIC PAGES (2257, FAQ, Terms, Privacy, etc.)
   ================================================ */

.static-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 30px 60px;
}

.static-page h1,
.static-page h2,
.static-page h3,
.static-page h4 {
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.static-page h1 {
    font-size: 1.8rem;
    color: #e91e63;
    padding-bottom: 15px;
    border-bottom: 2px solid #e91e63;
    margin-bottom: 30px;
}

.static-page h2 {
    font-size: 1.4rem;
    margin-top: 35px;
    color: #1a1a2e;
}

.static-page h3 {
    font-size: 1.2rem;
    margin-top: 25px;
}

.static-page p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.static-page a {
    color: #e91e63;
    text-decoration: none;
    transition: color 0.2s ease;
}

.static-page a:hover {
    color: #c2185b;
    text-decoration: underline;
}

.static-page ul,
.static-page ol {
    color: #4b5563;
    margin: 0 0 20px 25px;
    line-height: 1.8;
}

.static-page li {
    margin-bottom: 10px;
    font-size: 15px;
}

.static-page strong,
.static-page b {
    color: #1a1a2e;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .static-page {
        padding: 25px 20px 40px;
    }
    
    .static-page h1 {
        font-size: 1.5rem;
    }
    
    .static-page h2 {
        font-size: 1.25rem;
    }
    
    .static-page p,
    .static-page li {
        font-size: 14px;
    }
}
.sc-hero { background: linear-gradient(135deg, #d63384 0%, #b8296e 50%, #8b1a54 100%); padding: 3rem 2rem 2rem; color: #fff; }
.sc-hero-title { font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 0.75rem; line-height: 1.2; }
.sc-hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.sc-hero-subtitle .highlight { color: #ffd700; font-weight: 700; }

.sc-stats-bar { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.2); }
.sc-stats-bar .stat-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.9); font-size: 0.875rem; }
.sc-stats-bar .stat-item i { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.sc-stats-bar .stat-item.online i { color: #4ade80; }
.sc-stats-bar .stat-item.new i { color: #fbbf24; }
.sc-stats-bar .stat-item strong { color: #fff; font-weight: 700; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.pulse { animation: pulse 1.5s ease-in-out infinite; }

.sc-search-container { width: 100%; }
.sc-search-form { width: 100%; }
.sc-search-wrapper { position: relative; display: flex; align-items: center; gap: 0.5rem; }
.sc-search-input { flex: 1; padding: 0.75rem 1rem; border: 2px solid rgba(255,255,255,0.3); border-radius: 50px; background: rgba(255,255,255,0.15); color: #fff; font-size: 0.9rem; outline: none; transition: all 0.2s ease; backdrop-filter: blur(10px); }
.sc-search-input::placeholder { color: rgba(255,255,255,0.6); }
.sc-search-input:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.2); }
.sc-search-btn { padding: 0.75rem 1.5rem; background: #fff; color: #d63384; border: none; border-radius: 50px; font-weight: 700; font-size: 0.875rem; cursor: pointer; white-space: nowrap; transition: all 0.2s ease; display: flex; align-items: center; gap: 0.4rem; }
.sc-search-btn:hover { background: #f8e8f2; transform: translateY(-1px); }
.sc-clear-btn { position: absolute; right: 130px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.7); font-size: 1.25rem; text-decoration: none; line-height: 1; padding: 0 0.5rem; transition: color 0.2s; }
.sc-clear-btn:hover { color: #fff; }

#sc-autocomplete-dropdown { display: none; background: #fff; border: 1px solid #e4dced; border-radius: 12px; box-shadow: 0 8px 30px rgba(100,60,140,0.15); overflow: hidden; max-height: 320px; overflow-y: auto; }
#sc-autocomplete-dropdown.active { display: block; }
.sc-autocomplete-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 1rem; cursor: pointer; transition: background 0.15s; border-bottom: 1px solid #f5f3f8; }
.sc-autocomplete-item:last-child { border-bottom: none; }
.sc-autocomplete-item:hover, .sc-autocomplete-item.active { background: #f8e8f2; }
.sc-autocomplete-item.online .ac-name::before { content: '🟢 '; }
.sc-autocomplete-item.offline .ac-name::before { content: '⚫ '; }
.ac-thumb { width: 36px; height: 36px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.ac-name { font-size: 0.875rem; font-weight: 600; color: #1a1225; }
.sc-autocomplete-no-results { padding: 1rem; color: #6b5b7a; font-size: 0.875rem; text-align: center; }

.sc-filter-bar { background: #fff; border-bottom: 2px solid #e4dced; box-shadow: 0 2px 8px rgba(100,60,140,0.06); position: sticky; top: 0; z-index: 100; }
.sc-filter-bar__inner { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.5rem; flex-wrap: wrap; max-width: 1400px; margin: 0 auto; }
.filter-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #6b5b7a; white-space: nowrap; display: flex; align-items: center; gap: 0.4rem; }
.sc-select { appearance: none; -webkit-appearance: none; padding: 0.45rem 2rem 0.45rem 0.9rem; border: 1.5px solid #e4dced; border-radius: 50px; background-color: #f5f3f8; color: #1a1225; font-size: 0.8125rem; font-weight: 500; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b5b7a' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.65rem center; transition: all 0.2s ease; }
.sc-select:hover, .sc-select:focus { border-color: #d63384; outline: none; }
.sc-check { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8125rem; font-weight: 500; color: #6b5b7a; cursor: pointer; white-space: nowrap; padding: 0.4rem 0.8rem; border: 1.5px solid #e4dced; border-radius: 50px; background: #f5f3f8; transition: all 0.2s ease; }
.sc-check:hover { border-color: #d63384; color: #d63384; }
.sc-check input[type="checkbox"] { accent-color: #d63384; width: 14px; height: 14px; }
.sc-results-count { font-size: 0.8125rem; color: #6b5b7a; font-weight: 600; white-space: nowrap; }

.sc-active-filters { background: #f8e8f2; border-bottom: 1px solid #e4dced; padding: 0.5rem 1.5rem; }
.sc-active-filters .container { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; max-width: 1400px; margin: 0 auto; }
.active-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #b8296e; display: flex; align-items: center; gap: 0.3rem; flex-shrink: 0; }
.filter-tag { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.25rem 0.75rem; background: #fff; border: 1.5px solid #d63384; border-radius: 50px; color: #d63384; font-size: 0.8rem; font-weight: 600; text-decoration: none; transition: all 0.2s ease; }
.filter-tag:hover { background: #d63384; color: #fff; }
.clear-all { font-size: 0.8rem; color: #6b5b7a; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; margin-left: auto; transition: color 0.2s; }
.clear-all:hover { color: #d63384; }

.sc-model-grid { padding: 2rem 1rem; background: #f5f3f8; min-height: 60vh; }
.sc-model-grid .container { max-width: 1400px; margin: 0 auto; }
.sc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; }

.sc-grid__item { min-width: 0; }
.sc-model-card { background: #fff; border-radius: 12px; overflow: hidden; border: 2px solid #e4dced; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(100,60,140,0.06); height: 100%; display: flex; flex-direction: column; }
.sc-model-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(214,51,132,0.2); border-color: #d63384; }
.sc-model-card.is-online { border-color: #16a34a; }
.sc-model-card.is-online:hover { border-color: #d63384; }

.sc-image-container { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #1a1225; flex-shrink: 0; }
.sc-model-image { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.sc-model-card:hover .sc-model-image { transform: scale(1.05); }

.sc-badges { position: absolute; top: 8px; left: 8px; display: flex; flex-direction: column; gap: 4px; z-index: 2; }
.sc-badges-right { position: absolute; top: 8px; right: 8px; display: flex; flex-direction: column; gap: 4px; z-index: 2; align-items: flex-end; }
.sc-badge { display: inline-flex; align-items: center; gap: 3px; padding: 3px 8px; border-radius: 6px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.03em; white-space: nowrap; }
.sc-badge-live { background: #d63384; color: #fff; animation: live-pulse 2s ease-in-out infinite; }
@keyframes live-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(214,51,132,0.4); } 50% { box-shadow: 0 0 0 4px rgba(214,51,132,0); } }
.sc-badge-live i { font-size: 0.5rem; animation: pulse 1.5s ease-in-out infinite; }
.sc-badge-new { background: #f59e0b; color: #fff; }
.sc-badge-alias { background: rgba(0,0,0,0.65); color: #e4dced; backdrop-filter: blur(4px); }
.sc-badge-hd { background: rgba(0,0,0,0.65); color: #fbbf24; font-weight: 800; backdrop-filter: blur(4px); }
.sc-badge-gender { background: rgba(0,0,0,0.55); color: #fff; backdrop-filter: blur(4px); font-size: 0.75rem; }

.sc-stats-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.5rem 0.6rem; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%); display: flex; justify-content: space-between; align-items: flex-end; z-index: 2; }
.sc-viewers, .sc-favorites, .sc-top-rank { display: inline-flex; align-items: center; gap: 3px; font-size: 0.75rem; font-weight: 700; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.sc-viewers i { color: #4ade80; }
.sc-favorites i { color: #f472b6; }
.sc-top-rank i { color: #fbbf24; }

.sc-card-info { padding: 0.875rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.sc-model-name { font-size: 0.9375rem; font-weight: 700; color: #1a1225; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-model-meta { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.sc-model-meta span { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: #6b5b7a; }
.sc-model-meta i { color: #b8296e; font-size: 0.7rem; }
.sc-alias-indicator { font-size: 0.725rem; color: #9c7ab0; display: flex; align-items: center; gap: 0.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-alias-indicator i { color: #b8296e; flex-shrink: 0; }

.sc-card-actions { display: flex; flex-direction: column; gap: 0.4rem; margin-top: auto; padding-top: 0.5rem; }
.sc-btn-watch { display: flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.55rem 1rem; background: linear-gradient(135deg, #d63384 0%, #b8296e 100%); color: #fff; text-decoration: none; border-radius: 8px; font-size: 0.8125rem; font-weight: 700; transition: all 0.2s ease; box-shadow: 0 3px 10px rgba(214,51,132,0.3); }
.sc-btn-watch:hover { transform: translateY(-1px); box-shadow: 0 5px 15px rgba(214,51,132,0.4); color: #fff; }
.sc-btn-watch.offline { background: linear-gradient(135deg, #6b5b7a 0%, #4a3d5c 100%); box-shadow: 0 3px 10px rgba(107,91,122,0.3); }
.sc-btn-watch.offline:hover { box-shadow: 0 5px 15px rgba(107,91,122,0.4); }
.sc-btn-profile { display: flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.45rem 1rem; background: transparent; color: #b8296e; text-decoration: none; border-radius: 8px; font-size: 0.75rem; font-weight: 600; border: 1.5px solid #e4dced; transition: all 0.2s ease; }
.sc-btn-profile:hover { background: #f8e8f2; border-color: #d63384; color: #d63384; }

.sc-no-results { text-align: center; padding: 4rem 2rem; color: #6b5b7a; background: #fff; border-radius: 16px; box-shadow: 0 2px 8px rgba(100,60,140,0.06); }
.sc-no-results i { font-size: 3rem; color: #e4dced; margin-bottom: 1rem; display: block; }
.sc-no-results h3 { font-size: 1.25rem; color: #1a1225; margin-bottom: 0.5rem; }

.sc-pagination { padding: 2rem 1rem; text-align: center; background: #f5f3f8; }
.sc-pagination__nav { display: flex; justify-content: center; align-items: center; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.sc-page-link { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 0.75rem; border: 1.5px solid #e4dced; border-radius: 8px; background: #fff; color: #1a1225; font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: all 0.2s ease; }
.sc-page-link:hover { background: #f8e8f2; border-color: #d63384; color: #d63384; }
.sc-page-link.active { background: linear-gradient(135deg, #d63384 0%, #b8296e 100%); border-color: #d63384; color: #fff; box-shadow: 0 3px 10px rgba(214,51,132,0.3); }
.sc-page-link.disabled { color: #c4b8d0; cursor: default; pointer-events: none; }
.sc-pagination__info { font-size: 0.8125rem; color: #6b5b7a; margin: 0; }

/* ==================== FOOTER ==================== */
.sc-footer-info { background: #fff; padding: 3rem 1.5rem; border-top: 3px solid #f5f3f8; }
.sc-footer-inner { max-width: 900px; margin: 0 auto; }
.sc-footer-info h2 { font-size: 1.75rem; font-weight: 800; color: #1a1225; margin-bottom: 2rem; text-align: center; }
.sc-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.feature-box { text-align: center; padding: 1.5rem 1rem; background: #f5f3f8; border-radius: 12px; border: 1px solid #e4dced; transition: all 0.3s ease; }
.feature-box:hover { background: #f8e8f2; border-color: #d63384; transform: translateY(-2px); }
.feature-icon { font-size: 2rem; color: #d63384; display: block; margin-bottom: 1rem; }
.feature-box h3 { font-size: 1rem; font-weight: 700; color: #1a1225; margin-bottom: 0.75rem; }
.feature-box p { font-size: 0.875rem; color: #6b5b7a; line-height: 1.6; margin: 0; }
.info-text { padding: 1.5rem; background: #f5f3f8; border-radius: 12px; border-left: 4px solid #d63384; margin-bottom: 1.5rem; }
.info-text h3 { font-size: 1.125rem; font-weight: 700; color: #1a1225; margin-bottom: 0.75rem; }
.info-text p { font-size: 0.9375rem; color: #6b5b7a; line-height: 1.7; margin-bottom: 0.75rem; }
.info-text p:last-child { margin-bottom: 0; }
.info-text strong { color: #d63384; }
.sc-update-badge { text-align: center; background: #16a34a; color: #fff; padding: 0.6rem 1.5rem; border-radius: 50px; font-size: 0.8125rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; width: auto; margin: 0 auto; justify-content: center; flex-wrap: wrap; }
.sc-update-badge i { animation: spin 3s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ==================== MODEL DETAIL ==================== */
.smd-wrap { max-width: 1400px; margin: 0 auto; padding: 0 1rem 3rem; }
.smd-breadcrumb { display: flex; align-items: center; gap: 0.5rem; padding: 1rem 0; font-size: 0.8125rem; color: #6b5b7a; flex-wrap: wrap; }
.smd-breadcrumb a { color: #d63384; text-decoration: none; font-weight: 500; transition: color 0.2s; }
.smd-breadcrumb a:hover { color: #b8296e; text-decoration: underline; }
.smd-breadcrumb span { color: #b8a0c8; }

.smd-hero { background: linear-gradient(135deg, #1a1225 0%, #2d1b3d 50%, #1a1225 100%); border-radius: 16px; overflow: hidden; margin-bottom: 1.5rem; box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.smd-hero__inner { display: grid; grid-template-columns: 280px 1fr; gap: 0; min-height: 320px; }
@media (max-width: 768px) { .smd-hero__inner { grid-template-columns: 1fr; } }

.smd-hero__image { position: relative; overflow: hidden; background: #0f0a1a; }
.smd-main-img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 280px; transition: transform 0.3s ease; }
.smd-hero__image:hover .smd-main-img { transform: scale(1.03); }

.smd-status { position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; z-index: 2; }
.smd-status.online { background: rgba(22,163,74,0.9); color: #fff; box-shadow: 0 0 12px rgba(22,163,74,0.4); }
.smd-status.online i { font-size: 0.5rem; animation: smd-pulse 1.5s ease-in-out infinite; }
.smd-status.offline { background: rgba(107,91,122,0.85); color: #e4dced; }
@keyframes smd-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.smd-hero__info { padding: 2rem; display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.smd-model-name { font-size: 2rem; font-weight: 900; color: #fff; margin: 0; line-height: 1.2; }
.smd-tagline { font-size: 0.9375rem; color: rgba(255,255,255,0.7); margin: 0; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }

.smd-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.smd-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 6px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.03em; }
.smd-badge--new { background: #f59e0b; color: #fff; }
.smd-badge--hd { background: rgba(255,255,255,0.15); color: #fbbf24; border: 1px solid rgba(251,191,36,0.3); }
.smd-badge--mobile { background: rgba(255,255,255,0.15); color: #60a5fa; border: 1px solid rgba(96,165,250,0.3); }
.smd-badge--alias { background: rgba(214,51,132,0.2); color: #f9a8d4; border: 1px solid rgba(214,51,132,0.3); }

.smd-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.smd-stat { text-align: center; min-width: 70px; }
.smd-stat__value { font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 0.25rem; }
.smd-stat__label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }

.smd-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.smd-btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; background: linear-gradient(135deg, #d63384 0%, #b8296e 100%); color: #fff; text-decoration: none; border-radius: 50px; font-weight: 700; font-size: 0.9375rem; transition: all 0.2s ease; box-shadow: 0 4px 15px rgba(214,51,132,0.4); border: none; cursor: pointer; }
.smd-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(214,51,132,0.5); color: #fff; }
.smd-btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 0.875rem; transition: all 0.2s ease; border: 1px solid rgba(255,255,255,0.2); }
.smd-btn-secondary:hover { background: rgba(255,255,255,0.2); color: #fff; }

.smd-body { display: grid; grid-template-columns: 1fr 320px; gap: 1.5rem; align-items: start; }
@media (max-width: 992px) { .smd-body { grid-template-columns: 1fr; } }

.smd-card { background: #fff; border-radius: 12px; border: 1px solid #e4dced; padding: 1.5rem; margin-bottom: 1.25rem; box-shadow: 0 2px 8px rgba(100,60,140,0.06); }
.smd-card:last-child { margin-bottom: 0; }
.smd-card__title { font-size: 1rem; font-weight: 700; color: #1a1225; margin: 0 0 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid #f5f3f8; display: flex; align-items: center; gap: 0.5rem; }
.smd-card__title i { color: #d63384; }
.smd-card--otd { background: linear-gradient(135deg, #fff5fc 0%, #fff 100%); border-color: #f9a8d4; }

.smd-profile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.5rem; }
.smd-profile-item { display: flex; flex-direction: column; gap: 2px; padding: 0.6rem 0.75rem; background: #f5f3f8; border-radius: 8px; border: 1px solid #e4dced; transition: background 0.2s; }
.smd-profile-item:hover { background: #f0ebf7; }
.smd-profile-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #9c7ab0; }
.smd-profile-value { font-size: 0.875rem; font-weight: 600; color: #1a1225; }

.smd-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.smd-tag { display: inline-flex; align-items: center; padding: 0.3rem 0.75rem; background: #f5f3f8; color: #6b5b7a; border-radius: 6px; font-size: 0.8rem; font-weight: 500; border: 1px solid #e4dced; }
.smd-tag--link { text-decoration: none; transition: all 0.2s ease; cursor: pointer; }
.smd-tag--link:hover { background: #d63384; color: #fff; border-color: #d63384; }
.smd-tag--persistent { background: #f0ebf7; color: #7c3aed; border-color: #ddd6fe; text-decoration: none; transition: all 0.2s ease; cursor: pointer; }
.smd-tag--persistent:hover { background: #7c3aed; color: #fff; border-color: #7c3aed; }

.smd-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.5rem; }
.smd-gallery__item { position: relative; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; cursor: pointer; background: #1a1225; border: 2px solid #e4dced; transition: all 0.2s ease; }
.smd-gallery__item:hover { border-color: #d63384; transform: scale(1.02); }
.smd-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.smd-gallery__item:hover img { transform: scale(1.08); }

.smd-name-stats { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.smd-name-stat { flex: 1; min-width: 80px; text-align: center; padding: 0.75rem; background: #f5f3f8; border-radius: 10px; border: 1px solid #e4dced; }
.smd-name-stat__value { font-size: 1.375rem; font-weight: 900; color: #d63384; line-height: 1; margin-bottom: 0.25rem; }
.smd-name-stat__label { font-size: 0.7rem; color: #6b5b7a; text-transform: uppercase; letter-spacing: 0.04em; }

.smd-timeline { position: relative; padding-left: 1.5rem; }
.smd-timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, #d63384, #e4dced); border-radius: 2px; }
.smd-timeline__item { position: relative; padding: 0.75rem 0 0.75rem 1rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.smd-timeline__dot { position: absolute; left: -1.5rem; top: 1.1rem; width: 14px; height: 14px; border-radius: 50%; background: #e4dced; border: 2px solid #fff; box-shadow: 0 0 0 2px #e4dced; flex-shrink: 0; }
.smd-timeline__item.current .smd-timeline__dot { background: #d63384; box-shadow: 0 0 0 2px #f9a8d4; animation: smd-pulse-dot 2s ease-in-out infinite; }
@keyframes smd-pulse-dot { 0%, 100% { box-shadow: 0 0 0 2px #f9a8d4; } 50% { box-shadow: 0 0 0 5px rgba(214,51,132,0.1); } }
.smd-timeline__content { flex: 1; padding: 0.625rem 0.875rem; background: #f5f3f8; border-radius: 8px; border: 1px solid #e4dced; transition: background 0.2s; }
.smd-timeline__item.current .smd-timeline__content { background: linear-gradient(135deg, #fff0f7 0%, #fff 100%); border-color: #f9a8d4; }
.smd-timeline__name { font-size: 0.9375rem; font-weight: 700; color: #1a1225; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.25rem; }
.smd-current-badge { display: inline-flex; align-items: center; padding: 2px 8px; background: #d63384; color: #fff; border-radius: 4px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em; }
.smd-timeline__dates { font-size: 0.75rem; color: #6b5b7a; margin-bottom: 0.25rem; }
.smd-timeline__duration { display: inline-block; font-size: 0.7rem; font-weight: 600; color: #9c7ab0; background: #ede9f4; padding: 2px 8px; border-radius: 4px; }

.smd-events { display: flex; flex-direction: column; gap: 0.75rem; }
.smd-event { display: flex; gap: 0.75rem; padding: 0.75rem; background: #f5f3f8; border-radius: 8px; border: 1px solid #e4dced; }
.smd-event__icon { font-size: 1.25rem; flex-shrink: 0; line-height: 1; }
.smd-event__body h4 { font-size: 0.875rem; font-weight: 700; color: #1a1225; margin: 0 0 0.2rem; }
.smd-event__body p { font-size: 0.8rem; color: #6b5b7a; margin: 0 0 0.25rem; line-height: 1.4; }
.smd-event__date { font-size: 0.7rem; color: #9c7ab0; font-weight: 600; }

.smd-clear-btn { margin-left: auto; background: none; border: none; color: #9c7ab0; font-size: 0.75rem; cursor: pointer; display: inline-flex; align-items: center; gap: 0.25rem; padding: 2px 6px; border-radius: 4px; transition: all 0.2s; }
.smd-clear-btn:hover { background: #f5f3f8; color: #d63384; }

.smd-related { margin-top: 2rem; padding-top: 1.5rem; border-top: 2px solid #f5f3f8; }
.smd-related__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 0.75rem; }
.smd-related__card { position: relative; aspect-ratio: 3/4; border-radius: 10px; overflow: hidden; display: block; background: #1a1225; border: 2px solid #e4dced; transition: all 0.3s ease; }
.smd-related__card:hover { border-color: #d63384; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(214,51,132,0.2); }
.smd-related__card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.smd-related__card:hover img { transform: scale(1.07); }
.smd-related__live { position: absolute; top: 8px; left: 8px; width: 10px; height: 10px; background: #4ade80; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 6px rgba(74,222,128,0.6); animation: smd-pulse 1.5s ease-in-out infinite; }
.smd-related__overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.5rem; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%); display: flex; align-items: flex-end; }
.smd-related__overlay span { font-size: 0.75rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

.smd-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 99999; align-items: center; justify-content: center; padding: 2rem; }
.smd-lightbox.active { display: flex; }
.smd-lightbox__close { position: absolute; top: 1rem; right: 1.5rem; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; opacity: 0.7; transition: opacity 0.2s; }
.smd-lightbox__close:hover { opacity: 1; }
.smd-lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

.smd-404 { text-align: center; padding: 5rem 2rem; color: #6b5b7a; }
.smd-404 i { font-size: 4rem; color: #e4dced; display: block; margin-bottom: 1.5rem; }
.smd-404 h1 { font-size: 1.75rem; color: #1a1225; margin-bottom: 0.75rem; }
.smd-404 p { font-size: 1rem; margin-bottom: 2rem; }

/* About Section — light theme */
.smd-about {
    background: linear-gradient(135deg, #f8f4ff 0%, #fff0f6 100%);
    border: 1px solid rgba(150, 80, 160, 0.15);
}
.smd-about__text p { margin: 0 0 14px; line-height: 1.8; color: #3a3a4a; font-size: 15px;
}
.smd-about__text p:last-child { margin-bottom: 0; }
.smd-about__text strong { color: #8b2fc9; font-weight: 600; }
.smd-about__text a { color: #8b2fc9; text-decoration: underline; text-underline-offset: 3px; }

/* Quick Facts — light theme */
.smd-quick-facts { display: flex; flex-direction: column; gap: 10px; }
.smd-quick-fact {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: #3a3a4a;
    padding: 8px 12px;
    background: rgba(139, 47, 201, 0.04);
    border-radius: 8px;
    border-left: 3px solid rgba(139, 47, 201, 0.25);
}
.smd-quick-fact__icon { width: 22px; text-align: center; font-size: 16px; }
.smd-quick-fact strong { color: #1a1a2e; }

.smd-save.saved { background: #ea580c; color: #fff; border-color: #ea580c; }
.smd-save.saved .bi-bookmark::before { content: "\F12F"; } /* bi-bookmark-fill */

/* Name History Note — light theme */
.smd-history-note {
    margin-top: 16px; padding: 12px 16px;
    font-size: 13px; color: #666; line-height: 1.7;
    background: rgba(139, 47, 201, 0.04);
    border-radius: 8px;
    border-left: 3px solid rgba(139, 47, 201, 0.2);
}
.smd-history-note a { color: #8b2fc9; }

/* SEO Footer — light theme */
.smd-seo-footer {
    margin-top: 32px; padding: 28px; border-radius: 12px;
    background: linear-gradient(135deg, #f8f4ff 0%, #fff0f6 100%);
    border: 1px solid rgba(150, 80, 160, 0.12);
}
.smd-seo-footer h2 { font-size: 20px; margin: 0 0 18px; color: #1a1a2e; font-weight: 700; }
.smd-seo-footer p { margin: 0 0 14px; line-height: 1.8; color: #4a4a5a; font-size: 14.5px; }
.smd-seo-footer p:last-child { margin-bottom: 0; }
.smd-seo-footer a { color: #8b2fc9; text-decoration: underline; text-underline-offset: 3px; }
.smd-seo-footer strong { color: #2a2a3a; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) { .sc-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); } }
@media (max-width: 768px) {
    .sc-hero { padding: 2rem 1rem 1.5rem; }
    .sc-hero-title { font-size: 1.5rem; }
    .sc-filter-bar__inner { padding: 0.65rem 1rem; gap: 0.5rem; }
    .sc-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 0.875rem; }
    .sc-card-info { padding: 0.65rem; }
    .sc-model-name { font-size: 0.875rem; }
    .sc-footer-info { padding: 2rem 1rem; }
    .sc-footer-info h2 { font-size: 1.35rem; }
    .sc-features { grid-template-columns: 1fr; }
    .smd-hero__info { padding: 1.25rem; }
    .smd-model-name { font-size: 1.5rem; }
    .smd-stats { gap: 1rem; }
    .smd-stat__value { font-size: 1.25rem; }
    .smd-profile-grid { grid-template-columns: 1fr 1fr; }
    .smd-gallery { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
    .smd-related__grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
    .smd-name-stats { gap: 0.5rem; }
    .smd-actions { flex-direction: column; }
    .smd-btn-primary, .smd-btn-secondary { justify-content: center; width: 100%; }
}
@media (max-width: 480px) {
    .sc-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .sc-hero-title { font-size: 1.25rem; }
    .sc-stats-bar { gap: 0.6rem 1rem; }
    .sc-stats-bar .stat-item { font-size: 0.8rem; }
    .sc-search-wrapper { flex-direction: column; align-items: stretch; }
    .sc-search-input { border-radius: 8px; }
    .sc-search-btn { border-radius: 8px; justify-content: center; }
    .sc-clear-btn { position: static; transform: none; text-align: center; color: rgba(255,255,255,0.7); }
    .smd-wrap { padding: 0 0.75rem 2rem; }
    .smd-profile-grid { grid-template-columns: 1fr; }
    .smd-card { padding: 1rem; }
    .smd-gallery { grid-template-columns: repeat(3, 1fr); }
    .smd-related__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   1. CSS VARIABELEN  (overschrijft style.php :root én pages.css :root)
   ========================================================================== */

:root {
    /* Lichte palet */
    --clr-pink:         #d63384;
    --clr-pink-dark:    #b8296e;
    --clr-pink-light:   #f8e8f2;
    --clr-bg:           #f5f3f8;
    --clr-white:        #ffffff;
    --clr-text:         #1a1225;
    --clr-muted:        #6b5b7a;
    --clr-border:       #e4dced;
    --clr-green:        #16a34a;
    --clr-red:          #ef4444;

    /* ── style.php template-variabelen ── */
    --headerBackground:       var(--clr-white)    !important;
    --footerBackground:       #1a1225             !important;
    --buttonsBackground:      var(--clr-pink)      !important;
    --buttonsColor:           #ffffff              !important;
    --mainBackground:         var(--clr-bg)        !important;
    --titleColor:             var(--clr-text)      !important;
    --descriptionColor:       var(--clr-muted)     !important;
    --liveBtnGreen:           var(--clr-green)     !important;
    --liveBtnText:            #ffffff              !important;
    --aboutText:              var(--clr-pink)      !important;
    --filterTitleBackground:  var(--clr-bg)        !important;
    --filtersBackground:      var(--clr-bg)        !important;
    --fontFamily:             'Outfit', sans-serif !important;

    /* ── pages.css donkere variabelen -> licht ── */
    --color-primary:          var(--clr-pink)      !important;
    --color-primary-light:    var(--clr-pink-light)!important;
    --color-primary-dark:     var(--clr-pink-dark) !important;
    --color-bg-dark:          var(--clr-bg)        !important;
    --color-bg-medium:        var(--clr-white)     !important;
    --color-bg-light:         var(--clr-bg)        !important;
    --color-bg-card:          var(--clr-white)     !important;
    --color-bg-surface:       rgba(214,51,132,0.04)!important;
    --color-text-primary:     var(--clr-text)      !important;
    --color-text-secondary:   var(--clr-muted)     !important;
    --color-text-muted:       var(--clr-muted)     !important;
    --color-border:           var(--clr-border)    !important;
    --color-border-light:     var(--clr-border)    !important;
    --color-border-strong:    rgba(214,51,132,0.3) !important;
    --color-online:           var(--clr-green)     !important;
    --color-offline:          #9ca3af              !important;
    --gradient-header:        var(--clr-white)     !important;
    --gradient-card:          var(--clr-white)     !important;
    --shadow-md:              0 4px 15px rgba(100,60,140,0.08) !important;
    --shadow-lg:              0 8px 30px rgba(100,60,140,0.12) !important;

    /* ── header.css inline vars ── */
    --font-family:            'Outfit', sans-serif !important;
    --font-family-display:    'Outfit', sans-serif !important;
}

.aside {
    max-height: calc(100vh - 106px);
}
@media(min-width: 991px) {
    .aside {
        max-height: calc(100vh - 65px);
    }
}
@media(min-width: 801px) {
    .aside .list-container {
        overflow-y: auto;
    }
    .aside .list-container::-webkit-scrollbar {
        width: 10px;
    }
    .aside .list-container::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    .aside .list-container::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 20em;
    }
    .aside .list-container::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}

@media (max-width: 602px) {
    .img-col {
        width: 100%;
    }
}


.form-input>.form-control, .form-input>.form-select {
    background-color: #fff !important;
}

.row.gallery .col {
    height: 100%;
}

.breadcrumbs + .main__filterBtn {
    margin-right: 10px;
}
.main__filterBtn.main__filterBtn--open {
    display: none;
    margin-right: 0;
}
.breadcrumbs {
    margin-right: auto;
    order: 1;
}
.sort-form {
    margin-left: auto;
    order: 2;
}

.main__video {
    min-height: 95vh;
    height: auto;
}

.main__about {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    height: auto;
}
.main__video {
    min-height: auto;
}
.main__video .inner-stage > * {
    height: 100% !important;
    max-height: 100% !important;
}

.main__video.site-5 {
    min-height: auto;
}
.main__video.site-5 .inner-stage {
    padding-top: 51.25%;
}
.main__video.site-2 {
    min-height: auto;
}
.main__video.site-2 .inner-stage {
    padding-top: 47.25%;
}

h1.main__h1 {
  text-transform: uppercase;
  
}

a.main__viewCamera {
  text-transform: uppercase;
}

p.description {
  padding-left: 20px;
  font-size: 14px;
  color: #37474f;
}
#hybrid-client {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#pure-client { 
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
/* ==========================================================================
   4. FILTER BAR — Option B: compact row + per-category dropdowns
   ========================================================================== */

.fb {
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-border);
    position: relative;
}

/* ── Always-visible row ── */
.fb__row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.fb__row::-webkit-scrollbar { display: none; }

/* ── Group wrapper ── */
.fb__group {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

/* ── Vertical separator ── */
.fb__sep {
    width: 1px;
    height: 20px;
    background: var(--clr-border);
    flex-shrink: 0;
}

/* ── Filter pills (Status + inside panels) ── */
.fb__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    height: 28px;
    border: 1px solid var(--clr-border);
    border-radius: 100px;
    background: var(--clr-white);
    color: var(--clr-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
}
.fb__pill:hover {
    background: var(--clr-pink-light);
    border-color: var(--clr-pink);
    color: var(--clr-pink);
}
.fb__pill--active {
    background: var(--clr-pink) !important;
    border-color: var(--clr-pink) !important;
    color: #fff !important;
    font-weight: 600;
}

/* ── Category toggle buttons ── */
.fb__toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0 12px;
    height: 28px;
    border: 1px solid var(--clr-border);
    border-radius: 100px;
    background: var(--clr-bg);
    color: var(--clr-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.15s ease;
    flex-shrink: 0;
}
.fb__toggle:hover {
    border-color: var(--clr-pink);
    color: var(--clr-text);
}
.fb__toggle--open {
    background: var(--clr-pink-light);
    border-color: var(--clr-pink);
    color: var(--clr-pink);
}

/* Chevron rotation */
.fb__chevron {
    transition: transform 0.2s ease;
}
.fb__toggle--open .fb__chevron {
    transform: rotate(180deg);
}

/* ── Sort & Special select ── */
.fb__select {
    appearance: none;
    -webkit-appearance: none;
    padding: 0 26px 0 10px;
    height: 28px;
    border: 1px solid var(--clr-border);
    border-radius: 100px;
    background-color: var(--clr-white);
    color: var(--clr-text);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b5b7a' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}
.fb__select:hover {
    border-color: var(--clr-pink);
}

/* ── Dropdown panels ── */
.fb__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    border-top: 0 solid transparent;
    padding: 0 20px;
}
.fb__panel--open {
    max-height: 120px;
    padding: 8px 20px 10px;
    border-top: 1px solid var(--clr-border);
}
.fb__panel-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* ── Active filters strip ── */
.fb__active {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 20px 8px;
    border-top: 1px solid var(--clr-border);
    flex-wrap: wrap;
}
.fb__active-label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-muted);
    flex-shrink: 0;
}
.fb__active-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    height: 24px;
    border-radius: 100px;
    background: var(--clr-pink-light);
    color: var(--clr-pink);
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
}
.fb__active-tag:hover {
    background: var(--clr-pink);
    color: #fff;
}
.fb__active-tag svg {
    opacity: 0.7;
}
.fb__active-tag:hover svg {
    opacity: 1;
}
.fb__active-clear {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--clr-muted);
    text-decoration: none;
    margin-left: 4px;
}
.fb__active-clear:hover {
    color: var(--clr-pink);
}

/* ── Badge (active filter count on mobile) ── */
.fb__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    background: var(--clr-pink);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

/* ── Mobile toggle (hidden on desktop) ── */
.fb__mobile-toggle {
    display: none;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    padding: 4px 8px;
    border: none;
    background: none;
    color: var(--clr-text);
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 600px) {
    .fb__mobile-toggle {
        display: inline-flex;
    }

    /* Hide toggle buttons & separator on mobile by default */
    .fb__row .fb__toggle,
    .fb__row .fb__sep:not(:first-of-type),
    .fb__row .fb__group--special {
        display: none;
    }

    /* When mobile-open: show everything stacked */
    .fb--mobile-open .fb__row {
        flex-wrap: wrap;
    }
    .fb--mobile-open .fb__row .fb__toggle,
    .fb--mobile-open .fb__row .fb__sep,
    .fb--mobile-open .fb__row .fb__group--special {
        display: inline-flex;
    }
}

/* ════════════════════════════════════════
   HIDE OLD FILTER BAR (backward compat)
   Old classes from the previous filter bar
   can be hidden if both coexist during migration
   ════════════════════════════════════════ */
/*
.filter-bar { display: none !important; }
*/

		
#blockingEnabled {
    z-index: 9999 !important;
}

#blockingEnabled .modal-dialog {
    z-index: 10000 !important;
}

.modal-backdrop {
    z-index: 9998 !important;
}

.adblock-modal {
    background: var(--bs-dark);
    color: var(--bs-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#dataContent {
   background: #ffffff;
}
/* ===========================
   Model card info styling 
   =========================== */
.main__modelWrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
}
.main__modelInfoWrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
}
.main__modelInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main__modelName {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    flex: 1;
}
.main__modelAge {
    color: #fff;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    white-space: nowrap;
}
.main__modelAge i {
    font-size: 12px;
}
/* LIVE badge */
.main__liveBadge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    background: #e5001d;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    pointer-events: none;
}
.main__liveDot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: np-pulse 1.4s ease-in-out infinite;
}
@keyframes np-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .3; }
}
/* CTA overlay */
.main__ctaOverlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s ease;
    z-index: 2;
}
.main__model:hover .main__ctaOverlay {
    opacity: 1;
}
.main__ctaBtn {
    background: #e5001d;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0,0,0,.5);
}
.main__model {
    aspect-ratio: 12 / 9;
}

.main__modelPhoto {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main__video{position:relative;overflow:hidden}
.pt-overlay,.video-overlay{position:absolute;inset:0;z-index:50;display:none}
.main__video .inner-stage>*{background:#000}

.main__statItem--photo {
    grid-column: 1;
    grid-row: 1 / span 3;
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
    border: none;
    cursor: default;
    align-self: stretch;
}
.main__statItem--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: none;
}
.main__statItem--photo,
.main__statItem--photo:hover {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.main__text {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--clr-border);
    padding: 28px 32px;
    margin: 16px 0;
    box-shadow: 0 2px 12px rgba(100,60,140,0.06);
}

.main__text .turn-on-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-text);
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--clr-pink-light);
}

.main__text .intro-text {
    color: var(--clr-muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 12px;
}

.main__text .intro-text--lead {
    font-size: 15px;
    color: var(--clr-text);
}

.main__text .intro-text--cta {
    font-style: italic;
    color: var(--clr-muted);
    padding: 12px 16px;
    background: var(--clr-pink-light);
    border-left: 3px solid var(--clr-pink);
    border-radius: 0 8px 8px 0;
    margin: 0;
}
/* ==========================================================================
   QUICK STATS — licht, clean, multi-site via CSS variabelen
   ========================================================================== */

.main__stats {
    margin: 12px;
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.main__statsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 8px;
}

/* ── Stat card ── */
.main__statItem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: background .15s, border-color .15s, transform .15s;
    /* reset donkere gradient uit model.css */
    background-image: none !important;
    box-shadow: none !important;
}

.main__statItem:hover {
    background: #f0f9ff;
    border-color: rgba(var(--stat-rgb, 233,30,99), .25);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,.06) !important;
}

/* Highlight (HD cam Yes, toy active etc.) */
.main__statItem--highlight {
    background: rgba(var(--stat-rgb, 233,30,99), .05);
    border-color: rgba(var(--stat-rgb, 233,30,99), .2);
}

/* Online / Offline status kleuren */
.main__statItem.online .main__statIcon { color: #16a34a; animation: none; }
.main__statItem.offline .main__statIcon { color: #9ca3af; }

/* ── Icon ── */
.main__statIcon {
    font-size: 14px;
    color: var(--color-primary, #e91e63);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

/* ── Text ── */
.main__statContent {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.main__statLabel {
    font-size: 9px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .4px;
    white-space: nowrap;
}

.main__statValue {
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Section title ── */
.main__sectionTitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary, #e91e63);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.main__sectionTitle i { font-size: 11px; }

/* ── Details / Bio sections ── */
.main__details {
    margin: 12px;
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.main__detailsSection { margin-bottom: 14px; }
.main__detailsSection:last-child { margin-bottom: 0; }
.main__detailsContent { color: #4b5563; font-size: 13px; line-height: 1.6; }
.main__detailsContent p { margin: 0; }

/* ── Tags ── */
.main__detailsTags { display: flex; flex-wrap: wrap; gap: 6px; }
.main__tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(var(--stat-rgb, 233,30,99), .06);
    border: 1px solid rgba(var(--stat-rgb, 233,30,99), .2);
    border-radius: 20px;
    color: var(--color-primary, #e91e63);
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.main__tag:hover {
    background: var(--color-primary, #e91e63);
    color: #fff;
}

/* ── Gallery ── */
.main__gallery {
    margin: 12px;
    padding: 14px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.main__galleryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 6px;
}
.main__galleryItem {
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s;
    border: 2px solid transparent;
}
.main__galleryItem:hover {
    transform: scale(1.04);
    border-color: var(--color-primary, #e91e63);
}
.main__galleryItem img { width: 100%; height: 100%; object-fit: cover; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .main__stats, .main__details, .main__gallery { margin: 8px; padding: 12px; }
    .main__statsGrid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .main__galleryGrid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
    .main__statsGrid { grid-template-columns: 1fr 1fr; }
}
/* ==================== XCAMS (SITE 15) ==================== */

/* Desktop */
@media (min-width: 768px) {
    .main__video.site-15 {
        background: #000;
        border-radius: 8px;
        overflow: hidden;
        max-width: 1100px;
        margin: 0 auto;
        min-height: auto;
        height: auto;
    }
    
    .main__video.site-15 .video-frame-wrapper {
        overflow: hidden;
        max-height: 675px;
        border-radius: 8px;
        background: #000;
    }
    
    .main__video.site-15 .video-frame-wrapper iframe {
        display: block;
        width: 100%;
        height: 75vw;
        max-height: 675px;
        border: none;
    }
    
    /* Overlays */
    .main__video.site-15 .adblock-overlay,
    .main__video.site-15 .exclusive-chat-overlay,
    .main__video.site-15 .signup-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .main__video.site-15 {
        background: #000;
        border-radius: 8px;
        overflow: hidden;
        min-height: auto;
        height: auto;
    }
    
    .main__video.site-15 .video-frame-wrapper {
        overflow: hidden;
        max-height: 50vw;
        border-radius: 8px;
        background: #000;
    }
    
    .main__video.site-15 .video-frame-wrapper iframe {
        display: block;
        width: 100%;
        height: 600px;
        border: none;
    }
    
    /* Overlays */
    .main__video.site-15 .adblock-overlay,
    .main__video.site-15 .exclusive-chat-overlay,
    .main__video.site-15 .signup-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10;
    }
}
/* Built: 2026-05-31 19:34:27 UTC */