@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #ec4899;
    --primary-dark: #be185d;
    --secondary: #8b5cf6;
    --accent: #f59e0b;
    --dark: #0a0a0a;
    --darker: #050505;
    --card: #141414;
    --card-hover: #1f1f1f;
    --border: #2a2a2a;
    --text: #fafafa;
    --text-muted: #a1a1aa;
    --success: #22c55e;
    --online: #10b981;
    --busy: #ef4444;
    --away: #f59e0b;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body { background: radial-gradient(circle at 50% -20%, rgba(139, 92, 246, 0.14), transparent 42%), var(--dark); color: var(--text); line-height: 1.6; min-height: 100vh; }

.site-banner { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 72px; padding: 8px 24px; margin-top: 73px; background: var(--card); border-bottom: 1px solid var(--border); color: var(--text); text-decoration: none; }
.site-banner img { max-width: 100%; width: auto; height: 56px; object-fit: contain; }
.site-banner-paid { border-color: var(--accent); }
.site-banner span { font-weight: 600; }
.model-phone { display: inline-flex; align-items: center; gap: 8px; margin: 8px 0; color: var(--primary); font-weight: 600; text-decoration: none; }
.model-phone:hover { color: var(--text); }
.admin-manage-section { margin-top: 32px; padding: 24px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; }
.admin-manage-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 24px; }
.admin-manage-form input, .admin-manage-form select, .admin-manage-form textarea { width: 100%; padding: 12px; background: var(--darker); border: 1px solid var(--border); border-radius: 8px; color: var(--text); }
.admin-manage-form textarea { min-height: 90px; resize: vertical; }
.admin-manage-form label { display: flex; align-items: center; gap: 10px; padding: 10px; color: var(--text-muted); }
.admin-review-fields { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 14px; border: 1px solid var(--border); border-radius: 8px; }
.admin-review-fields legend { padding: 0 6px; color: var(--text-muted); }
.admin-review-fields textarea { grid-column: 1 / -1; }
.admin-manage-list { display: grid; gap: 10px; }
.admin-manage-row { display: flex; align-items: center; gap: 14px; padding: 10px; background: var(--darker); border-radius: 8px; }
.admin-manage-row img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }
.admin-manage-row span { flex: 1; }
.admin-manage-row small { display: block; color: var(--text-muted); }
.admin-backup-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.admin-backup-actions input[type="file"] { display: none; }
.backup-status { display: block; margin-top: 12px; color: var(--success); }
.gallery-preview { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; grid-column: 1 / -1; padding: 8px; background: var(--darker); border: 1px solid var(--border); border-radius: 8px; }
.gallery-slot { min-width: 0; padding: 6px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; }
.gallery-slot img, .gallery-slot-empty { width: 100%; height: 68px; object-fit: cover; border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.gallery-slot-empty { flex-direction: column; gap: 6px; background: var(--darker); color: var(--text-muted); }
.gallery-slot-empty i { font-size: 24px; color: var(--primary); }
.gallery-slot > input[type="url"] { width: 100%; margin-top: 8px; padding: 8px; background: var(--darker); border: 1px solid var(--border); border-radius: 6px; color: var(--text); font-size: 11px; }
.gallery-slot > strong, .gallery-slot > small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gallery-slot > small { color: var(--text-muted); font-size: 11px; }
.gallery-file-button { display: block; margin-top: 8px; padding: 7px 8px; border: 1px solid var(--border); border-radius: 6px; color: var(--text-muted); font-size: 11px; text-align: center; cursor: pointer; }
.gallery-file-button:hover { border-color: var(--primary); color: var(--text); }
.gallery-file-button input { display: block; width: 100%; margin-top: 5px; font-size: 10px; }
.gallery-preview-item { min-width: 0; }
.gallery-preview-item img { width: 100%; height: 110px; object-fit: cover; border-radius: 6px; display: block; margin-bottom: 6px; }
.gallery-preview-item strong, .gallery-preview-item small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gallery-preview-item small { color: var(--text-muted); font-size: 11px; }
.gallery-preview-empty { color: var(--text-muted); grid-column: 1 / -1; }
.gallery-preview-actions { display: flex; gap: 6px; margin-top: 8px; }
.gallery-preview-actions .btn-danger, .gallery-preview-actions .btn-secondary { padding: 5px 8px; font-size: 11px; }
.gallery-preview-actions input[type="file"] { display: none; }

.review-list { display: flex; flex-direction: column; gap: 10px; grid-column: 1 / -1; }
.review-row { display: grid; grid-template-columns: 1fr 80px 1fr auto auto; gap: 8px; align-items: start; padding: 8px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; }
.review-row textarea { min-height: 50px; resize: vertical; }
@media (max-width: 700px) { .review-row { grid-template-columns: 1fr; } }

.readmore-content { position: relative; overflow: hidden; transition: max-height 0.3s ease; }
.readmore-toggle { display: none; margin-top: 8px; background: none; border: none; color: var(--primary); font-weight: 600; cursor: pointer; padding: 0; font-size: 14px; }
.readmore-toggle:hover { text-decoration: underline; }
@media (max-width: 900px) {
    .readmore-content { max-height: 6.8em; }
    .readmore-content::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2.2em; background: linear-gradient(to bottom, transparent, var(--dark)); pointer-events: none; }
    .readmore.is-expanded .readmore-content { max-height: none; }
    .readmore.is-expanded .readmore-content::after { display: none; }
}
@media (max-width: 900px) { .gallery-preview { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px) { .gallery-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 430px) { .gallery-preview { grid-template-columns: 1fr; } }
.btn-danger { padding: 8px 12px; border: 1px solid #ef4444; border-radius: 6px; background: transparent; color: #fca5a5; cursor: pointer; }
.partner-grid { display: flex; flex-direction: column; gap: 40px; }
.partner-paid-section h2, .partner-normal-section h2 { margin-bottom: 20px; }
.partner-paid-grid { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-start; }
.partner-normal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.partner-banner { display: block; overflow: hidden; border: 1px solid var(--border); border-radius: 8px; background: var(--darker); }
.partner-banner img { display: block; object-fit: contain; }
.partner-banner-paid { width: 350px; height: 350px; border-color: var(--accent); }
.partner-banner-paid img { width: 350px; height: 350px; }
.partner-banner-normal { width: 100%; aspect-ratio: 469 / 60; }
.partner-banner-normal img { width: 100%; height: 100%; }
.partner-card { display: flex; flex-direction: column; gap: 10px; padding: 18px; background: var(--card); border: 1px solid var(--border); border-radius: 10px; color: var(--text); text-decoration: none; }
.partner-card img { width: 100%; height: 180px; object-fit: contain; background: var(--darker); border-radius: 8px; }
.partner-card span { font-size: 18px; font-weight: 700; }
.partner-card small { color: var(--text-muted); }
.partner-card-paid { border-color: var(--accent); }
.partner-empty { color: var(--text-muted); text-align: center; grid-column: 1 / -1; }
.legal-page { padding: 140px 0 80px; }
.legal-content { max-width: 900px; }
.legal-content h1 { margin-bottom: 28px; font-size: 42px; }
.legal-content h2 { margin: 32px 0 10px; font-size: 24px; }
.legal-content p { color: var(--text-muted); line-height: 1.8; }
.legal-content code { color: var(--primary); }
.legal-notice { padding: 16px 20px; background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.35); border-radius: 8px; color: var(--text) !important; }
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--primary); }
.region-grid, .region-city-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.region-card, .region-city-card { display: flex; flex-direction: column; gap: 8px; padding: 28px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; color: var(--text); text-decoration: none; transition: all 0.3s; }
.region-card:hover, .region-city-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25); }
.region-card i, .region-city-card i { color: var(--primary); font-size: 24px; margin-bottom: 8px; }
.region-card h2 { font-size: 22px; }
.region-card p, .region-city-card small { color: var(--text-muted); }
@media (max-width: 900px) { .region-grid, .region-city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .region-grid, .region-city-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .partner-normal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px) { .admin-manage-form { grid-template-columns: 1fr; } .admin-review-fields { grid-template-columns: 1fr; } .admin-review-fields textarea { grid-column: auto; } .site-banner { margin-top: 64px; padding: 8px 12px; } .partner-paid-grid { justify-content: center; } .partner-banner-paid, .partner-banner-paid img { width: min(350px, 100%); height: auto; aspect-ratio: 1; } .partner-normal-grid { grid-template-columns: 1fr; } }

