/* HERO & SEARCH */
.hero-glow { 
    position: absolute; 
    inset: 0; 
    background: radial-gradient(ellipse at 50% -20%, rgba(var(--brand-primary-rgb),0.25) 0%, transparent 65%); 
    pointer-events: none; 
}

.search-form-home { 
    width: 100%; 
    max-width: 850px; 
    margin: 0 auto 24px; 
}

.filter-dropdown-home { 
    appearance: none; 
    -webkit-appearance: none; 
    background: var(--bg-card) url('data:image/svg+xml;utf8,<svg fill=%22white%22 height=%2224%22 viewBox=%220 0 24 24%22 width=%2224%22 xmlns=%22http://www.w3.org/2000/svg%22><path d=%22M7 10l5 5 5-5z%22/></svg>') no-repeat right 10px center; 
}

/* AJAX SEARCH RESULTS */
.ajax-search-results {
    display: none; 
    padding: 40px 0 80px; 
    position: relative; 
    z-index: 10; 
    background: var(--bg-dark);
}

.ajax-header {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 30px; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    padding-bottom: 15px;
}

.ajax-title {
    font-size: 1.8rem; 
    font-weight: 900; 
    color: #fff; 
    margin: 0;
}

.ajax-close-btn {
    background: rgba(255,255,255,0.1); 
    border: none; 
    color: #fff; 
    padding: 8px 15px; 
    border-radius: 8px; 
    cursor: pointer; 
    font-weight: 700; 
    font-size: 0.8rem;
}

.ajax-results-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* STATS BAR */
.stats-bar { 
    position: relative;
    z-index: 1 !important;
    border-top: 1px solid rgba(255,255,255,0.06); 
    border-bottom: 1px solid rgba(255,255,255,0.06); 
    background: rgba(255,255,255,0.02); 
    padding: 28px 0; 
}

.stat-number { 
    font-size: 1.8rem; 
    font-weight: 900; 
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.stat-label { 
    color: #6b7280; 
    font-size: 0.8rem; 
    margin-top: 4px; 
    letter-spacing: 0.5px; 
}

/* TOP RATED SECTION */
.top-rated-section { 
    padding: 70px 0 40px; 
}

.section-header-flex {
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    margin-bottom: 30px;
}

.section-badge { 
    display: inline-block; 
    font-size: 0.7rem; 
    font-weight: 800; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    color: var(--brand-secondary); 
    margin-bottom: 12px;
    padding: 4px 12px;
    background: rgba(var(--brand-secondary-rgb), 0.1);
    border-radius: 6px;
}

.section-title { 
    font-size: 2.2rem; 
    font-weight: 900; 
    color: #fff; 
    margin: 0; 
    text-transform: uppercase;
    letter-spacing: -1px;
}

.see-all-link { 
    color: var(--brand-primary); 
    font-size: 0.85rem; 
    font-weight: 600; 
    text-decoration: none; 
    white-space: nowrap; 
}

/* PROMO SECTION HEADERS */

.promo-subtitle { 
    font-size: 1.1rem; 
    color: var(--brand-secondary); 
    font-weight: 800; 
    margin-top: 5px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

.ranking-divider { 
    border-top: 1px solid rgba(255,255,255,0.06); 
    padding-top: 20px; 
    margin-bottom: 15px; 
    text-align: left; 
}

.ranking-caption { 
    display: block; 
    font-size: 0.75rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: var(--plat-color, var(--brand-secondary));
}

.rank-pos {
    font-weight: 900;
    font-size: 1.2rem;
    min-width: 32px;
    color: var(--plat-color, var(--brand-secondary));
}

/* PROMO CARDS SECTION */
.promo-section {
    padding: 60px 0 100px;
    background: radial-gradient(circle at 50% 0%, rgba(var(--brand-primary-rgb), 0.05) 0%, transparent 70%);
    position: relative;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.promo-card {
    border-radius: 28px;
    padding: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.card-logo {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.card-logo img {
    width: 285px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.sb-cta-text {
    color: #a0a0ab;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 50px;
    text-align: center;
}

.card-cta {
    display: block;
    padding: 16px;
    border-radius: 16px;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
    text-align: center;
}

.card-cta:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Platform Colors */
.card-cam4 { border-color: rgba(245, 158, 11, 0.3) !important; }
.card-stripchat { border-color: rgba(var(--brand-secondary-rgb), 0.3) !important; }
.card-livejasmin { border-color: rgba(var(--brand-primary-rgb), 0.3) !important; }

.cta-cam4 { background: linear-gradient(135deg, #F59E0B, #D97706); }
.cta-stripchat { background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary)); }
.cta-livejasmin { background: linear-gradient(135deg, var(--brand-primary), #6D28D9); }

/* RANKING LIST INSIDE CARDS */
.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none !important;
    transition: all 0.3s;
}

.ranking-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.rank-pos {
    font-weight: 900;
    font-size: 1.2rem;
    min-width: 32px;
}

.rank-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.rank-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.rank-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-meta {
    font-size: 0.78rem;
    color: #a0a0ab;
    font-weight: 700;
}

/* RESPONSIVE FRONT PAGE */
@media (max-width: 1200px) {
    .promo-grid { gap: 20px; }
    .promo-card { padding: 20px; }
}

@media (max-width: 992px) {
    .promo-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

.no-results-msg {
    grid-column: 1/-1;
    color: #6b7280;
    text-align: center;
    padding: 40px 0;
}



/* RESPONSIVE FRONT PAGE */
@media (max-width: 1200px) {
    .promo-grid { gap: 20px; }
    .promo-card { padding: 20px; }
}

@media (max-width: 992px) {
    .promo-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

.no-results-msg {
    grid-column: 1/-1;
    color: #6b7280;
    text-align: center;
    padding: 40px 0;
}
