body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('https://images.unsplash.com/photo-1555215695-3004980ad54e?auto=format&fit=crop&w=1920&q=80');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #000000;
    
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 40px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #58a6ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

nav {
    margin-bottom: 30px;
}

/* Staff Team Section */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.staff-card {
    background-color: rgba(22, 27, 34, 0.85);
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 20px;
    backdrop-filter: blur(5px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
    border-color: #58a6ff;
}

.staff-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 8px;
}

.role-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.role-badge.owner { background-color: #da3633; color: #ffffff; }
.role-badge.dev { background-color: #8957e5; color: #ffffff; }
.role-badge.admin { background-color: #238636; color: #ffffff; }
.role-badge.mod { background-color: #1f6beb; color: #ffffff; }
.role-badge.helper { background-color: #0096FF; color: #ffffff; }

.staff-desc {
    font-size: 0.9rem;
    color: #8b949e;
    margin: 0;
}

.back-link {
    margin-top: 20px;
}

/* Option A: Solid background color */
            /* Changes text color to white for contrast */

            /* Option B: Background image */
            /* background-image: url('https://example.com/image.jpg'); */
            /* background-size: cover; */
            /* background-position: center; */