body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #f0f0f0;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  
  .header-left {
    flex: 1;
  }
  
  .header-left h1 {
    font-size: 2.4rem;
    color: #ff4d4d;
    margin: 0;
    text-shadow: 0 0 6px #ff4d4d, 0 0 12px #ff1a1a;
  }
  
  .header-left h3 {
    margin: 0.2rem 0 0.5rem;
    font-weight: 400;
    color: #bbb;
  }
  
  .header-left p {
    font-style: italic;
    color: #888;
  }
  
  .header-right img {
    width: 140px; /* or 160px, 180px, etc. */
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff4d4d;
    margin-left: 1.2rem;
    box-shadow: 0 0 12px #ff4d4d, 0 0 24px #ff1a1a88;
  }
  
  
  section {
    margin-bottom: 2.5rem;
    border-left: 2px solid #ff4d4d;
    padding-left: 1rem;
  }
  
  section h2 {
    color: #ff4d4d;
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
  
  ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  ul li::before {
    content: "→";
    color: #ff4d4d;
    display: inline-block;
    width: 1rem;
    margin-right: 0.5rem;
  }
  
  a {
    color: #ff6666;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #666;
  }
  