      * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      }
      body {
      background: #0d0d2b;
      color: #fff;
      font-family: sans-serif;
      line-height: 1.4;
      }
      a {
      color: inherit;
      text-decoration: none;
      }
      /* filter bar */
      .filter-bar {
      background: #13133800;
      padding: 1rem;
      text-align: left;
      max-width: 1150px;
      margin: 0 auto;
      }
      .filter-bar button {
      background: linear-gradient(135deg, #8CFF00, #00cc3396);
      border: none;
      border-radius: 999px;
      color: #fff;
      cursor: pointer;
      font-size: 0.9rem;
      padding: 0.5rem 1.25rem;
      }
      /* grid */
      .promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1rem;
      padding: 1rem;
      max-width: 1150px;
      margin: 0 auto;
      }
      /* card */
      .promo-card {
      background: #13133f00;
      border-radius: 15px 15px 15px 15px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s, box-shadow 0.2s;
      }
      .promo-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.5);
      }
      /* top image */
      .promo-card img {
      width: 100%;
      height: auto;
      flex: none;
      }
      /* body: title + button only */
      .promo-body {
      position: relative;
      flex: none;
      height: 50px;          /* adjust as needed */
      padding: 0 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      overflow: hidden;
      background: #0B1310;
      }
      /* title with ellipsis */
      .promo-body h3 {
      flex: 1;
      margin: 0;
      font-size: 1rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 13px;
      }
      /* hide subtitle */
      .promo-body p {
      display: none;
      }
      /* More button */
      .promo-btn {
      background: linear-gradient(45.87deg, #8aba0385 6.6%, #CBFB45 102.94%);
      border: none;
      border-radius: 4px;
      color: #fff;
      cursor: pointer;
      font-size: 0.85rem;
      padding: 0.4rem 0.8rem;
      margin-left: 8px;
      }
      /* responsive tweaks */
      @media (max-width: 480px) {
      .promo-body {
      height: 45px;
      padding: 0 8px;
      }
      .promo-body h3 {
      font-size: 0.9rem;
      }
      .promo-btn {
      font-size: 0.8rem;
      padding: 0.3rem 0.6rem;
      }
      }
      /* Modal styles */
      .modal {
      display: none; /* Hidden by default */
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow-y: auto;
      background-color: rgba(0,0,0,0.7);
      padding: 20px;
      }
      .modal-content {
      background-color: #1a1a3d;
      margin: 50px auto;
      padding: 20px;
      border-radius: 10px;
      max-width: 90vw;
      max-height: 90vh;
      box-shadow: 0 0 20px #00cc33;
      color: #eee;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow-y: auto;
      }
      .modal-content img {
      width: 100%;
      height: auto;
      max-height: 300px;
      border-radius: 10px;
      margin-bottom: 15px;
      object-fit: contain;
      }
      .modal-content p {
      font-size: 0.95rem;
      line-height: 1.4;
      margin-bottom: 20px;
      text-align: center;
      }
      .close-btn {
      background: linear-gradient(45deg, #CBFB45, #8aba03);
      border: none;
      color: #0b1310;
      font-weight: bold;
      padding: 8px 15px;
      border-radius: 6px;
      cursor: pointer;
      /*align-self: flex-end;*/
      margin-bottom: 10px;
      }
      /* Mobile adjustments */
      @media (max-width: 600px) {
      .modal-content {
      max-width: 95vw;
      max-height: 85vh;
      padding: 15px;
      }
      .modal-content img {
      max-height: 200px;
      margin-bottom: 12px;
      }
      .close-btn {
      padding: 6px 12px;
      font-size: 0.9rem;
      margin-bottom: 8px;
      }
      .modal-content p {
      font-size: 0.9rem;
      margin-bottom: 15px;
      }
      }