:root {
    --bg-primary: #0a0a0a;
    --bg-surface: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --brand-green: #00ff41;
    --border-color: #333333;
    --font-mono: 'Courier New', 'Monaco', 'Menlo', monospace;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-mono);
    line-height: 1.5;
    min-height: 100vh;
  }

  .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
  }

  .terminal-comment {
    color: var(--brand-green);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    text-align: left; /* Alineado a la izquierda */
  }

  .terminal-comment::before {
    content: "// ";
  }

  .profile-section {
    margin-bottom: 4rem;
  }

  .profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
  }

  .name {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }

  .description {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .highlight {
    color: var(--brand-green);
    font-weight: 600;
  }

  .section {
    margin-bottom: 3rem;
  }

  .card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: left; /* Alineación a la izquierda */
    position: relative;
    padding-left: 2.5rem; /* Espacio para el punto */
  }

  .card::before {
    content: '•'; /* El punto */
    position: absolute;
    left: 1rem; /* Posición del punto */
    color: var(--text-primary); /* Color del punto */
    font-size: 1.5rem;
    line-height: 1;
  }

  .card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 65, 0.1);
  }

  .newsletter {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
  }

  .newsletter-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .email-input {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-family: var(--font-mono);
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .email-input:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
  }

  .email-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
  }

  .subscribe-btn {
    background: #00ff41;
    color: #000000;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    font-size: 1rem;
  }

  .subscribe-btn:hover {
    background: #00cc33;
    transform: scale(1.02);
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
  }

  .social-link {
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: color 0.3s ease;
    text-decoration: none;
  }

  .social-link:hover {
    color: var(--text-primary);
  }

  .github-stats {
    width: 100%;
    height: auto;
    max-width: 600px; /* Ajustado al max-width del contenedor */
    margin: 3rem auto 0 auto; /* Centrado y margen superior */
    border-radius: 8px;
    border: 1px solid var(--border-color);
  }

  @media (max-width: 768px) {
    .container {
      padding: 1rem;
    }
    
    .profile-image {
      width: 80px;
      height: 80px;
    }
    
    .name {
      font-size: 1.5rem;
    }
    
    .card {
      padding: 1rem;
      padding-left: 2rem; /* Ajuste para el punto en móviles */
    }

    .card::before {
      left: 0.75rem;
      font-size: 1.25rem;
    }
    
    .social-links {
      gap: 1.5rem;
    }

    .github-stats {
      max-width: 100%;
    }
  }