.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* Navigation */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(20, 20, 20, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }

.nav-container { max-width: 1400px; margin: 0 auto; padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px; overflow: hidden; }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.logo-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; }

.gradient-text { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; font-size: 24px; }

.nav-links { display: flex; gap: 40px; align-items: center; justify-content: flex-end; min-width: 0; }

.nav-link { color: var(--text-muted); text-decoration: none; font-weight: 500; position: relative; padding-bottom: 4px; transition: color 0.3s; }

.nav-link:hover, .nav-link.active { color: var(--text); }

.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transition: width 0.3s; }

.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; gap: 16px; align-items: center; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; text-decoration: none; border-radius: 10px; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s; }

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(236, 72, 153, 0.4); }

.btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: transparent; color: var(--primary); text-decoration: none; border-radius: 10px; font-weight: 600; border: 2px solid var(--primary); cursor: pointer; transition: all 0.3s; }

.btn-secondary:hover { background: var(--primary); color: white; }

.btn-admin { padding: 10px 16px; background: transparent; border: 1px solid var(--border); border-radius: 8px; color: var(--text-muted); text-decoration: none; font-size: 14px; transition: all 0.3s; }

.btn-admin:hover { border-color: var(--primary); color: var(--primary); }

.btn-large { padding: 18px 40px; font-size: 18px; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 160px 32px 100px; position: relative; overflow: hidden; background: radial-gradient(ellipse at top, rgba(236,72,153,0.15) 0%, transparent 50%), radial-gradient(ellipse at bottom, rgba(139,92,246,0.1) 0%, transparent 50%), var(--dark); }

