body {
        margin: 0;
        font-family: 'Segoe UI', sans-serif;
        background: #fce144;
        color: #000;
      }

      header {
        background: #303030;
        color: #fff;
        padding: 1rem;
        text-align: center;
      }

      .marquee-container {
        width: 100%;
        overflow: hidden;
        color: #fff;
        padding: 0.5rem 0;
        box-sizing: border-box;
      }

      .marquee-content {
        display: inline-block;
        padding: 0 2rem;
        white-space: nowrap;
        animation: marquee 15s linear infinite;
        padding-left: 100%;
      }

      .marquee-content span {
        display: inline-block;
        font-size: 1.1rem;
        font-weight: bold;
        padding-right: 100%;
      }

      @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
      }

      .hero {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
        gap: 2rem;
      }

      .hero img {
        max-width: 300px;
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.3);
        flex-shrink: 0;
      }

      .hero-content {
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
      }

      .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
      }

      .platforms {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
      }

      .platforms a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background-color: #fff;
        border-radius: 12px;
        transition: transform 0.3s, background-color 0.3s;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      }

      .platforms a:hover {
        transform: scale(1.1);
      }

      .platforms img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      a {
        color: #0057b8;
        text-decoration: none;
      }

      a:visited {
        color: #0057b8;
      }

      a:hover {
        color: #ff6600;
        text-decoration: underline;
      }

      a:focus {
        outline: 2px dashed #000;
        outline-offset: 2px;
      }

      a:active {
        color: #cc0000;
      }

      .bio {
        background: #fff;
        color: #000;
        padding: 2rem 1rem;
        max-width: 800px;
        margin: 2rem auto;
        border-radius: 12px;
      }

      .bio h2 {
        margin-top: 0;
      }

      footer {
        text-align: center;
        padding: 1rem;
        font-size: 0.9rem;
        color: #555;
      }

      @media (max-width: 768px) {
        .hero {
          flex-direction: column;
        }

        .hero-content {
          align-items: center;
          text-align: center;
        }

        .platforms {
          justify-content: center;
        }
      }