:root { --primary: #0f172a; --gold: #b8926a; --success: #22c55e; --danger: #ef4444; --bg: #f8fafc; }
* { box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { background: var(--bg); margin: 0; }
.hero { background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2070') center/cover; height: 300px; position: relative; display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
.overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(15, 23, 42, 0.8); }
.hero-content { position: relative; z-index: 1; padding: 20px; }
.container { max-width: 1400px; margin: -50px auto 50px; padding: 0 20px; position: relative; z-index: 2; }

.grid-layout { display: grid; gap: 25px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.05); transition: 0.3s; position: relative; border: 1px solid #e2e8f0; }
.card:hover { transform: translateY(-10px); border-color: var(--gold); }

.badge { position: absolute; top: 15px; right: 15px; padding: 5px 12px; border-radius: 20px; color: white; font-size: 11px; font-weight: bold; text-transform: uppercase; z-index: 5; }
.online { background: var(--success); box-shadow: 0 0 10px rgba(34, 197, 94, 0.4); }
.offline { background: var(--danger); }

.img-box { width: 100%; height: 200px; background: #cbd5e1; }
.img-box img { width: 100%; height: 100%; object-fit: cover; }

.info { padding: 20px; }
.cat { color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; margin: 0; }
.name { font-size: 20px; margin: 8px 0; color: var(--primary); }
.rate { color: #f59e0b; font-size: 14px; margin-bottom: 10px; }
.bio { font-size: 13px; color: #64748b; height: 38px; overflow: hidden; margin-bottom: 15px; }
.time { font-size: 12px; background: #f1f5f9; padding: 6px 12px; border-radius: 6px; color: #475569; display: inline-block; }

.btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 15px; }
.btn { padding: 10px; border-radius: 8px; text-decoration: none; text-align: center; font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px; transition: 0.2s; }
.btn-c { background: var(--primary); color: white; }
.btn-w { background: #25d366; color: white; }
.btn:disabled { background: #e2e8f0; color: #94a3b8; cursor: not-allowed; }