body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background-color: #f9a8d4;
    background-image: 
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.08' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 19h18' /%3E%3Cpath d='M5 7a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z' /%3E%3C/svg%3E"),
      linear-gradient(to bottom right, #f9a8d4, #ec4899);
    background-repeat: repeat, no-repeat;
    background-size: 120px 120px, cover;
    background-position: 0 0, center;
    background-attachment: fixed;
    color: white;
    position: relative;
    z-index: 0;
  }
  
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
  }
  
  header,
  .main-section,
  .section-title,
  .tiles {
    position: relative;
    z-index: 1;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
  }
  
  nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #ffccff;
  }
  
  .main-section {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    align-items: center;
    justify-content: space-between;
  }
  
  .info {
    max-width: 600px;
  }
  
  .info h1 {
    font-size: 48px;
    margin: 0;
  }
  
  .info p {
    font-size: 18px;
    margin-top: 10px;
  }
  
  .avatar {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
    height: 90vh;
    max-height: 95vh;
    width: auto;
    object-fit: contain;
    border-radius: 0;
  }
  
  .section-title {
    margin-top: 60px;
    margin-left: 40px;
    font-size: 24px;
    font-weight: bold;
    color: white;
  }
  
  .tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 40px;
  }
  
  .tile {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 20px 40px;
    border-radius: 16px;
    min-width: 150px;
    text-align: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
    font-weight: bold;
  }
  
  .tile a {
    color: white;
    text-decoration: none;
    display: block;
  }
  
  .tile:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  
  /* Icons by Lucide.dev - Licensed under MIT */
  