.owners-container {
    display: flex;
    gap: 60px;
    margin: 50px 0;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.owner-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
}

.profile-img:hover {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
    transform: scale(1.05);
}

.profile-name {
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
    margin: 0;
}

.profile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 200px;
}

.profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 5px;
    color: #ffffff;
    font-family: 'Pixelify Sans', cursive;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
}

.profile-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.icon {
    width: 20px;
    height: 20px;
}

.back-btn {
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .owners-container {
        flex-direction: column;
        gap: 50px;
    }

    .profile-img {
        width: 150px;
        height: 150px;
    }

    .profile-name {
        font-size: 1.6rem;
    }

    .profile-buttons {
        width: 180px;
    }

    .profile-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}
