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

body {
    background-color: #1a1a1a;
    background-size: 2px 2px; 
    min-height: 100vh;
}

a {
    text-decoration: none;
    transition: color 0.3s;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center ;
    padding: 20px 80px;
    font-weight: 600;
}

.logo {
    font-size: 24px;
}

.logo-whac {
    color: #fff;
    font-weight: 700;
}

.nav-links a {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 14px;
}

.nav-links a.active {
    color: #fff;
    font-weight: 600;
}

.member-link a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.red-a {
    color: #ff4d4d;
    font-size: larger;
}

.component {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-image {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 10px;
}

.card-caption {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}