body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #101820;
    color: #e9eef2;
}

header {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://i.imgur.com/Vi6cG5M.jpeg') center/cover no-repeat;
}

header h1 {
    font-size: 50px;
    margin-bottom: 10px;
    color: #8ecafc;
}

.ip {
    font-size: 22px;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 25px;
    background: #4da3ff;
    color: white;
    cursor: pointer;
    border-radius: 6px;
    font-size: 18px;
    transition: 0.2s;
}

.btn:hover {
    background: #1a7fe3;
}

section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

h2 {
    border-bottom: 2px solid #4da3ff;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.staff-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #1a2634;
    padding: 20px;
    border-radius: 8px;
    width: 200px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

footer {
    text-align: center;
    padding: 20px;
    background: #0d141b;
    margin-top: 40px;
}
