
    /* General page styling */
    .page-88aa-lol {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    /* Section styling */
    .page-88aa-lol__section-title {
      font-size: 2.2em;
      color: #e94560; /* Accent color */
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
      font-weight: bold;
    }

    .page-88aa-lol__section-subtitle {
      font-size: 1.1em;
      color: #cccccc;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-88aa-lol__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 10px 20px 40px; /* Small padding-top as per instruction */
      text-align: center;
      background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
      position: relative;
      overflow: hidden;
    }

    .page-88aa-lol__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .page-88aa-lol__hero-title {
      font-size: 2.8em;
      color: #e94560;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-88aa-lol__hero-description {
      font-size: 1.2em;
      color: #f0f0f0;
      margin-bottom: 30px;
    }

    .page-88aa-lol__hero-cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        flex-wrap: wrap; /* Allow wrapping on small screens */
    }

    .page-88aa-lol__hero-button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      min-width: 150px;
      box-sizing: border-box;
    }

    .page-88aa-lol__hero-button--register {
      background-color: #e94560;
      color: #fff;
      border: 2px solid #e94560;
    }

    .page-88aa-lol__hero-button--register:hover {
      background-color: #d13a53;
      transform: translateY(-3px);
    }

    .page-88aa-lol__hero-button--login {
      background-color: transparent;
      color: #e94560;
      border: 2px solid #e94560;
    }

    .page-88aa-lol__hero-button--login:hover {
      background-color: rgba(233, 69, 96, 0.1);
      transform: translateY(-3px);
    }

    .page-88aa-lol__hero-image-wrapper {
      margin-top: 40px;
      width: 100%;
      max-width: 1000px; /* Limit image width */
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .page-88aa-lol__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Features Section */
    .page-88aa-lol__features-section {
      padding: 60px 20px;
      background-color: #2a2a4a;
    }

    .page-88aa-lol__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-88aa-lol__feature-item {
      background-color: #1a1a2e;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-88aa-lol__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-88aa-lol__feature-icon {
      width: 100%;
      max-width: 250px; /* Minimum 200px, but larger for impact */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-88aa-lol__feature-title {
      font-size: 1.5em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-88aa-lol__feature-description {
      font-size: 1em;
      color: #cccccc;
    }

    /* eSports Showcase Section */
    .page-88aa-lol__esports-showcase-section {
      padding: 60px 20px;
      background-color: #1a1a2e;
    }

    .page-88aa-lol__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-88aa-lol__game-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-88aa-lol__game-item:hover {
      transform: translateY(-5px);
    }

    .page-88aa-lol__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency, will be covered by object-fit */
      object-fit: cover;
      display: block;
    }

    .page-88aa-lol__game-title {
      font-size: 1.4em;
      color: #e94560;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-88aa-lol__game-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px 20px;
    }

    /* Promotions Section */
    .page-88aa-lol__promotions-section {
      padding: 60px 20px;
      background-color: #2a2a4a;
    }

    .page-88aa-lol__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-88aa-lol__promo-item {
      background-color: #1a1a2e;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-88aa-lol__promo-item:hover {
      transform: translateY(-5px);
    }

    .page-88aa-lol__promo-image {
      width: 100%;
      height: 180px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-88aa-lol__promo-title {
      font-size: 1.4em;
      color: #e94560;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-88aa-lol__promo-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px 20px;
    }

    /* FAQ Section */
    .page-88aa-lol__faq-section {
      padding: 60px 20px;
      background-color: #1a1a2e;
    }

    .page-88aa-lol__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-88aa-lol__faq-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .page-88aa-lol__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #0f3460; /* Darker blue for question background */
      color: #f0f0f0;
      font-weight: bold;
      font-size: 1.1em;
      border-radius: 10px; /* Ensure rounded corners */
      transition: background-color 0.3s ease;
    }

    .page-88aa-lol__faq-question:hover {
      background-color: #1b4a8c; /* Slightly lighter on hover */
    }

    .page-88aa-lol__faq-q-text {
      margin: 0;
      font-size: 1.1em;
      color: #f0f0f0; /* Ensure text color is light */
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
      text-align: left;
    }

    .page-88aa-lol__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
      color: #e94560; /* Accent color for toggle */
    }

    .page-88aa-lol__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #2a2a4a; /* Answer background */
      color: #cccccc;
      font-size: 0.95em;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
    }

    .page-88aa-lol__faq-item.active .page-88aa-lol__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-88aa-lol__faq-item.active .page-88aa-lol__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    /* Floating Register/Login Buttons */
    .page-88aa-lol__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: #0f3460; /* Darker background for floating bar */
      box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      gap: 10px; /* Space between buttons */
    }

    .page-88aa-lol__floating-button {
      flex: 1; /* Distribute space evenly */
      max-width: 180px; /* Limit individual button width */
      padding: 12px 15px;
      border-radius: 5px;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-88aa-lol__floating-button--register {
      background-color: #e94560;
      color: #fff;
      border: 1px solid #e94560;
    }

    .page-88aa-lol__floating-button--register:hover {
      background-color: #d13a53;
      transform: translateY(-2px);
    }

    .page-88aa-lol__floating-button--login {
      background-color: transparent;
      color: #e94560;
      border: 1px solid #e94560;
    }

    .page-88aa-lol__floating-button--login:hover {
      background-color: rgba(233, 69, 96, 0.1);
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-88aa-lol__hero-title {
        font-size: 2em;
      }

      .page-88aa-lol__hero-description {
        font-size: 1em;
      }

      .page-88aa-lol__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-88aa-lol__hero-button {
        width: 80%; /* Make buttons wider on mobile */
        margin: 0 auto;
        max-width: 300px;
      }

      .page-88aa-lol__section-title {
        font-size: 1.8em;
        padding-top: 30px;
      }

      .page-88aa-lol__section-subtitle {
        font-size: 0.9em;
        margin-bottom: 30px;
      }

      /* List items responsive requirements */
      .page-88aa-lol__features-grid,
      .page-88aa-lol__game-grid,
      .page-88aa-lol__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-88aa-lol__feature-item,
      .page-88aa-lol__game-item,
      .page-88aa-lol__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
      }

      .page-88aa-lol__feature-icon {
        max-width: 200px;
        height: auto;
      }

      .page-88aa-lol__game-image,
      .page-88aa-lol__promo-image {
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover;
      }
      
      /* FAQ mobile adjustments */
      .page-88aa-lol__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-88aa-lol__faq-q-text {
        font-size: 1em;
      }

      .page-88aa-lol__faq-toggle {
        font-size: 1.3em;
      }

      .page-88aa-lol__faq-answer {
        padding: 0 20px;
      }

      .page-88aa-lol__faq-item.active .page-88aa-lol__faq-answer {
        padding: 15px 20px !important;
      }

      /* Floating buttons for smaller screens */
      .page-88aa-lol__floating-buttons {
        flex-direction: row; /* Keep row for two buttons, but adjust padding */
        padding: 8px 10px;
        gap: 8px;
      }

      .page-88aa-lol__floating-button {
        padding: 10px 12px;
        font-size: 0.9em;
        max-width: 150px; /* Slightly smaller for mobile */
      }

      .page-88aa-lol__hero-section,
      .page-88aa-lol__features-section,
      .page-88aa-lol__esports-showcase-section,
      .page-88aa-lol__promotions-section,
      .page-88aa-lol__faq-section {
        padding-left: 15px;
        padding-right: 15px;
      }
    }

    /* Ensure text wrapping for long content */
    p, li, h1, h2, h3, h4, h5, h6 {
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word; /* For long keywords */
    }
  