:root {
    --bg: #0D0E12;
    --card: rgba(27, 29, 37, 0.55);
    --card2: #1B1D25;
    --border: rgba(76, 103, 255, 0.15);
    --text: #ffffff;
    --muted: #8b919e;
    --blue: #4c67ff;
    --cyan: #6980ff;
    --green: #079417;
    --purple: #2b4afc;
    --red: #ef4444;
    --amber: #f59e0b;
}

.hs-page {
    margin: 0;
    background: transparent;
    color: var(--text);
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.hs-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 20px 40px;
}

.hs-hero {
    margin-bottom: 24px;
}

.hs-hero h1 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
}

.hs-hero p {
    margin: 0;
    color: var(--muted);
    max-width: 720px;
    line-height: 1.5;
}

.hs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.hs-grid-wide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.hs-card {
    background: linear-gradient(180deg, var(--card2), var(--card));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
}

.hs-card h3,
.hs-card h5 {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hs-accent-blue { border-left: 3px solid var(--blue); }
.hs-accent-green { border-left: 3px solid var(--green); }
.hs-accent-purple { border-left: 3px solid var(--purple); }
.hs-accent-amber { border-left: 3px solid var(--amber); }
.hs-accent-cyan { border-left: 3px solid var(--cyan); }

.hs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.hs-muted {
    color: var(--muted);
    font-size: 13px;
}

.hs-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.hs-status.online {
    background: rgba(16, 185, 129, 0.15);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.hs-status.offline {
    background: rgba(239, 68, 68, 0.15);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.hs-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hs-user img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    object-fit: cover;
}

.hs-user h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.hs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: 0.15s;
}

.hs-btn-green {
    background: var(--green);
    color: #04130d;
}

.hs-btn-blue {
    background: linear-gradient(90deg, #4c67ff, #2b4afc);
    color: #fff;
    box-shadow: 0 0 24px rgba(116, 103, 255, 0.5);
}

.hs-btn-ghost {
    background: #1f2430;
    color: #cbd5e1;
    border: 1px solid var(--border);
}

.hs-btn:hover {
    filter: brightness(1.08);
}

.hs-sub-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.hs-sub-info h5 {
    margin: 0 0 6px;
    font-size: 15px;
}

.hs-sub-days {
    margin: 0;
    color: var(--amber);
    font-size: 14px;
    font-weight: 600;
}

.hs-sub-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hs-sub-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #1f2430;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    transition: 0.15s;
}

.hs-sub-icon:hover {
    border-color: var(--blue);
    color: #fff;
    background: rgba(59, 130, 246, 0.15);
}

.hs-sub-empty .hs-sub-days {
    color: var(--muted);
}

.hs-faq {
    display: grid;
    gap: 10px;
}

.hs-faq-item {
    background: linear-gradient(180deg, var(--card2), var(--card));
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.hs-faq-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text);
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.hs-faq-btn:hover {
    background: rgba(59, 130, 246, 0.08);
}

.hs-faq-body {
    padding: 0 16px 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.hs-faq-body li {
    margin: 0;
}

.hs-faq-body a {
    color: var(--cyan);
}

.hs-alert {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.35);
    background: rgba(239, 68, 68, 0.1);
    color: #fecaca;
    font-size: 13px;
}

.hs-section-title {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}
