 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: radial-gradient(ellipse at center, #000010 0%, #1a1a2e 100%);
      color: #eee;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px 20px;
    }

    /* Header */
    header {
      width: 100%;
      max-width: 1200px;
      margin-bottom: 50px;
      text-align: center;
      font-family: 'Orbitron', sans-serif;
      color: #7c0707;
      letter-spacing: 0.15em;
      font-size: 3rem;
      text-transform: uppercase;
      text-shadow: 0 0 8px #7c0707, 0 0 20px #7c0707;
      animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
      from {
        text-shadow: 0 0 5px #7c0707, 0 0 15px #7c0707;
      }
      to {
        text-shadow: 0 0 15px #7c0707, 0 0 30px #7c0707;
      }
    }

    /* Container */
    .about-container {
      background: rgba(10, 10, 30, 0.85);
      max-width: 900px;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 0 40px #7c0707;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
      backdrop-filter: blur(10px);
      border: 1px solid #7c0707;
    }

    /* Profile image */
    .profile-pic {
      flex: 1 1 250px;
      max-width: 250px;
      border-radius: 50%;
      border: 5px solid #7c0707;
      box-shadow: 0 0 20px #7c0707cc;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .profile-pic:hover {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 0 30px #7c0707;
    }

    /* Text section */
    .about-text {
      flex: 2 1 500px;
      color: #020202;
    }

    .about-text h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      font-family: 'Orbitron', sans-serif;
      color: #7c0707;
      text-shadow: 0 0 5px #7c0707;
    }

    .about-text p {
      font-size: 1.125rem;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #7c0707;
    }

    /* Highlight some keywords */
    .about-text span.highlight {
      color: #7c0707;
      font-weight: 700;
      text-shadow: 0 0 6px #7c0707;
    }

    /* Social links */
    .social-links {
      margin-top: 25px;
      display: flex;
      gap: 20px;
    }

    .social-links a {
      color: #a51604;
      font-size: 1.5rem;
      text-decoration: none;
      border: 2px solid #ff0800;
      padding: 8px 14px;
      border-radius: 30px;
      transition: background-color 0.3s ease, color 0.3s ease;
      box-shadow: 0 0 6px #7c0707;
    }

    .social-links a:hover {
      background-color: #7c0707;
      color: #ffffff;
      box-shadow: 0 0 20px #7c0707;
    }

    /* Footer */
    footer {
      margin-top: 50px;
      font-size: 0.9rem;
      color: #7c0707;
      text-align: center;
      font-style: italic;
      user-select: none;
    }

    /* Responsive */
    @media (max-width: 700px) {
      .about-container {
        flex-direction: column;
        padding: 30px 20px;
      }

      .profile-pic {
        max-width: 200px;
        margin: 0 auto;
      }

      .about-text {
        flex: 1 1 100%;
        text-align: center;
      }

      .about-text h2 {
        font-size: 2rem;
      }
    }