* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
}

body {
    background: linear-gradient(rgba(0, 27, 133, 0.043), rgba(131, 112, 255, 0.19)),
        url('Artemis2.jpg') no-repeat center center fixed;
    background-size: cover;
    backdrop-filter: blur(1px);
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    padding: 50px 20px 30px;
    max-width: 800px;
}

header h1 {
    font-size: 3.5rem;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgb(0, 0, 0), -1px -1px 0 rgba(0, 47, 255, 0.555);
}

.team-container {
    display: flex;
    justify-content: center;
    padding: 20px;
    width: 100%;
}

.card {
    background: rgba(255, 255, 255, 0.548); /* warnanya gue jadiin abu-abu kayak di gambar */
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #003386; /* border dibikin lebih tipis dikit biar pas */
}

.card h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 5px;
    font-weight: 700;
}

.card h4 {
    font-size: 0.9rem;
    color: #1d1d1d;
    margin-bottom: 25px;
    font-weight: normal;
    text-shadow: none; 
}

.task-list {
    background: rgba(0, 18, 122, 0.795);
    width: 100%;
    border-radius: 12px;
    list-style: none;
    margin-bottom: 25px;
}

.task-list li {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.task-list li:last-child {
    border-bottom: none;
}

.task-list a {
    display: block;
    padding: 15px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.1s;
}

.task-list a:hover {
    background: rgba(6, 0, 63, 0.719);
}

.task-list li:first-child a:hover {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.task-list li:last-child a:hover {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background: #0b3d91;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 80%;
}

.btn:hover {
    background: #082d6b;
    transform: scale(1.05);
}

.bg-credit {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.logo {
    position: absolute;
    top: 5px;
    right: 15px;
    width: 50px;
    height: auto;
    z-index: 1000;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    .card {
        width: 90%;
    }
}