:root {
      --bg-dark: #1b151a;
      --bg-card: rgba(255, 255, 255, 0.05);
      --bg-card-hover: rgba(255, 255, 255, 0.08);
      --border-color: rgba(255, 255, 255, 0.15);
      
      --orange-primary: #ffb334;
      --orange-hover: #ffc25c;
      
      --text-white: #ffffff;
      --text-gray-light: #e4e4e7;
      --text-gray-dark: #d0d0d0;
      --text-black: #000000;
    }
    
    /* Reset de estilos */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }
    
    body {
      font-family: 'DM Sans', sans-serif;
      background-color: #2d242c;
      color: var(--text-white);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 64px 16px;
    }
    
    /* Contenedor principal */
    .container {
      width: 100%;
      max-width: 580px;
      background-color: var(--bg-dark);
      border-radius: 32px;
      padding: 40px 32px 32px 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    }
    
    /* Barra superior con acciones */
    .top-bar {
      display: flex;
      justify-content: space-between;
      width: 100%;
      margin-bottom: 24px;
    }
    
    .action-btn {
      background-color: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-color);
      color: var(--text-white);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .action-btn:hover {
      background-color: rgba(255, 255, 255, 0.15);
      transform: scale(1.05);
    }
    
    .action-btn svg {
      width: 20px;
      height: 20px;
    }
    
    /* Encabezado del Perfil */
    .profile-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 32px;
    }
    
    .avatar-wrapper {
      position: relative;
      margin-bottom: 16px;
    }
    
    .profile-avatar {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      background-color: var(--bg-card);
    }
    
    .profile-name {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 8px;
    }
    
    .profile-bio {
      font-size: 14px;
      font-weight: 400;
      color: var(--text-gray-dark);
      letter-spacing: 0.5px;
    }
    
    /* Contenedor de enlaces */
    .links-wrapper {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 48px;
    }
    
    /* Separadores de sección */
    .section-title {
      text-align: center;
      font-size: 16px;
      font-weight: 700;
      margin-top: 24px;
      margin-bottom: 8px;
      letter-spacing: 1px;
      color: var(--text-white);
    }
    
    /* Enlace / Botón */
    .link-card {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 56px;
      padding: 12px 64px;
      background-color: var(--orange-primary);
      color: var(--text-black);
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      border-radius: 9999px;
      position: relative;
      transition: transform 0.15s ease, background-color 0.15s ease;
      text-align: center;
    }
    
    /* Efectos hover/active para los botones */
    .link-card:hover {
      transform: scale(1.02);
      background-color: var(--orange-hover);
    }
    
    .link-card:active {
      transform: scale(0.98);
    }
    
    /* Miniatura en el botón */
    .thumbnail-img {
      position: absolute;
      left: 8px;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
    }
    
    /* Icono de Email Centrado */
    .profile-email-btn {
      color: var(--text-white);
      margin-top: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease, color 0.2s ease;
      text-decoration: none;
    }
    
    .profile-email-btn:hover {
      transform: scale(1.15);
      color: var(--orange-primary);
    }
    
    .profile-email-btn svg {
      width: 28px;
      height: 28px;
    }
    
    /* Menú de tres puntos a la derecha de los botones */
    .three-dots-menu {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.6;
      transition: opacity 0.2s;
      color: var(--text-black);
    }
    
    .link-card:hover .three-dots-menu {
      opacity: 0.9;
    }
    
    .three-dots-menu svg {
      width: 20px;
      height: 20px;
    }
    
    /* Footer */
    .footer {
      margin-top: 32px;
      text-align: center;
      width: 100%;
      max-width: 300px;
    }
    
    .footer-text {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 0.5px;
    }
    
    .footer-link {
      color: var(--orange-primary);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s;
    }
    
    .footer-link:hover {
      color: var(--orange-hover);
    }
    
    /* Notificación flotante (Toast) */
    .toast {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%) translateY(100px);
      background-color: #1b151a;
      border: 1px solid var(--orange-primary);
      color: var(--text-white);
      padding: 12px 24px;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 100;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .toast.show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }
    
    /* Adaptaciones de diseño */
    @media (max-width: 480px) {
      body {
        padding: 24px 12px;
      }
      .container {
        padding: 32px 16px 24px 16px;
        border-radius: 24px;
      }
      .link-card {
        font-size: 14px;
        padding: 10px 54px;
        min-height: 52px;
      }
      .thumbnail-img {
        width: 36px;
        height: 36px;
        left: 8px;
      }
    }