body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
  }
  
  .event-card-horizontal {
    display: flex;
    background-color: #1a1a1a;
    border: 2px solid gold;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
    transition: transform 0.3s ease;
    min-height: 280px;
  }
  
  .event-card-horizontal:hover {
    transform: scale(1.01);
  }
  
  /* Left-side banner */
  .event-banner-fade {
    flex: 0 0 55%;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100%;
  }
  
  /* Right-to-left gradient fade */
  .event-banner-fade::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, transparent, #1a1a1a 90%);
  }
  
  /* Right-side content */
  .event-info-fade {
    flex: 1;
    padding: 30px 40px;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ccc;
  }
  
  /* Title above details */
  .event-title {
    text-align: center;
    color: gold;
    margin-bottom: 20px;
    font-size: 1.6em;
  }
  
  /* Two columns for info */
  .event-details-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
    margin-bottom: 20px;
  }
  
  .info-column {
    flex: 1;
    min-width: 200px;
  }
  
  .event-info-fade p {
    margin: 6px 0;
  }
  
  .dlcs {
    margin-top: 10px;
    font-style: italic;
  }
  
  /* Call-to-action button */
  .event-button {
    display: inline-block;
    margin-top: auto;
    padding: 10px 18px;
    background-color: gold;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 100%;
    text-align: center;
  }
  
  .event-button:hover {
    background-color: #d4af37;
  }
  
  /* ✅ Responsive layout for mobile */
  @media (max-width: 768px) {
    .event-card-horizontal {
      flex-direction: column;
    }
  
    .event-banner-fade {
      width: 100%;
      height: 200px;
    }
  
    .event-info-fade {
      padding: 20px;
      height: auto;
    }
  
    .event-details-grid {
      flex-direction: column;
      gap: 20px;
    }
  
    .event-button {
      margin-top: 20px;
    }
  }
  