
    :root {
      --primary-color: #e44d26; /* Vibrant red/orange */
      --secondary-color: #333;
      --accent-color: #f7b731; /* Gold/yellow */
      --text-color: #333;
      --light-text-color: #f0f0f0;
      --background-light: #f9f9f9;
      --background-dark: #222;
      --card-background: #fff;
      --border-color: #eee;
      --header-offset: 122px; /* Default value, will be overridden by shared.css */
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-light);
      margin: 0;
      padding-top: var(--header-offset); /* Ensure content starts below fixed header */
      overflow-x: hidden;
    }

    .page-three-app {
      padding-top: 10px; /* Small decorative padding, as body already has header offset */
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--background-light);
    }

    .page-three-app__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--card-background);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-three-app__section--dark {
      background-color: var(--background-dark);
      color: var(--light-text-color);
    }

    .page-three-app__heading {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-three-app__heading--light {
      color: var(--accent-color);
    }

    .page-three-app__subheading {
      font-size: 1.8em;
      color: var(--secondary-color);
      text-align: center;
      margin-bottom: 25px;
    }

    .page-three-app__subheading--light {
      color: var(--light-text-color);
    }

    .page-three-app__text {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 20px;
      color: var(--text-color);
    }

    .page-three-app__text--left {
      text-align: left;
    }

    .page-three-app__text--light {
      color: var(--light-text-color);
    }

    /* Hero Section */
    .page-three-app__hero-section {
      position: relative;
      width: 100%;
      height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
      padding: 0;
    }

    .page-three-app__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-three-app__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
      z-index: 2;
    }

    .page-three-app__hero-content {
      position: relative;
      z-index: 3;
      padding: 20px;
      max-width: 800px;
    }

    .page-three-app__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: var(--accent-color);
      font-weight: bold;
    }

    .page-three-app__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .page-three-app__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-three-app__button:hover {
      background-color: #c0392b; /* Darker primary */
      transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-three-app__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: auto; /* Adjust width dynamically */
      max-width: 90%; /* Max width for responsiveness */
    }

    .page-three-app__floating-button {
      background-color: var(--primary-color);
      color: #fff;
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      flex-grow: 1; /* Allow buttons to grow */
      text-align: center;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-three-app__floating-button--login {
      background-color: var(--accent-color);
    }

    .page-three-app__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    .page-three-app__floating-button--login:hover {
      background-color: #e6a220; /* Darker accent */
    }


    /* Game Categories Section */
    .page-three-app__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-three-app__game-card {
      background-color: var(--card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-three-app__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-three-app__game-image {
      width: 100%;
      min-height: 200px; /* Ensure minimum height of 200px */
      object-fit: cover;
      display: block;
    }

    .page-three-app__game-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-three-app__game-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-three-app__game-description {
      font-size: 0.95em;
      color: var(--secondary-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotions Section */
    .page-three-app__promotion-card {
      background-color: var(--accent-color);
      color: #fff;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      margin-top: 30px;
    }

    .page-three-app__promotion-title {
      font-size: 2em;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-three-app__promotion-text {
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    /* Why Choose Us Section */
    .page-three-app__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-three-app__feature-item {
      background-color: var(--card-background);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      border: 1px solid var(--border-color);
      box-sizing: border-box;
    }

    .page-three-app__feature-icon {
      width: 200px; /* Ensure minimum width of 200px */
      height: 200px; /* Ensure minimum height of 200px */
      object-fit: contain;
      margin: 0 auto 20px auto; /* Center the icon */
      display: block;
    }

    .page-three-app__feature-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-three-app__feature-description {
      font-size: 1em;
      color: var(--secondary-color);
    }

    /* Payment & Providers Section */
    .page-three-app__partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Ensure min width for grid items */
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-three-app__partner-logo {
      width: 200px; /* Ensure minimum width of 200px */
      height: 200px; /* Ensure minimum height of 200px */
      object-fit: contain; /* Maintain aspect ratio */
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .page-three-app__partner-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* FAQ Section */
    .page-three-app__faq-section {
      background-color: var(--background-light);
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-three-app__faq-item {
      border: 1px solid var(--border-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      background-color: var(--card-background);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }

    .page-three-app__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-three-app__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-three-app__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      flex-grow: 1;
      text-align: left;
    }

    .page-three-app__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
      transition: transform 0.3s ease;
    }

    .page-three-app__faq-item.active .page-three-app__faq-toggle {
      transform: rotate(45deg); /* Rotate + to become X, or change to - */
    }
    
    .page-three-app__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: var(--text-color);
    }

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

    .page-three-app__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Call to Action Section */
    .page-three-app__cta-section {
      text-align: center;
      background-color: var(--primary-color);
      color: #fff;
      padding: 50px 20px;
      border-radius: 8px;
    }

    .page-three-app__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-three-app__cta-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-three-app {
        padding: 0 10px; /* Adjust main padding for smaller screens */
      }

      .page-three-app__section {
        padding: 30px 15px;
        margin-bottom: 15px;
      }

      .page-three-app__heading {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-three-app__subheading {
        font-size: 1.5em;
        margin-bottom: 20px;
      }

      .page-three-app__text {
        font-size: 1em;
      }

      .page-three-app__hero-section {
        height: 400px;
      }

      .page-three-app__hero-title {
        font-size: 2.5em;
      }

      .page-three-app__hero-description {
        font-size: 1.1em;
      }

      .page-three-app__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-three-app__floating-buttons {
        gap: 10px;
        width: calc(100% - 40px); /* Adjust width for mobile */
        bottom: 15px;
      }

      .page-three-app__floating-button {
        flex: 1; /* Make buttons take equal space */
        padding: 10px 15px;
        font-size: 1em;
      }

      .page-three-app__game-categories,
      .page-three-app__features-grid,
      .page-three-app__partners-grid {
        grid-template-columns: 1fr; /* Stack items vertically */
        gap: 20px;
      }
      
      /* List item specific responsive requirements */
      .page-three-app__game-card,
      .page-three-app__feature-item,
      .page-three-app__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-three-app__game-card .page-three-app__game-info,
      .page-three-app__feature-item .page-three-app__feature-description,
      .page-three-app__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-three-app__game-card .page-three-app__game-title,
      .page-three-app__feature-item .page-three-app__feature-title,
      .page-three-app__faq-question h3 {
        font-size: 1.1em;
      }

      .page-three-app__faq-question {
        padding: 12px 15px;
      }

      .page-three-app__faq-answer {
        padding: 0 15px;
      }

      .page-three-app__faq-item.active .page-three-app__faq-answer {
        padding: 15px !important;
      }

      /* Ensure images maintain minimum 200x200px size on mobile */
      .page-three-app__game-image {
        min-height: 200px !important;
      }
      .page-three-app__feature-icon {
        width: 200px !important;
        height: 200px !important;
      }
      .page-three-app__partner-logo {
        width: 200px !important;
        height: 200px !important;
      }

      .page-three-app__cta-title {
        font-size: 2em;
      }

      .page-three-app__cta-text {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-three-app__hero-title {
        font-size: 2em;
      }
      .page-three-app__hero-description {
        font-size: 1em;
      }
      .page-three-app__hero-section {
        height: 350px;
      }
      .page-three-app__heading {
        font-size: 1.8em;
      }
      .page-three-app__subheading {
        font-size: 1.3em;
      }
    }
  