    * { box-sizing: border-box; }
    body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #1f1f1f;
  display: flex;
  flex-direction: column;
  align-items: center;
}

    .top-banner-img {
      width: 100%;
      max-width: 1500px;
      margin-top: 2rem;
      border-radius: 16px;
      overflow: hidden;
    }

    .top-banner-img img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
      border-radius: 16px;
    }

    header {
      width: 100%;
      background-color: #ffffff;
      padding: 3rem 0 1rem;
      display: flex;
      justify-content: center;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 90%;
      max-width: 1200px;
    }

    .icon-name {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .dev-icon {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
    }

    .name-and-contact {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
    }

    .name {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .contact-btn {
      margin-top: 0.5rem;
    }

    .contact-btn a {
      display: inline-block;
      padding: 0.5rem 1.2rem;
      background-color: #8fbb4c;
      color: white;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: background-color 0.3s;
    }

    .contact-btn a:hover {
      background-color: #5a1fa2;
    }

    .description {
      max-width: 400px;
      font-size: 1.2rem;
      text-align: right;
    }

    .thin-strip {
      width: 90%;
      max-width: 1300px;
      height: 1px;
      background-color: #ccc;
      margin: 2rem 0;
    }

    .game-block {
      width: 100%;
      max-width: 1500px;
      background-color: #f8f9fa;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      border: 1px solid #ccc;
    }

    .game-header {
      width: 100%;
      cursor: pointer;
    }

    .game-header img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    .game-content {
      padding: 2rem;
      text-align: center;
      width: 90%;
    }

    .game-title {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .game-title img {
      width: 40px;
      height: 40px;
	  border-radius: 8px;
    }

    .game-title h2 {
      font-size: 2rem;
      margin: 0;
    }

    .game-desc {
      font-size: 1.25rem;
      color: #444;
    }

    .tag-bar {
      margin-top: 1rem;
    }

    .tag {
      display: inline-block;
      background-color: #e0e0e0;
      color: #333;
      font-size: 0.9rem;
      border-radius: 8px;
      padding: 0.3rem 0.8rem;
      margin: 0 0.3rem;
    }

    .divider {
      height: 2px;
      background-color: #eee;
      width: 100%;
      margin: 2rem 0;
    }

    .screenshot-grid {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      padding: 1rem 2rem 2rem;
      flex-wrap: wrap;
    }

    .screenshot-grid img {
      height: 472px;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .pre-footer-strip {
      width: 100%;
      max-width: 1500px;
      height: 1px;
      background-color: #ccc;
      margin: 3rem 0 0;
    }

    footer {
      text-align: center;
      padding: 2rem;
      font-size: 0.9rem;
      color: #888;
      width: 100%;
    }