
    .page-711d {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    /* Hero Section */
    .page-711d__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      padding-top: 10px; /* Small top padding, expecting body padding-top from shared.css */
    }

    .page-711d__hero-content {
      max-width: 800px;
      margin-bottom: 20px;
    }

    .page-711d__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #ffeb3b; /* Good contrast with dark background */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-711d__brand-highlight {
      color: #fdd835;
    }

    .page-711d__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-711d__hero-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
    }

    .page-711d__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1em;
      border: none; /* Ensure buttons are consistent */
      cursor: pointer;
    }

    .page-711d__button--primary {
      background-color: #ffeb3b; /* Yellow */
      color: #333;
    }

    .page-711d__button--primary:hover {
      background-color: #fdd835;
      transform: translateY(-2px);
    }

    .page-711d__button--secondary {
      background-color: transparent;
      color: #ffeb3b;
      border: 2px solid #ffeb3b;
    }

    .page-711d__button--secondary:hover {
      background-color: rgba(255, 235, 59, 0.1);
      transform: translateY(-2px);
    }

    .page-711d__hero-image-container {
      width: 100%;
      max-width: 800px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      margin-top: 20px;
    }

    .page-711d__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* General Section Styling */
    .page-711d__section-title {
      font-size: 2em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 15px;
      padding-top: 40px;
    }

    .page-711d__section-description {
      font-size: 1.1em;
      color: #555;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 30px auto;
      padding: 0 15px;
    }

    /* Games Section */
    .page-711d__games-section {
      padding: 20px 0;
      background-color: #fff;
    }

    .page-711d__game-categories {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      padding: 0 15px;
    }

    .page-711d__game-card {
      background-color: #f0f2f5;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      width: 100%;
      max-width: 300px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-711d__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .page-711d__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-711d__game-card-title {
      font-size: 1.5em;
      color: #1a2a6c;
      margin: 15px 0 10px;
    }

    .page-711d__game-card-text {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px 15px;
    }

    .page-711d__game-card-button {
      background-color: #ffeb3b;
      color: #333;
      padding: 10px 20px;
      border-radius: 20px;
      border: none;
      font-weight: bold;
      margin-bottom: 15px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .page-711d__game-card-button:hover {
      background-color: #fdd835;
    }

    /* Promotions Section */
    .page-711d__promotions-section {
      padding: 40px 0;
      background-color: #f8f9fa;
    }

    .page-711d__promo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      padding: 0 15px;
    }

    .page-711d__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      width: 100%;
      max-width: 350px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-711d__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .page-711d__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-711d__promo-title {
      font-size: 1.3em;
      color: #1a2a6c;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-711d__promo-text {
      font-size: 0.9em;
      color: #666;
      padding: 0 15px 15px;
    }

    .page-711d__button--small {
      padding: 8px 18px;
      font-size: 0.9em;
      margin-bottom: 15px;
    }

    /* About Section */
    .page-711d__about-section {
      padding: 40px 0;
      background-color: #e6eef7;
    }

    .page-711d__features-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      padding: 0 15px;
    }

    .page-711d__feature-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: center;
      width: 100%;
      max-width: 300px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-711d__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .page-711d__feature-icon {
      width: 100px; /* Placeholder for visual size, image itself will be larger */
      height: 100px;
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-711d__feature-title {
      font-size: 1.4em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .page-711d__feature-text {
      font-size: 0.95em;
      color: #555;
    }

    /* FAQ Section */
    .page-711d__faq-section {
      padding: 40px 15px;
      background-color: #fff;
    }

    .page-711d__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-711d__faq-item {
      background-color: #f0f2f5;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* For consistency */
    }

    .page-711d__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #1a2a6c;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-711d__faq-question:hover {
      background-color: #2c3e80;
    }

    .page-711d__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #fff;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-711d__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      width: 25px;
      text-align: center;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-711d__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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: #f8f9fa;
      color: #333;
    }

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

    .page-711d__faq-item.active .page-711d__faq-question {
      background-color: #2c3e80;
    }

    .page-711d__faq-item.active .page-711d__faq-toggle {
      content: '−'; /* Changed in JS */
    }

    .page-711d__faq-answer p {
      margin: 0;
    }

    /* Floating Register/Login Buttons */
    .page-711d__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-711d__floating-button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 10px;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      border-radius: 8px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1em;
      box-sizing: border-box;
      max-width: 48%; /* Limit width to ensure two buttons fit nicely */
    }

    .page-711d__floating-button--register {
      background-color: #ffeb3b;
      color: #333;
    }

    .page-711d__floating-button--register:hover {
      background-color: #fdd835;
      transform: translateY(-2px);
    }

    .page-711d__floating-button--login {
      background-color: #1a2a6c;
      color: #fff;
    }

    .page-711d__floating-button--login:hover {
      background-color: #2c3e80;
      transform: translateY(-2px);
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-711d__hero-title {
        font-size: 1.8em;
      }

      .page-711d__hero-description {
        font-size: 1em;
      }

      .page-711d__hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 300px;
      }

      .page-711d__button {
        width: 100%;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-711d__section-title {
        font-size: 1.6em;
        padding-top: 30px;
      }

      .page-711d__section-description {
        font-size: 0.95em;
        margin-bottom: 20px;
      }

      .page-711d__game-categories,
      .page-711d__promo-grid,
      .page-711d__features-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      /* List item responsiveness for game cards */
      .page-711d__game-card,
      .page-711d__promo-card,
      .page-711d__feature-item {
        width: 100% !important;
        max-width: 90% !important; /* Slightly less than 100% to allow for padding/margin */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px; /* Adjust padding if needed */
      }

      .page-711d__game-card-text,
      .page-711d__promo-text,
      .page-711d__feature-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsiveness for all images within content */
      .page-711d__hero-image,
      .page-711d__game-card-image,
      .page-711d__promo-image,
      .page-711d__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-711d__hero-image-container {
        width: 100% !important;
        max-width: 90% !important;
        margin: 20px auto 0 auto;
        box-sizing: border-box !important;
      }

      /* FAQ responsiveness */
      .page-711d__faq-question {
        padding: 12px 15px;
      }

      .page-711d__faq-question h3 {
        font-size: 1em;
      }

      .page-711d__faq-answer {
        padding: 0 15px;
      }

      .page-711d__faq-item.active .page-711d__faq-answer {
        padding: 15px !important;
      }

      .page-711d__floating-button {
        font-size: 1em;
        padding: 10px 5px;
        margin: 0 3px;
      }
    }

    @media (max-width: 480px) {
      .page-711d__hero-title {
        font-size: 1.5em;
      }

      .page-711d__section-title {
        font-size: 1.4em;
      }

      .page-711d__floating-buttons {
        padding: 8px 0;
      }
    }
  