/* Global styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, #121212, #1e1e1e);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    text-align: center;
    display: block;
    padding-bottom: 50px;
    width:100%;
  }
  
  .banner-container {
    height: 378px;
    overflow: hidden;
  }
  
  .banner {
    width: 100%;
    height: 600px;
    max-height: 600px;
    object-position: center;
    display: block;
    /* margin-bottom: -300px; */
    overflow: hidden;
  }
  
  .main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
  }
  
  .profile-wrapper {
    perspective: 1000px;
    width: 140px;
    height: 140px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .profile-flip {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s ease-in-out;
    transform-origin: center center;
  }
  
  .profile-flip.flipped {
    transform: rotateY(180deg);
  }
  
  .face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00f2ff;
    backface-visibility: hidden;
    top: 0;
    left: 0;
  }
  
  .front {
    transform: rotateY(0deg);
  }
  
  .back {
    transform: rotateY(180deg);
  }
  
  .bio {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  
  .links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 2rem;
  }
  
  .links a {
    background: #FF1E3C;
    color: #000;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .links a:hover {
    background: #0ff;
    transform: scale(1.05);
  }
  
  .links a i {
    margin-right: 8px;
  }
  
  .footer {
    text-align: center;
    font-size: 0.9rem;
    color: #FF1E3C;
    border-top: 1px solid #333;
    background-color: #1a1a1a;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 50%;
  }
  
  /* ✅ Mobile responsive */
  @media (max-width: 600px) {
    .profile-wrapper {
      width: 100px;
      height: 100px;
    }
  
    .face {
      width: 100px;
      height: 100px;
    }
  
    h1 {
      font-size: 1.5rem;
    }
  
    .bio {
      font-size: 0.8rem;
    }
  
    .links a {
      padding: 10px 16px;
      font-size: 0.95rem;
    }
  
    /* .banner {
      max-height: 150px;
    } */
    .banner {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: cover;
        display: block;
        
      }
  }