* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    background: #0f1117;
    color: #e2e8f0;
    min-height: 100vh;
}

header {
    border-bottom: 1px solid #1e2433;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0d1018;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.logo-text { font-size: 18px; font-weight: 600; color: #f1f5f9; }

.header-links { display: flex; gap: 8px; }
.header-link {
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    color: #94a3b8;
    transition: all 0.2s;
}
.header-link:hover { color: #f1f5f9; background: #1e2433; }
.header-link.primary { background: #6366f1; color: white; }
.header-link.primary:hover { background: #4f46e5; }

/* Hero */
.hero { text-align: center; padding: 80px 40px 60px; }
.hero-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.3);
    border-radius: 20px;
    font-size: 13px;
    color: #818cf8;
    margin-bottom: 24px;
}
.hero h1 { font-size: 48px; font-weight: 700; color: #f1f5f9; line-height: 1.2; margin-bottom: 16px; }
.hero h1 span {
    background: linear-gradient(135deg, #6366f1, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p { font-size: 18px; color: #64748b; max-width: 520px; margin: 0 auto 40px; line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; justify-content: center; }

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary { background: #6366f1; color: white; }
.btn-primary:hover { background: #4f46e5; transform: translateY(-1px); }
.btn-secondary { background: #1e2433; color: #cbd5e1; border: 1px solid #2d3748; }
.btn-secondary:hover { background: #252d3d; color: #f1f5f9; transform: translateY(-1px); }
.btn-vipro { background: linear-gradient(90deg, #7c3aed 0%, #6366f1 100%); color: white; }
.btn-vipro:hover { background: linear-gradient(90deg, #6d28d9 0%, #4f46e5 100%); transform: translateY(-1px); }

/* Cards */
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px 80px; }
.section-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #475569;
    margin-bottom: 16px;
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}
.card {
    background: #131720;
    border: 1px solid #1e2433;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.card:hover {
    border-color: #6366f1;
    background: #161b27;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99,102,241,0.1);
}
.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.icon-purple { background: rgba(99,102,241,0.15); }
.icon-blue   { background: rgba(59,130,246,0.15); }
.icon-green  { background: rgba(34,197,94,0.15); }
.icon-orange { background: rgba(249,115,22,0.15); }
.icon-pink   { background: rgba(236,72,153,0.15); }
.icon-teal   { background: rgba(20,184,166,0.15); }

.card-body h3 { font-size: 16px; font-weight: 600; color: #f1f5f9; margin-bottom: 6px; }
.card-body p  { font-size: 14px; color: #64748b; line-height: 1.5; }
.card-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 10px;
}
.tag-user  { background: rgba(99,102,241,0.15); color: #818cf8; }
.tag-dev   { background: rgba(249,115,22,0.15);  color: #fb923c; }
.tag-admin { background: rgba(239,68,68,0.15);   color: #f87171; }
.tag-vipro { background: rgba(124,58,237,0.18);  color: #a78bfa; }

.divider { border: none; border-top: 1px solid #1e2433; margin: 40px 0; }

/* Status Bar */
.status-bar {
    background: #131720;
    border: 1px solid #1e2433;
    border-radius: 12px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.status-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #64748b; }
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34,197,94,0.5);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.status-label { color: #94a3b8; }

footer { text-align: center; padding: 32px; border-top: 1px solid #1e2433; color: #334155; font-size: 13px; }
