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

/* ===== RESET ===== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background: #0f1220;
    color: #e5e7eb;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

h1, h2, h3 {
    margin-top: 0;
}

/* ===== TOP BAR ===== */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: #0b0f1a;
    border-bottom: 1px solid #1f2937;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #e5e7eb;
    text-decoration: none;
}

.nav a {
    margin: 0 12px;
    color: #cbd5f5;
    text-decoration: none;
    font-weight: 500;
}

.nav a:hover {
    color: #fff;
}

.auth a {
    margin-left: 12px;
    text-decoration: none;
    color: #cbd5f5;
}

.auth .btn {
    background: #8b5cf6;
    padding: 8px 14px;
    border-radius: 8px;
    color: #fff;
}

/* ===== HERO GRID ===== */
.heroes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.hero-card {
    background: #141a2a;
    border-radius: 12px;
    padding: 14px;
    transition: .2s;
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,.4);
}

.hero-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.hero-card h3 {
    margin: 10px 0 4px;
    font-size: 16px;
}

.hero-card span {
    color: #e53935;
    font-size: 1