.glow-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }

.orb-1 { width: 400px; height: 400px; background: var(--primary); top: 10%; left: 10%; }

.orb-2 { width: 500px; height: 500px; background: var(--secondary); bottom: 10%; right: 10%; }

.hero-content { position: relative; z-index: 1; max-width: 900px; }

.online-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: rgba(236,72,153,0.1); border: 1px solid rgba(236,72,153,0.3); border-radius: 50px; margin-bottom: 32px; color: var(--primary); font-size: 14px; }

.status-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

.status-online { background: var(--online); box-shadow: 0 0 10px var(--online); }

.status-busy { background: var(--busy); }

.status-away { background: var(--away); }

.glow-text { text-shadow: 0 0 40px rgba(236, 72, 153, 0.5); }

.hero-title { font-size: 64px; font-weight: 800; line-height: 1.1; margin-bottom: 24px; }

.hero-subtitle { font-size: 20px; color: var(--text-muted); margin-bottom: 48px; }

.hero-buttons { display: flex; gap: 16px; justify-content: center; margin-bottom: 64px; }

.hero-stats { display: flex; justify-content: center; gap: 64px; }

.stat-item { text-align: center; }

.stat-number { font-size: 36px; font-weight: 700; color: var(--primary); }

.stat-label { font-size: 14px; color: var(--text-muted); }

/* Sections */
.section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-header h2 { font-size: 42px; font-weight: 700; margin-bottom: 16px; }

.section-header p { font-size: 18px; color: var(--text-muted); }

/* Models Grid */
.models-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.model-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.4s; cursor: pointer; }

.model-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 20px 60px rgba(236, 72, 153, 0.25); }

.model-image { width: 100%; height: 320px; object-fit: cover; transition: transform 0.6s; }

.model-card:hover .model-image { transform: scale(1.1); }

.model-info { padding: 20px; }

.model-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }

.model-name { font-size: 20px; font-weight: 700; }

