
    :root {
      --page-luck8vote__primary-color: #f7b32b; /* Gold/Yellow */
      --page-luck8vote__secondary-color: #34495e; /* Dark Blue */
      --page-luck8vote__accent-color: #e74c3c; /* Red */
      --page-luck8vote__text-color: #ecf0f1; /* Light Gray */
      --page-luck8vote__dark-text-color: #2c3e50; /* Darker Blue */
      --page-luck8vote__background-dark: #1a2a3a; /* Very Dark Blue */
      --page-luck8vote__background-light: #2c4155; /* Medium Dark Blue */
      --page-luck8vote__border-color: #4a6a8a;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-luck8vote__text-color);
      background-color: var(--page-luck8vote__background-dark);
    }

    .page-luck8vote {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      overflow-x: hidden; /* Prevent horizontal scroll from padding */
    }

    .page-luck8vote__hero-section {
      text-align: center;
      padding: 80px 20px 40px; /* Increased padding-top for fixed header */
      background: linear-gradient(135deg, var(--page-luck8vote__background-light), var(--page-luck8vote__background-dark));
      border-radius: 10px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-luck8vote__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 20px;
      object-fit: cover;
      filter: brightness(0.8); /* Allow non-color changing filters */
    }

    .page-luck8vote__hero-content {
      position: relative;
      z-index: 2;
    }

    .page-luck8vote__hero-section h1 {
      font-size: 2.8em;
      color: var(--page-luck8vote__primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-luck8vote__hero-section p {
      font-size: 1.2em;
      color: var(--page-luck8vote__text-color);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-luck8vote__cta-button {
      display: inline-block;
      background-color: var(--page-luck8vote__accent-color);
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: none;
      cursor: pointer;
    }

    .page-luck8vote__cta-button:hover {
      background-color: #c0392b; /* Darker red */
      transform: translateY(-2px);
    }

    .page-luck8vote__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-luck8vote__primary-color);
      color: var(--page-luck8vote__dark-text-color);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: page-luck8vote__pulse 1.5s infinite;
    }

    .page-luck8vote__floating-button:hover {
      background-color: #e6a020; /* Slightly darker gold */
      transform: scale(1.05);
      animation: none;
    }

    @keyframes page-luck8vote__pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        transform: scale(1);
      }
    }

    .page-luck8vote__section-title {
      font-size: 2.2em;
      color: var(--page-luck8vote__primary-color);
      text-align: center;
      margin-bottom: 30px;
      padding-top: 20px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-luck8vote__game-categories,
    .page-luck8vote__about-section,
    .page-luck8vote__guide-section,
    .page-luck8vote__promo-section,
    .page-luck8vote__faq-section,
    .page-luck8vote__cta-final {
      background-color: var(--page-luck8vote__background-light);
      padding: 40px 20px;
      margin-bottom: 40px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }

    .page-luck8vote__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .page-luck8vote__game-card {
      background-color: var(--page-luck8vote__secondary-color);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      box-sizing: border-box; /* Crucial for responsiveness */
      width: 100%; /* Ensure it takes full width initially */
      max-width: 100%;
    }

    .page-luck8vote__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-luck8vote__game-card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-bottom: 2px solid var(--page-luck8vote__primary-color);
      max-width: 100%;
      height: auto;
    }

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

    .page-luck8vote__game-card h3 {
      font-size: 1.5em;
      color: var(--page-luck8vote__primary-color);
      margin-bottom: 10px;
    }

    .page-luck8vote__game-card p {
      font-size: 0.95em;
      color: var(--page-luck8vote__text-color);
      margin-bottom: 15px;
    }

    .page-luck8vote__game-card-button {
      display: inline-block;
      background-color: var(--page-luck8vote__accent-color);
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: auto; /* Push button to the bottom */
    }

    .page-luck8vote__game-card-button:hover {
      background-color: #c0392b;
    }

    .page-luck8vote__about-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-luck8vote__about-item {
      background-color: var(--page-luck8vote__secondary-color);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-sizing: border-box; /* Crucial for responsiveness */
      width: 100%; /* Ensure it takes full width initially */
      max-width: 100%;
    }

    .page-luck8vote__about-item h3 {
      color: var(--page-luck8vote__primary-color);
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-luck8vote__about-item p {
      color: var(--page-luck8vote__text-color);
      font-size: 0.95em;
    }

    .page-luck8vote__about-icon {
      flex-shrink: 0;
      width: 60px; /* Larger icon size */
      height: 60px;
      border-radius: 50%;
      background-color: var(--page-luck8vote__primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2em;
      color: var(--page-luck8vote__dark-text-color);
    }

    .page-luck8vote__guide-steps {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .page-luck8vote__guide-step {
      display: flex;
      align-items: center;
      gap: 30px;
      background-color: var(--page-luck8vote__secondary-color);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-luck8vote__guide-step:nth-child(even) {
      flex-direction: row-reverse;
    }

    .page-luck8vote__guide-image-wrapper {
      flex: 1;
      min-width: 250px; /* Ensure image has some minimum width */
      text-align: center;
    }

    .page-luck8vote__guide-image {
      width: 100%;
      height: auto;
      border-radius: 8px;
      border: 2px solid var(--page-luck8vote__primary-color);
      max-width: 100%;
      height: auto;
    }

    .page-luck8vote__guide-content {
      flex: 2;
    }

    .page-luck8vote__guide-content h3 {
      color: var(--page-luck8vote__primary-color);
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-luck8vote__guide-content p {
      color: var(--page-luck8vote__text-color);
      font-size: 1em;
    }

    .page-luck8vote__promo-content {
      text-align: center;
    }

    .page-luck8vote__promo-content img {
      width: 100%;
      max-width: 600px;
      height: auto;
      margin-bottom: 25px;
      border-radius: 10px;
      border: 3px solid var(--page-luck8vote__primary-color);
      max-width: 100%;
      height: auto;
    }

    .page-luck8vote__promo-content h3 {
      color: var(--page-luck8vote__primary-color);
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-luck8vote__promo-content p {
      color: var(--page-luck8vote__text-color);
      font-size: 1.1em;
      margin-bottom: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-luck8vote__faq-item {
      background-color: var(--page-luck8vote__secondary-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-luck8vote__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--page-luck8vote__background-light);
      border-bottom: 1px solid var(--page-luck8vote__border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-luck8vote__faq-question:hover {
      background-color: #3f5973;
    }

    .page-luck8vote__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-luck8vote__primary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-luck8vote__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-luck8vote__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-luck8vote__faq-item.active .page-luck8vote__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-luck8vote__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-luck8vote__text-color);
    }

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

    .page-luck8vote__faq-answer p {
      margin: 0;
    }

    .page-luck8vote__cta-final {
      text-align: center;
      padding: 50px 20px;
      background: linear-gradient(45deg, var(--page-luck8vote__background-dark), var(--page-luck8vote__background-light));
    }

    .page-luck8vote__cta-final h2 {
      font-size: 2.5em;
      color: var(--page-luck8vote__primary-color);
      margin-bottom: 25px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-luck8vote {
        padding: 10px;
      }

      .page-luck8vote__hero-section {
        padding-top: 60px; /* Adjust for mobile fixed header */
        padding-bottom: 20px;
      }

      .page-luck8vote__hero-section h1 {
        font-size: 2em;
      }

      .page-luck8vote__hero-section p {
        font-size: 1em;
      }

      .page-luck8vote__floating-button {
        bottom: 10px;
        right: 10px;
        padding: 12px 20px;
        font-size: 0.9em;
      }

      .page-luck8vote__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-luck8vote__game-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
      }

      .page-luck8vote__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-luck8vote__about-list {
        grid-template-columns: 1fr; /* Single column for mobile */
      }

      .page-luck8vote__about-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-luck8vote__about-item p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-luck8vote__guide-step {
        flex-direction: column;
        gap: 20px;
      }

      .page-luck8vote__guide-step:nth-child(even) {
        flex-direction: column; /* Reset order for mobile */
      }

      .page-luck8vote__guide-image-wrapper,
      .page-luck8vote__guide-content {
        width: 100%;
        min-width: unset;
      }

      .page-luck8vote__guide-content h3 {
        font-size: 1.4em;
      }

      .page-luck8vote__promo-content h3 {
        font-size: 1.5em;
      }

      .page-luck8vote__promo-content p {
        font-size: 1em;
      }

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

      .page-luck8vote__faq-question h3 {
        font-size: 1.1em;
        word-break: break-word !important; /* Ensure long questions wrap */
      }

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

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

      .page-luck8vote__cta-final h2 {
        font-size: 1.8em;
      }

      /* Ensure all images are responsive */
      .page-luck8vote img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-luck8vote__hero-section h1 {
        font-size: 1.8em;
      }
      .page-luck8vote__section-title {
        font-size: 1.6em;
      }
      .page-luck8vote__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  