* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1f1c2c, #928DAB);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.header-img-container {
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid #00cfff;
    box-shadow: 0 0 20px #00cfff, 0 0 40px rgba(0, 207, 255, 0.7);
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

.header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swag-header {
    font-size: 3rem;
    color: #00cfff;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 15px #00cfff, 0 0 25px #00cfff;
    animation: glow 2s infinite alternate;
}

.friends-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.friend {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00cfff;
    border-radius: 20px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.friend:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 207, 255, 0.7);
}

.profile-img-container {
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid #00cfff;
    margin-bottom: 15px;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.friend:hover .profile-img {
    transform: scale(1.1);
}

.friend h2 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #00cfff;
}

.friend p {
    font-size: 1rem;
    color: #fff;
    opacity: 0.9;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px #00cfff, 0 0 20px #00cfff, 0 0 30px #00cfff;
    }
    100% {
        text-shadow: 0 0 20px #00cfff, 0 0 40px #00cfff, 0 0 50px #00cfff;
    }
}