.model-rating { display: flex; align-items: center; gap: 4px; color: var(--accent); }

.model-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.model-footer { display: flex; align-items: center; justify-content: space-between; }

.model-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.model-tag { padding: 4px 10px; background: var(--darker); border-radius: 6px; font-size: 12px; color: var(--text-muted); }

.model-price { text-align: right; }

.model-price-amount { font-size: 20px; font-weight: 700; color: var(--primary); }

.model-price-label { font-size: 12px; color: var(--text-muted); }

/* Categories */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.category-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 40px 24px; text-align: center; text-decoration: none; color: var(--text); transition: all 0.3s; }

.category-card:hover { transform: translateY(-4px); }

.category-teen:hover { border-color: var(--primary); }

.category-milf:hover { border-color: var(--secondary); }

.category-fetisch:hover { border-color: var(--accent); }

.category-domina:hover { border-color: #ef4444; }

.category-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px; }

.category-teen .category-icon { background: rgba(236,72,153,0.2); color: var(--primary); }

.category-milf .category-icon { background: rgba(139,92,246,0.2); color: var(--secondary); }

.category-fetisch .category-icon { background: rgba(245,158,11,0.2); color: var(--accent); }

.category-domina .category-icon { background: rgba(239,68,68,0.2); color: #ef4444; }

.category-card h3 { font-size: 20px; margin-bottom: 8px; }

.category-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }

.category-badge { display: inline-block; padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 500; }

.category-teen .category-badge { background: rgba(236,72,153,0.1); color: var(--primary); }

.category-milf .category-badge { background: rgba(139,92,246,0.1); color: var(--secondary); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.step-card { text-align: center; }

.step-number { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 40px; font-weight: 800; color: white; }

.step-card h3 { font-size: 22px; margin-bottom: 12px; }

.step-card p { color: var(--text-muted); }

/* Trust Badges */
.trust-badges { padding: 60px 0; border-top: 1px solid var(--border); }

.badges-row { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }

.badge-item { display: flex; align-items: center; gap: 12px; }

.badge-item i { font-size: 28px; color: var(--success); }

.badge-item strong { display: block; font-weight: 600; }

.badge-item span { font-size: 13px; color: var(--text-muted); }

/* Footer */
.footer { background: var(--darker); border-top: 1px solid var(--border); padding: 60px 0 30px; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }

.footer-brand p { color: var(--text-muted); margin-top: 16px; font-size: 14px; line-height: 1.6; }

.footer-links h4, .footer-contact h4 { font-weight: 600; margin-bottom: 20px; }

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 12px; }

.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.3s; }

.footer-links a:hover { color: var(--primary); }

.footer-contact p { color: var(--text-muted); font-size: 14px; margin-bottom: 8px; }

.footer-directory { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-bottom: 30px; margin-bottom: 30px; border-bottom: 1px solid var(--border); }

.footer-directory-col h4 { font-weight: 600; margin-bottom: 12px; font-size: 14px; color: var(--text-muted); }

.footer-directory-col { display: flex; flex-direction: column; gap: 8px; }

.footer-directory-col a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color 0.3s; }

.footer-directory-col a:hover { color: var(--primary); }

@media (max-width: 768px) { .footer-directory { grid-template-columns: 1fr; } }


.social-links { display: flex; gap: 12px; margin-top: 16px; }

.social-links a { width: 40px; height: 40px; border-radius: 10px; background: var(--card); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; transition: all 0.3s; }

.social-links a:hover { background: var(--primary); color: white; }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 30px; text-align: center; color: var(--text-muted); font-size: 14px; }

/* Shared page framing */
main:not(.admin-main) { position: relative; }
.section[style*="padding-top"] { padding-bottom: 96px !important; }
.section-header h1 { font-size: 48px; font-weight: 800; }
.section-header strong { color: var(--primary); }
.filters { padding: 4px; }
.filter-btn:hover { border-color: var(--primary); color: var(--text); }
.footer { margin-top: 32px; }

/* Filters */
.filters { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }

