  body {
      margin: 0;
      font-family: "Spline Sans", "Noto Sans", sans-serif;
      background-color: #0f1117;
      color: white;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
  }

  header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #2a2a2a;
      padding: 12px 40px;
  }


  header h2 {
      font-size: 18px;
      font-weight: bold;
      margin: 0;
  }

  .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
  }

  .user-content {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .telegram_picture {
      margin-right: 15px;
      border-radius: 100%;
      width: 50px;
      height: 50px;
  }

  .telegram_name {
      font-size: 18px;
      font-weight: 500;
      line-height: 1.2;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;

  }

  .content {
      padding: 20px 160px;
      flex: 1;
      display: flex;
      justify-content: center;
  }

  .search-box {
      justify-content: center;
      display: flex;
      align-items: center;
      background: #2a2a2a;
      border-radius: 12px;
      overflow: hidden;
      height: 40px;
      min-width: 160px;
      max-width: 260px;
      flex: 1;
  }

  .search-box input {
      flex: 1;
      border: none;
      background: #2a2a2a;
      color: white;
      padding: 0 12px;
      outline: none;
      font-size: 14px;
  }

  .search-box svg {
      margin-left: 12px;
      color: #90adcb;
  }

  .search-bar {
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .anime-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 16px;
  }

  .anime-card {
      display: flex;
      flex-direction: column;
      gap: 8px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      cursor: pointer;
  }

  .anime-card:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
  }

  .anime-card .poster {
      width: 100%;
      aspect-ratio: 3/4;
      background: #1a2a3a;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
  }

  .anime-card .poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.3s ease;
  }

  .anime-card:hover .poster img {
      transform: scale(1.08);
  }


  .anime-card p {
      margin: 2px 0;
  }

  .anime-card p.title {
      font-weight: 600;
      font-size: 15px;
  }

  .anime-card .genre,
  .anime-card .rating {
      font-size: 13px;
      color: #90adcb;
  }