
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      font-family: "Libertinus Math", system-ui;
      font-weight: 400;
      font-style: normal;
      overflow: hidden;
      background: rgba(0, 0, 0, 0.9);
      color: white;
    }
    /* === Preloader === */
    #preloader {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: black;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    #typed-text {
      font-size: 2em;
      white-space: nowrap;
      overflow: hidden;
      border-right: 2px solid white;
      animation: typing 1.8s steps(20, end), blink 0.75s step-end infinite;
    }

    @keyframes typing {
      from { width: 0 }
      to { width: 11ch }
    }

    @keyframes blink {
      50% { border-color: transparent; }
    }

    #preloader.fade-out {
      animation: fadeOut 1s ease forwards;
    }

    @keyframes fadeOut {
      to {
        opacity: 0;
        visibility: hidden;
      }
    }

    /* === Background images === */
    .background {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: -1;
    }

    .bg-image {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 2s ease-in-out;
    }

    .bg-image.active {
      opacity: 1;
    }

    .overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.1);
      z-index: -1;
    }

    /* === Main Content === */
    .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      text-align: center;
      opacity: 0;
      animation: fadeIn 0.5s ease forwards;
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }

    .avatar {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      border: 3px solid white;
      object-fit: cover;
      margin-bottom: 10px;
    }

    .social-button {
      display: block;
      margin: 10px 0;
      padding: 12px 24px;
      background-color: rgba(255, 255, 255, 0.1);
      border: 1px solid white;
      border-radius: 30px;
      min-width: 200px;
      text-decoration: none;
      color: white;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .social-button:hover {
      background-color: white;
      color: black;
    }
    .blinking-dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      background-color: #00b400;
      border-radius: 50%;
      margin-right: 8px;
      animation: blink_status 1s infinite;
        filter: blur(1px);
    }

    @keyframes blink_status {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.2; }
    }

    .status_bar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .tag {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        background-color: white;
        padding: 5px 12px;
        border-radius: 30px;
        color: black;
    }
    .row {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    .focus {
        animation: pulse 2s infinite ease-in-out;
    }

    @keyframes pulse {
    0% {
      transform: scale(1);
      filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
    }
    50% {
      transform: scale(1.07);
      filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
    }
    100% {
      transform: scale(1);
      filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
    }
  }
    .focus:hover path {
    fill: black;
  }