    body {
      background: #0a0e27;
      min-height: 100vh;
      font-family: 'Poppins', sans-serif;
      position: relative;
      overflow-x: hidden;
    }

    #particles-js {
      position: fixed;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .links-container {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: stretch;
      --page-pad-x: 20px;
      padding: 40px var(--page-pad-x) 0;
      position: relative;
      z-index: 2;
    }

    .links-main {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-bottom: 40px;
    }

    .links-footer {
      align-self: stretch;
      margin-left: calc(-1 * var(--page-pad-x));
      margin-right: calc(-1 * var(--page-pad-x));
      background: linear-gradient(135deg, rgba(85, 230, 165, 0.95), rgba(78, 205, 196, 0.95));
      border-top: 1px solid rgba(0, 0, 0, 0.14);
      position: relative;
      z-index: 2;
      padding-bottom: env(safe-area-inset-bottom);
    }

    .links-footer .tf__footer_copyright {
      border-top: 0;
      margin-top: 0;
      padding: 18px 0;
      justify-content: center;
      text-align: center;
    }

    .links-footer .tf__footer_copyright p {
      margin: 0;
      color: #0f0f23;
      opacity: 1;
      font-size: 14px;
      letter-spacing: 0.2px;
    }

    .profile-section {
      text-align: center;
      margin-bottom: 50px;
    }

    .profile-avatar {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: linear-gradient(45deg, #55e6a5, #4ecdc4);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 30px;
      box-shadow: 0 8px 32px rgba(85, 230, 165, 0.3);
    }

    .profile-avatar i {
      font-size: 50px;
      color: #0f0f23;
    }

    .profile-name {
      font-size: 32px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 10px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .profile-title {
      font-size: 18px;
      color: #55e6a5;
      margin-bottom: 20px;
      font-weight: 500;
    }

    .profile-description {
      font-size: 16px;
      color: #b8c5d6;
      max-width: 400px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .links-grid {
      display: flex;
      flex-direction: column;
      gap: 15px;
      max-width: 500px;
      width: 100%;
    }

    .link-button {
      display: flex;
      align-items: center;
      padding: 18px 25px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .link-button:hover {
      background: rgba(85, 230, 165, 0.2);
      border-color: #55e6a5;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(85, 230, 165, 0.3);
    }

    .link-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      flex-shrink: 0;
      transition: all 0.3s ease;
      /* Fallback gradient in case a new link is added without a specific class. */
      background: linear-gradient(135deg, #55E6A5, #4ECDC4);
    }

    .link-icon i {
      font-size: 18px;
      color: white;
    }

    /* Icon gradients (class-based so ordering doesn't matter) */
    .link-button.link-linkedin .link-icon {
      background: linear-gradient(135deg, #0A66C2, #22D3EE);
    }

    .link-button.link-github .link-icon {
      background: linear-gradient(135deg, #0B1220, #1F3B77);
    }

    .link-button.link-email .link-icon {
      background: linear-gradient(135deg, #55E6A5, #4ECDC4);
    }

    .link-button.link-facebook .link-icon {
      background: linear-gradient(135deg, #1877F2, #5B8CFF);
    }

    .link-button.link-instagram .link-icon {
      background: linear-gradient(135deg, #FF2E93, #FFB357);
    }

    .link-button.link-youtube .link-icon {
      background: linear-gradient(135deg, #FF0033, #FF7A18);
    }

    .link-button.link-whatsapp .link-icon {
      background: linear-gradient(135deg, #25D366, #B7FF6A);
    }

    .link-button.link-portfolio .link-icon {
      background: linear-gradient(135deg, #00D4A6, #55E6A5);
    }

    .link-button.link-location .link-icon {
      background: linear-gradient(135deg, #FF4D6D, #FF8A5B);
    }

    .link-button.link-contact .link-icon {
      background: linear-gradient(135deg, #FFB703, #FB8500);
    }

    .link-button:hover .link-icon {
      transform: scale(1.15) rotate(5deg);
      box-shadow: 0 8px 20px rgba(85, 230, 165, 0.4);
    }

    .link-content {
      flex: 1;
    }

    .link-content .link-title {
      font-size: 16px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 2px;
    }

    .link-content .link-subtitle {
      font-size: 14px;
      color: #b8c5d6;
      opacity: 0.8;
    }

    .back-link {
      position: fixed;
      top: calc(20px + env(safe-area-inset-top));
      left: calc(20px + env(safe-area-inset-left));
      color: #55e6a5;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      padding: 10px 20px;
      border-radius: 25px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      z-index: 10;
      max-width: calc(100vw - 40px);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .back-link:hover {
      background: rgba(85, 230, 165, 0.2);
      color: #ffffff;
    }

    .profile-avatar-img {
        width: 60%; 
        height: 60%; 
        object-fit: cover; 
        border-radius: 50%;
    }

    @media (max-width: 768px) {
      .links-container {
        --page-pad-x: 16px;
        padding: 20px var(--page-pad-x) 0;
      }

      .links-main {
        justify-content: flex-start;
        padding-top: 72px;
        padding-bottom: 28px;
      }

      .links-footer .tf__footer_copyright {
        padding: 16px 0;
      }

      .profile-name {
        font-size: 28px;
      }

      .profile-avatar {
        width: 100px;
        height: 100px;
      }

      .profile-avatar i {
        font-size: 40px;
      }

      .links-grid {
        max-width: 100%;
        padding: 0 20px;
      }

      .link-button {
        padding: 15px 20px;
      }

      .link-icon {
        width: 35px;
        height: 35px;
        margin-right: 15px;
      }

      .link-content .link-title {
        font-size: 15px;
      }

      .link-content .link-subtitle {
        font-size: 13px;
      }

      .back-link {
        top: calc(12px + env(safe-area-inset-top));
        left: calc(12px + env(safe-area-inset-left));
        padding: 8px 14px;
        font-size: 14px;
        max-width: calc(100vw - 24px);
      }
    }
