  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
  }

  .thin-intro {
    font-weight: 400; /* Light */
  }
  
  .bold-name {
    font-weight: 600; /* Bold */
  }
  
  .navbar {
    background-color: #0e6d61;
  }
  
  .navbar-brand,
  .nav-link {
    color: #a0f0de !important;
    font-weight: 500;
  }
  
  .navbar-brand:hover,
  .nav-link:hover {
    color: #1bbfa1 !important;
  }
  
  .hero {
    min-height: 100vh;
    padding: 0;
  }
  
  .hero > .row {
    overflow: hidden;
    margin: 0;
  }
  
  .hero-text {
    /* background: white; */
    padding: 3rem 4rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically center */
    align-items: center;      /* horizontally center */
    text-align: center; 
    z-index: 2;
    position: relative;
  }
  
  .hero-text h1 {
    font-size: 3.5rem;
    color: #1bbfa1;
    margin-bottom: 1rem;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  a.btn-games {
    background-color: #1bbfa1;
    color: white;
    font-weight: 500;
    width: fit-content;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  a.btn-games:hover {
    background-color: rgb(24, 157, 117);
    color: white;
    text-decoration: none;
  }
  
  .hero-image {
    background: #1bbfa1;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 5% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 2rem;
    position: relative;
  }
  
  .img-wrapper {
    transform: translateX(20%);
  }
  
  .profile-img {
    max-width: 300px;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .profile-img:hover {
    transform: scale(1.05);
  }
  /* Responsive adjustments */
  @media (max-width: 991.98px) {
    .hero-text,
    .hero-image {
      height: auto !important;
      padding: 2rem !important;
      clip-path: none !important;
    }
  }
  