.filter-btn { padding: 12px 24px; border-radius: 30px; border: 1px solid var(--border); background: var(--card); color: var(--text-muted); cursor: pointer; font-weight: 500; transition: all 0.3s; }

.filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

/* Categories Large */
.categories-large { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.category-large { display: flex; align-items: center; gap: 32px; padding: 48px; border-radius: 20px; text-decoration: none; color: var(--text); transition: all 0.3s; }

.category-large-icon { width: 100px; height: 100px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; flex-shrink: 0; }

.category-large-content h2 { font-size: 32px; margin-bottom: 8px; }

.category-large-content p { color: var(--text-muted); margin-bottom: 16px; }

.category-stats { display: flex; gap: 16px; }

.category-stats .stat { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 500; }

.category-teen { background: linear-gradient(135deg, rgba(236,72,153,0.1), rgba(236,72,153,0.05)); border: 1px solid rgba(236,72,153,0.3); }

.category-teen .category-large-icon { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; }

.category-teen .stat { background: rgba(236,72,153,0.2); color: var(--primary); }

.category-milf { background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(139,92,246,0.05)); border: 1px solid rgba(139,92,246,0.3); }

.category-milf .category-large-icon { background: linear-gradient(135deg, var(--secondary), #7c3aed); color: white; }

.category-milf .stat { background: rgba(139,92,246,0.2); color: var(--secondary); }

/* Shared category treatment */
.category-card,
.category-large {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--text);
}

.category-card:hover,
.category-large:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.category-card .category-icon,
.category-large .category-large-icon {
    background: var(--darker);
    border: 1px solid var(--border);
    color: var(--primary);
}

.category-card .category-badge,
.category-large .category-stats .stat {
    background: var(--darker);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.category-large {
    padding: 32px;
}

.category-large-content h2 {
    font-size: 24px;
}

.category-large-content { min-width: 0; }

/* Daily highlight: one slim, full-width editorial card */
#popular-model {
    display: block;
}

#popular-model .model-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    max-width: 860px;
    min-height: 180px;
    margin: 0 auto;
}

#popular-model .model-card > div:first-child {
    height: 100%;
}

#popular-model .model-card .model-image {
    height: 100% !important;
    min-height: 180px;
}

#popular-model .model-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 28px;
}

#popular-model .model-desc {
    max-width: 620px;
}

.zoomable-image { cursor: zoom-in; }
.image-lightbox { position: fixed; inset: 0; z-index: 3000; display: flex; align-items: center; justify-content: center; padding: 32px; background: rgba(0, 0, 0, 0.9); cursor: zoom-out; }
.image-lightbox img { max-width: min(100%, 1100px); max-height: 90vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5); }
.image-lightbox-close { position: absolute; top: 18px; right: 24px; border: 0; background: transparent; color: white; font-size: 42px; line-height: 1; cursor: pointer; }
.image-lightbox-prev, .image-lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 50%; background: rgba(20, 20, 20, 0.75); color: white; font-size: 28px; cursor: pointer; }
.image-lightbox-prev { left: 24px; }
.image-lightbox-next { right: 24px; }
.image-lightbox-prev:hover, .image-lightbox-next:hover { background: var(--primary); border-color: var(--primary); }
@media (max-width: 600px) { .image-lightbox { padding: 20px 52px; } .image-lightbox-prev, .image-lightbox-next { width: 38px; height: 38px; font-size: 22px; } .image-lightbox-prev { left: 8px; } .image-lightbox-next { right: 8px; } }

@media (max-width: 700px) {
    #popular-model .model-card {
        grid-template-columns: 1fr;
    }

    #popular-model .model-card .model-image {
        min-height: 160px;
        max-height: 190px;
    }

    #popular-model .model-info {
        padding: 24px;
    }
}

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 64px; }

.pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 40px; text-align: center; position: relative; }

.pricing-card.popular { border: 2px solid var(--primary); transform: scale(1.05); }

.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--primary), var(--secondary)); padding: 6px 20px; border-radius: 20px; font-size: 13px; font-weight: 600; }

.pricing-name { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; display: block; }

