 .card-container {
     display: flex;
     overflow-x: auto;
     scroll-snap-type: x mandatory;
     -webkit-overflow-scrolling: touch;
     gap: 16px;
     padding: 20px;
 }

 .profile-card {
     background-color: #111;
     border: 1px solid #333;
     border-radius: 12px;
     width: 250px;
     min-width: 250px;
     flex-shrink: 0;
     scroll-snap-align: start;
     overflow: hidden;
     box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
     transition: transform 0.3s ease;
 }

 .profile-card:hover {
     transform: translateY(-5px);
 }

 .profile-img {
     width: 100%;
     height: 180px;
     object-fit: cover;
 }

 .profile-info {
     padding: 15px;
 }

 .profile-name {
     font-size: 1.2rem;
     font-weight: bold;
     margin: 0 0 5px 0;
 }

 .profile-bio {
     font-size: 0.9rem;
     color: #bbb;
     margin-bottom: 15px;
 }

 .follow-btn {
     display: inline-block;
     background-color: transparent;
     color: #fff;
     border: 1px solid #fff;
     padding: 8px 16px;
     border-radius: 20px;
     text-decoration: none;
     font-size: 0.9rem;
     cursor: pointer;
     transition: all 0.3s ease;
     width: 100%;
     text-align: center;
 }

 .follow-btn:hover {
     background-color: #fff;
     color: #000;
 }

 /* Hide scrollbar for a cleaner look */
 .card-container::-webkit-scrollbar {
     display: none;
 }