
    html, body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      font-family: 'Segoe UI', sans-serif;
      color: #222;
    }
    canvas {
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
    }
    .bio-section {
      max-width: 1000px;
      margin: 0 auto 50px auto;
      padding: 90px 24px 30px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 56px;
      min-height: 380px;
      flex-wrap: wrap;
    }
    .bio-section.reverse {
      flex-direction: row-reverse;
    }
    .bio-text {
      flex: 1 1 330px;
      min-width: 270px;
      max-width: 500px;
      background: rgba(255,255,255,0.87);
      border-radius: 16px;
      box-shadow: 0 4px 24px #8882;
      padding: 34px 28px;
      z-index: 1;
    }
    .bio-img {
      flex: 1 1 280px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .bio-img img {
      max-width: 300px;
      max-height: 340px;
      border-radius: 14px;
      box-shadow: 0 4px 32px #5555;
      background: #eee;
      object-fit: cover;
    }
    .bio-links {
      text-align: center;
      margin-top: 35px;
      margin-bottom: 30px;
    }
    .bio-links a {
      display: inline-block;
      margin: 0 16px;
      padding: 12px 28px;
      font-weight: 600;
      background: #22345c;
      color: #fff;
      border-radius: 8px;
      text-decoration: none;
      box-shadow: 0 2px 12px #22345c2a;
      transition: background 0.2s, color 0.2s;
    }
    .bio-links a:hover {
      background: #4687f7;
      color: #fff;
    }
    @media (max-width: 900px) {
      .bio-section, .bio-section.reverse {flex-direction: column;}
      .bio-img img {max-width: 88vw;}
      .bio-section {gap: 24px;}
    }
