 * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 40px 20px;
      background-color: #000;
      font-family: Arial, sans-serif;
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    h1 {
      color: #fff;
      margin-bottom: 40px;
    }

    .grid {
      column-count: 5;
      column-gap: 20px;
      /*max-width: 1400px;*/
      width: 100%;
    }

    .tile {
      background: #111;
      margin-bottom: 20px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      break-inside: avoid;
      transition: transform 0.3s ease;
      cursor: pointer;
      opacity: 0.5;
    }
    .tile:hover {
      background: #111;
      margin-bottom: 20px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      break-inside: avoid;
      transition: transform 0.3s ease;
      cursor: pointer;
      opacity: 1;
    }

    .tile img {
      width: 100%;
      display: block;
      border-radius: 8px;
    }

    .tile:hover img {
      transform: scale(1.03);
    }

    .overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.7);
      padding: 12px;
      font-size: 14px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }

    .tile:hover .overlay {
      transform: translateY(0%);
    }

    .overlay strong {
      display: block;
      margin-bottom: 5px;
    }

    .cta {
      margin-top: 40px;
    }

    .cta button {
      background-color: #2c6eff;
      border: none;
      color: white;
      padding: 14px 32px;
      font-size: 16px;
      border-radius: 25px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .cta button:hover {
      background-color: #1a50c7;
    }

    @media (max-width: 900px) {
      .grid {
        column-count: 2;
      }
    }

    @media (max-width: 600px) {
      .grid {
        column-count: 1;
      }
    }