
    body {
      margin: 0;
      font-family: "Sansation", sans-serif;
      background: #f7f7f7;
    }

    /* HEADER */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background: #f59635;
    }

    .logo {
      width: 450px;
      height: 100px;
      
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }

    nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #fff;
      font-weight: bold;
      padding: 5px 10px;
      transition: all 0.3s ease;
    }

    nav a:hover {
      color: #fff;
      background: #333;
      border-radius: 5px;
    }

    /* LAYOUT */
    main {
      display: flex;
      flex-wrap: wrap;
      margin: 20px;
      gap: 20px;
      align-items: flex-start;
    }

    .game-area {
      flex: 1 1 65%;
      min-width: 300px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .game-area iframe {
      width: 100%;
      min-height: 700px;
      border: none;
      background: #f59635;
    }

    .ads-thumbnails {
      flex: 1 1 30%;
      min-width: 250px;
    }

    .ad-banner {
      width: 100%;
      background: #e1c7eb;
      height: 150px;
      margin-bottom: 20px;
    }

    /* THUMBNAILS GRID */
    .thumbnails {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 15px;
    }

    .thumbnail {
      background: #fff;
      text-align: center;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: #000;
      display: flex;
      flex-direction: column;
    }

    .thumb-img {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9; /* keeps rectangle shape */
      overflow: hidden;
    }

    .thumb-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .thumbnail span {
      padding: 10px;
      font-size: 14px;
      font-weight: bold;
    }

    .thumbnail:hover {
      transform: scale(0.95);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    /* ADS SECTION 2 (aligned under iframe) */
    .ads-bottom {
      background: #e5fca7;
      height: 100px;
      width: 100%;
    }

    /* GAME DESCRIPTION (aligned under iframe) */
    .game-description {
      background: #ecffb9;
      padding: 15px;
      width: 98%;
    }
.game-description h1 {
font-size: 1.9rem;
      color: white;
      padding: 0px;
      margin-bottom: 0px;
    }

    .game-title {
      background: #f59635;
text-align:center;
      font-weight: bold;
      padding: 0px;
      margin-bottom: 3px;
    }

    .game-info {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .game-thumbnail {
      width: 150px;
      height: 150px;
      background: #d7a6ef;
      flex-shrink: 0;
    }

    .game-text {
      flex: 1;
    }

    /* FOOTER */
    footer {
      text-align: center;
      padding: 15px;
      background: #f59635;
color: #ffffff;
      margin-top: 30px;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }
      .logo {
        width: 100%;
        max-width: 450px;
      }
      nav {
        margin-top: 10px;
      }
      main {
        flex-direction: column;
      }
    }