.pricing-price { font-size: 56px; font-weight: 800; margin-bottom: 8px; }

.pricing-period { color: var(--text-muted); }

.pricing-features { list-style: none; margin: 32px 0; text-align: left; }

.pricing-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

.pricing-features li i { color: var(--success); }

.pricing-features li.disabled { opacity: 0.4; }

.pricing-features li.disabled i { color: var(--busy); }

.credit-topup { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; text-align: center; }

.credit-topup h3 { font-size: 24px; margin-bottom: 8px; }

.credit-topup p { color: var(--text-muted); margin-bottom: 24px; }

.credit-amounts { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.credit-btn { padding: 16px 32px; background: var(--darker); border: 1px solid var(--border); border-radius: 12px; color: var(--text); font-size: 18px; font-weight: 600; cursor: pointer; transition: all 0.3s; }

.credit-btn:hover, .credit-btn.active { border-color: var(--primary); color: var(--primary); }

/* Admin */
.admin-body { overflow: hidden; }

.admin-layout { display: flex; height: 100vh; }

.admin-sidebar { width: 280px; background: var(--darker); border-right: 1px solid var(--border); display: flex; flex-direction: column; }

.admin-brand { padding: 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }

.admin-title { font-weight: 700; }

.admin-status { font-size: 12px; color: var(--success); }

.admin-nav { flex: 1; padding: 16px 0; }

.admin-nav-item { display: flex; align-items: center; gap: 12px; padding: 14px 24px; color: var(--text-muted); text-decoration: none; border-left: 3px solid transparent; transition: all 0.3s; }

.admin-nav-item:hover, .admin-nav-item.active { background: var(--card); border-left-color: var(--primary); color: var(--text); }

.admin-footer { padding: 24px; border-top: 1px solid var(--border); }

.admin-main { flex: 1; padding: 32px; overflow: auto; }

.admin-main h2 { font-size: 28px; margin-bottom: 32px; }

.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 32px; }

.admin-stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }

.stat-label { color: var(--text-muted); font-size: 14px; margin-bottom: 8px; }

.stat-value { font-size: 32px; font-weight: 700; }

.stat-change { font-size: 13px; margin-top: 4px; color: var(--text-muted); }

.stat-change.positive { color: var(--success); }

.admin-charts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.chart-container { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }

.chart-container h3 { font-weight: 600; margin-bottom: 16px; }

/* Profile Page Styles */
.profile-hero { height: 480px; position: relative; overflow: hidden; }

.profile-hero img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }

.profile-hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 32px 40px; background: linear-gradient(to top, var(--dark), transparent); }

.profile-header-content { max-width: 1400px; margin: 0 auto; display: flex; align-items: flex-end; gap: 32px; }

.profile-avatar { width: 240px; height: 240px; border-radius: 20px; overflow: hidden; border: 4px solid var(--primary); box-shadow: 0 0 40px rgba(236,72,153,0.4); flex-shrink: 0; }

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

.profile-title { flex: 1; padding-bottom: 20px; }

.profile-title h1 { font-size: 48px; font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 16px; }

.profile-meta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.profile-meta-item { display: flex; align-items: center; gap: 6px; }

