:root { --bg:#0f1115; --card:#1a1d24; --line:#2a2f38; --text:#e8eaee; --muted:#8b96a5; --accent:#ff2d55; --accent2:#ff5e7a; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text); font-family: -apple-system, sans-serif; line-height: 1.5; }
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.flex { display: flex; align-items: center; justify-content: space-between; }
.topbar { background: var(--card); border-bottom: 1px solid var(--line); padding: 12px 0; }
.logo { font-size: 20px; font-weight: 900; color: var(--text); text-decoration: none; }
.desktop-nav a { color: var(--text); text-decoration: none; margin-left: 20px; font-weight: 600; }
.hero { text-align: center; padding: 60px 20px; }
.hero h1 { font-size: 48px; font-weight: 900; background: linear-gradient(135deg, #ff2d55, #ff5e7a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 12px; }
.hero p { color: var(--muted); font-size: 18px; }
h2 { margin: 30px 0 20px; font-size: 24px; }
.stations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.station-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px; transition: .2s; }
.station-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.sc-cover { display: block; width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 10px; margin-bottom: 12px; background: #0a0c10; }
.station-card h3 { font-size: 17px; margin-bottom: 8px; }
.station-card .np { font-size: 13px; color: var(--muted); margin-bottom: 12px; min-height: 36px; }
.actions { display: flex; gap: 8px; }
.btn { display: block; flex: 1; text-align: center; padding: 10px; background: var(--accent); color: #fff; text-decoration: none; border-radius: 8px; font-weight: 600; font-size: 14px; }
.chat-page { display: grid; grid-template-columns: 300px 1fr; gap: 20px; }
.chat-sidebar { background: var(--card); border-radius: 14px; padding: 16px; height: fit-content; }
.sc-cover-chat { display: block; width: 100%; max-width: 200px; aspect-ratio: 1/1; object-fit: cover; border-radius: 10px; margin: 0 auto 12px; }
.chat-messages { background: var(--card); border-radius: 14px; padding: 16px; min-height: 400px; }
.msg { padding: 8px 0; border-bottom: 1px solid var(--line); }
.msg b { color: var(--accent2); }
.muted { color: var(--muted); }
.footer { text-align: center; padding: 30px 20px; color: var(--muted); border-top: 1px solid var(--line); margin-top: 40px; }
@media (max-width: 700px) { .chat-page { grid-template-columns: 1fr; } .hero h1 { font-size: 32px; } }
