body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #EAEAEA;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
  }

  .header {
    background-color: #181818;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 2px solid #333;
    position: relative;
  }

  .header h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #FFD700;
  }

  .header .logo {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #FFD700;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .header .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    overflow: hidden;
  }

  .status-card {
    background-color: #202225;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .status-card h2 {
    font-size: 26px;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 10px;
  }

  .status-card p {
    font-size: 16px;
    margin: 8px 0;
  }

  .shard-info {
    background-color: #292b2f;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    transition: transform 0.3s ease;
  }

  .shard-info:hover {
    transform: translateY(-3px);
  }

  .shard-info h3 {
    color: #FFD700;
    margin-bottom: 10px;
  }

  .footer {
    text-align: center;
    padding: 15px;
    background-color: #181818;
    border-top: 2px solid #333;
    color: #B0B3B8;
    font-size: 14px;
    margin-top: 40px;
  }

  .footer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
  }

  .footer a:hover {
    text-decoration: underline;
  }

  .developer-info {
    background-color: #292b2f;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .developer-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .developer-info img {
    border-radius: 50%;
    margin-bottom: 15px;
    width: 80px;
    height: 80px;
    object-fit: cover;
  }

  .developer-info h3 {
    color: #FFD700;
    font-size: 18px;
  }

  @media (max-width: 768px) {
    .container {
      padding: 10px;
    }

    .header h1 {
      font-size: 24px;
    }

    .status-card h2 {
      font-size: 20px;
    }

    .shard-info h3 {
      font-size: 20px;
    }
  }
  a {
text-decoration: none; 
color: inherit;
display: block;
}