.profile-status { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px; font-weight: 700; }
.profile-status-online { background: rgba(16, 185, 129, 0.18); color: #6ee7b7; }
.profile-status-busy { background: rgba(239, 68, 68, 0.18); color: #fca5a5; }
.profile-status-away { background: rgba(245, 158, 11, 0.18); color: #fcd34d; }
.profile-status-offline { background: rgba(113, 113, 122, 0.22); color: #d4d4d8; }
.profile-price-box { text-align: right; padding-bottom: 20px; }
.profile-phone { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; padding: 8px 12px; color: var(--primary); font-size: 18px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.profile-phone:hover { color: white; }
.profile-phone-disabled { color: var(--text-muted); text-decoration: none; cursor: not-allowed; }
.profile-phone-disabled:hover { color: var(--text-muted); }
.profile-price-box .btn-primary { position: relative; z-index: 2; cursor: pointer; }
.profile-price-box .profile-call-disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

.profile-price-tag { padding: 20px 40px; border-radius: 16px; margin-bottom: 16px; background: linear-gradient(135deg, rgba(236,72,153,0.2), rgba(139,92,246,0.2)); border: 1px solid rgba(236,72,153,0.3); }

.profile-price-tag .amount { font-size: 48px; font-weight: 800; color: var(--primary); }

.profile-price-tag .label { font-size: 14px; color: var(--text-muted); }

.profile-details { padding-top: 40px; }
.profile-back { display: inline-block; margin-bottom: 32px; color: var(--text-muted); text-decoration: none; }
.profile-back:hover { color: var(--primary); }
.profile-description { max-width: 720px; }
.profile-description h2 { margin-bottom: 12px; }
.profile-description p { margin: 0; color: var(--text-muted); font-size: 17px; line-height: 1.8; white-space: pre-line; overflow-wrap: anywhere; }
.profile-specialties { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.profile-specialties span { padding: 8px 12px; background: var(--card); border: 1px solid var(--border); border-radius: 6px; color: var(--text-muted); }
.profile-info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 32px; max-width: 720px; }
.profile-info-grid > div { display: flex; flex-direction: column; gap: 6px; padding: 16px; background: var(--card); border: 1px solid var(--border); border-radius: 10px; }
.profile-info-grid strong { color: var(--text); }
.profile-info-grid span { color: var(--text-muted); }
.profile-gallery, .profile-reviews { margin-top: 40px; max-width: 900px; }
.profile-gallery h2, .profile-reviews h2 { margin-bottom: 16px; }
.profile-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.profile-gallery-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; border: 1px solid var(--border); }
.profile-reviews blockquote { padding: 16px; margin-bottom: 12px; background: var(--card); border-left: 3px solid var(--primary); border-radius: 0 8px 8px 0; }
.profile-reviews blockquote p { margin: 8px 0; color: var(--text-muted); }
.profile-reviews small, .profile-muted { color: var(--text-muted); }

/* Utility */
.hidden { display: none !important; }

.text-center { text-align: center; }

.mt-4 { margin-top: 32px; }

/* Responsive */
@media (max-width: 1200px) {
    .models-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 48px; }
}

@media (max-width: 768px) {
    .models-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 36px; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .nav-container { padding: 12px 16px; gap: 16px; }
    .logo { flex-shrink: 0; }
    .logo-icon { width: 36px; height: 36px; }
    .gradient-text { font-size: 21px; }
    .nav-links { flex: 1; justify-content: flex-start; gap: 20px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-link { flex-shrink: 0; font-size: 13px; white-space: nowrap; }
    .hero-buttons { flex-direction: column; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: none; }
    .admin-sidebar { display: none; }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .admin-charts { grid-template-columns: 1fr; }
    .profile-hero { height: 580px; }
    .profile-hero-overlay { padding: 32px 20px 24px; }
    .profile-header-content { align-items: flex-start; flex-direction: column; gap: 16px; }
    .profile-avatar { width: 150px; height: 150px; }
    .profile-title { padding-bottom: 0; }
    .profile-title h1 { font-size: 34px; }
    .profile-price-box { width: 100%; padding-bottom: 0; text-align: left; display: flex; align-items: center; gap: 16px; }
        .profile-price-box { width: 100%; padding-bottom: 0; text-align: left; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .profile-price-tag { margin-bottom: 0; padding: 12px 18px; }
    .profile-price-tag .amount { font-size: 30px; }
    .profile-info-grid { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .section[style*="padding-top"] { padding-top: 112px !important; }
    .section-header { margin-bottom: 40px; }
    .section-header h1, .section-header h2 { font-size: 34px; }
    .container { padding: 0 16px; }
    .categories-large { grid-template-columns: 1fr; gap: 16px; }
    .category-large { min-width: 0; padding: 24px; gap: 20px; }
    .category-large-icon { width: 72px; height: 72px; font-size: 30px; }
    .category-large-content h2 { font-size: 22px; }
}