/* General Body Styles */
:root {
    --g1: rgb(98, 0, 234);
    --g2: rgb(236, 64, 122);
  }
  
  body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background-color: rgb(20, 20, 20);
      color: #333333;
      margin: 0;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      overflow: hidden; /* Hide scrollbars caused by the grid */
  }

  /* Gradient Banner Background */
  #gradient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    --gradient-color-1: #a960ee;
    --gradient-color-2: #ff333d;
    --gradient-color-3: #90e0ff;
    --gradient-color-4: #ffcb57;
    z-index: -2; /* Place it behind the tiles */
  }
  
  /* Interactive Tiles Background */
  #tiles {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100vh;
    display: grid;
    z-index: -1; /* Place it above the gradient but below the content */
  }
  
  .tile {
    position: relative;
  }
  
  .tile:before {
    content: "";
    position: absolute;
    inset: 0.5px;
    background-color: rgb(30, 30, 30);
  }
  
  #tiles:hover .tile:before {
      background-color: rgb(40, 40, 40);
  }
  
  .tile:hover:before {
    background-color: var(--g1);
    background-image: radial-gradient(
      circle at center,
      var(--g1) 0,
      var(--g2) 100%
    );
  }
  
  
  /* Main Content Wrapper */
  .content-wrapper {
      display: flex;
      max-width: 1000px;
      width: 100%;
      gap: 20px;
      z-index: 2; /* Ensure content is above all backgrounds */
  }
  
  /* Left side wrapper */
  .left-side-wrapper {
      flex-basis: 40%;
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  
  /* Box styling for top-left and bottom-left sections */
  .top-left-box, .bottom-left-box {
      background-color: rgba(48, 48, 48, 0.5);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      color: #ecf0f1;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .top-left-box {
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      align-items: center;
      text-align: center;
      flex-grow: 1;
  }
  
  .profile-pic {
      width: 250px;
      height: 250px;
      border-radius: 100%;
      object-fit: cover;
      border: 5px solid #000000;
  }
  
  .name-container, .bio-container {
      background-color: rgba(0, 0, 0, 0.25);
      padding: 15px 20px;
      border-radius: 10px;
      width: 90%;
      box-sizing: border-box;
      margin-top: 0px;
  }
  
  .beeny-logo {
      height: 40px;
      width: auto;
  }
  
  .top-left-box p {
      font-size: 1em;
      line-height: 1.6;
      margin: 0;
  }
  
  /* Bottom-left box for languages */
  .bottom-left-box h2 {
      margin-top: 0;
      margin-bottom: 20px;
      color: #ecf0f1;
      border-bottom: 2px solid #555;
      padding-bottom: 10px;
  }
  
  .languages {
      list-style-type: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
  }
  
  .languages li {
      background-color: #db3434;
      color: #ffffff;
      padding: 5px 12px;
      border-radius: 15px;
      font-size: 0.9em;
      font-weight: 500;
  }
  
  
  /* Right Column */
  .right-column {
      flex-basis: 60%;
      background-color: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 40px;
  }
  
  .right-column h2 {
      color: #000000;
      border-bottom: 2px solid rgba(224, 224, 224, 0.7);
      padding-bottom: 10px;
      margin-top: 0;
  }
  
  .socials ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
  }
  
  .socials li {
      margin-bottom: 20px;
  }
  
  .socials a {
      text-decoration: none;
      color: #ffffff;
      font-weight: bold;
      transition: color 0.3s ease;
  }
  
  .socials a:hover {
      color: #b92929;
  }
  
  .projects {
      margin-top: 30px;
  }
  
  .project-card {
      background-color: rgba(249, 249, 249, 0.8);
      border-left: 10px solid red;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 10px 10px 10px 10px;
  }
  
  .project-card h3 {
      margin-top: 0;
      color: #502c2c;
  }
  
  .project-card p {
      margin-bottom: 15px;
      line-height: 1.5;
  }
  
  .project-card a {
      text-decoration: none;
      color: #ffffff;
      background-color: #db3434;
      padding: 8px 15px;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease;
  }
  
  .project-card a:hover {
      background-color: #b92929;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .content-wrapper {
          flex-direction: column;
      }
  }
  
  .socialdiscord {
      text-decoration: none;
      color: #ffffff;
      background-color: #5865f2;
      padding: 8px 15px;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease;
  }
  
  a {
      color: rgb(255, 255, 255);
      font-weight: bold;
    }
  
    .socialyoutube {
      text-decoration: none;
      color: #ffffff;
      background-color: #ff0000;
      padding: 8px 15px;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease;
  }
  
  .socialtwitter {
      text-decoration: none;
      color: #ffffff;
      background-color: #00ccff;
      padding: 8px 15px;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease;
  }
  
  .socialreplit {
      text-decoration: none;
      color: #ffffff;
      background-color: #ff5100;
      padding: 8px 15px;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease;
  }
  
  .socialgithub {
      text-decoration: none;
      color: #ffffff;
      background-color: #000000;
      padding: 8px 15px;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease;
  }
  
  .socialinstagram {
      text-decoration: none;
      color: #ffffff;
      background: linear-gradient(
      45deg,
      #405de6,
      #5851db,
      #833ab4,
      #c13584,
      #e1306c,
      #fd1d1d,
      #fcb045
    );
      padding: 8px 15px;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease;
  }