* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
  }
  
  body {
    background: url('https://giffiles.alphacoders.com/121/12138.gif') center/cover no-repeat fixed;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
  }
  
  .background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    z-index: 0;
  }
  
  .container {
    width: 100%;
    max-width: 600px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .profile-card {
    background: url('https://giffiles.alphacoders.com/121/12138.gif') center/cover no-repeat;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: white;
  }
  
  h1 {
    font-size: 1.8rem;
    color: #001f3f;
    margin-bottom: 1rem;
  }
  
  .bio {
    color: #001f3f;
    margin-top: 1rem;
  }
  
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .social-links a,
  .social-links button {
    text-decoration: none;
    background-color: #001f3f;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
  }
  
  .social-links a:hover,
  .social-links button:hover {
    background-color: #005bb5;
  }
  
  /* Popup overlay with transparent background */
  .social-container,
  .maintenance-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05); /* Transparan tanpa blur */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 20px;
  }
  
  .social-popup,
  .maintenance-card {
    background: url('https://giffiles.alphacoders.com/121/12138.gif') center/cover no-repeat;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    color: white;
    text-align: center;
    animation: fadeIn 0.4s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .social-popup h2,
  .maintenance-card h1 {
    color: #001f3f;
    margin-bottom: 1rem;
  }
  
  .social-popup .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .social-popup .social-links a {
    background-color: #001f3f;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .social-popup button,
  .maintenance-card button {
    margin-top: 1.5rem;
    padding: 10px 20px;
    background-color: #001f3f;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .social-popup button:hover,
  .maintenance-card button:hover {
    background-color: #005bb5;
  }
  
  @media (min-width: 768px) {
    h1 {
      font-size: 2.2rem;
    }
  
    .bio {
      font-size: 1.1rem;
    }
  
    .social-links a,
    .social-links button {
      font-size: 1.1rem;
    }
  }
  