* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fbce87;
  
  background-size: cover;
  color: black;
}

header {
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.logo img {
  width: 60px;
  margin-right: 15px;
}

nav a {
  margin: 0 20px;
  text-decoration: none;
  color: white;
  font-size: 18px;
  line-height: 22px;
}

.search-bar input {
  padding: 5px 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

main {
  padding: 40px 20px;
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-card {
  background-color: rgba(255, 255, 255, 0.15); 
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 25px 20px;
  border-radius: 20px;
  width: 250px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: #222;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}


..social-card .title {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
}



.likes {
  color: red;
  font-weight: bold;
  margin-bottom: 10px;
}

.social-card img {
  width: 100px;          
  height: 100px;         
  object-fit: contain;  
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin: 0 auto 20px;
  display: block;
}


 .social-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}


nav a.active {
  color: black;
}

nav ul a {
      color: white;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;