* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.3);
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #00d0ff;
}

.staff-hero {
    position: relative;
    height: 60vh;
    background: url('img/fondo.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.staff-hero .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}

.staff-hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
}

.staff {
    background: #111;
    text-align: center;
    padding: 80px 20px;
    color: white;
}

.staff h2 {
    font-size: 28px;
    margin: 40px 0 25px;
    color: #00d0ff;
}

.staff-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.staff-card {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 15px;
    width: 190px;
    transition: 0.3s;
    box-shadow: 0 0 12px rgba(0,0,0,0.6);
}

.staff-card img {
    width: 100px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.staff-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.staff-card p {
    font-size: 14px;
    color: #ccc;
}

.staff-card.owner { background: #8b1e1e; }
.staff-card.owner:hover { box-shadow: 0 0 12px #bf1515; transform: translateY(-6px); }

.staff-card.dev { background: #1e3d8b; }
.staff-card.dev:hover { box-shadow: 0 0 12px #1a4dcd; transform: translateY(-6px); }

.staff-card.admin { background: #446fdd; }
.staff-card.admin:hover { box-shadow: 0 0 12px #6994ff; transform: translateY(-6px); }

.staff-card.staff { background: #420dff; }
.staff-card.staff:hover { box-shadow: 0 0 12px #3600f8; transform: translateY(-6px); }

footer {
    background: #0d0d0d;
    color: #666;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media (max-width: 992px) {
    .hero-title { font-size: 26px; }
    .staff h2 { font-size: 24px; }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 10px;
    }
    .navbar a {
        margin: 8px 0;
    }
    .staff-hero { height: 40vh; }
    .hero-title { font-size: 22px; }
    .staff-card { width: 150px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 20px; }
    .staff h2 { font-size: 20px; }
    .staff-card {
        width: 100%;
        max-width: 260px;
    }
    .staff-card img {
        width: 80px;
        height: 120px;
    }
}
