body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    position: relative;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

header {
    text-align: center;
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

h1, h2 {
    font-weight: 600;
    text-align: center;
}

main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.team-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    text-align: center;
    padding: 10px 0;
}

.team-list p {
    background: linear-gradient(135deg, #0044cc, #00aaff);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.team-list p:hover {
    background: linear-gradient(135deg, #00aaff, #0044cc);
    transform: translateY(-5px);
    cursor: pointer;
}

.facebook-section {
    text-align: center;
    margin-top: 40px;
}

footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.85);
    position: fixed;
    width: 100%;
    bottom: 0;
}