html, body {
    width: 100%;
    min-height: 100%;
    margin: 0;
  }

  p, h1, h2 {
      margin: 0;
  }

  /* Visually hidden - accessible to screen readers */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .centered {
    margin: auto;
  }

  .row {
      margin-top: 2em;
  }

  .page {
    width: 100%;
    min-height: 100vh;
    background: rgb(77,244,255);
    background: 
      linear-gradient(180deg, rgba(77,244,255,0.5) 0%, rgba(97,173,255,0.5) 100%),
      linear-gradient(315deg, rgba(128,210,255,1) 0%, rgba(67,157,255,1) 100%);
  }

  .container {
    padding-top: 6em;
  }

  .socialbar{
    width: 100px;
    height: 32px;
  }

  .avatar {
      display: block;
      width: 153px;
      height: 153px;
      margin: 0 auto;
      border-radius: 50%;
      object-fit: cover;
  }

  .name {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
  }

  .role {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #FFFFFF;
  }

  .social {
      width: 32px;
      height: 32px;
      margin: 0 6px;
      display: inline-block;
  }

  .linkedin {
      background-image: url(../assets/icon_linkedin.png);
  }

  .github {
    background-image: url(../assets/icon_github.png);
  }

  .social:focus {
    outline: none;
  }

  .social:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* Apps Section */
  .apps-section {
    margin-top: 3em;
    padding-bottom: 3em;
  }

  .section-title {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5em;
  }

  .apps-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .app-card {
    display: block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .app-card:hover,
  .app-card:focus {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    outline: none;
  }

  .app-card:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
  }

  .app-name {
    display: block;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 4px;
  }

  .app-desc {
    display: block;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
  }
