
    :root {
      --page-33wine-primary-color: #e44d26; /* A vibrant red/orange, common in betting sites */
      --page-33wine-secondary-color: #f7b100; /* Gold/yellow for highlights */
      --page-33wine-dark-background: #1a1a1a;
      --page-33wine-light-background: #2b2b2b;
      --page-33wine-text-color: #f0f0f0;
      --page-33wine-accent-text-color: #ffffff;
      --page-33wine-border-color: #3a3a3a;
      --page-33wine-button-hover: #ff6633;
      --page-33wine-shadow: rgba(0, 0, 0, 0.4);
    }

    .page-33wine {
      font-family: 'Arial', sans-serif;
      color: var(--page-33wine-text-color);
      background-color: var(--page-33wine-dark-background);
      line-height: 1.6;
    }

    /* Ensure body padding-top is handled by shared.css for header offset */
    /* Hero Section */
    .page-33wine__hero-section {
      position: relative;
      width: 100%;
      height: 80vh; /* Adjust as needed */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding, assuming body has header offset */
    }

    .page-33wine__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      max-width: 100% !important; /* Responsive image */
      box-sizing: border-box !important; /* Responsive image */
    }

    .page-33wine__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-33wine__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
    }

    .page-33wine__hero-title {
      font-size: 3.2em;
      color: var(--page-33wine-accent-text-color);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-33wine__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #ccc;
    }

    .page-33wine__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-33wine__button {
      display: inline-block;
      padding: 12px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-33wine__button--primary {
      background-color: var(--page-33wine-primary-color);
      color: var(--page-33wine-accent-text-color);
      border: 2px solid var(--page-33wine-primary-color);
    }

    .page-33wine__button--primary:hover {
      background-color: var(--page-33wine-button-hover);
      border-color: var(--page-33wine-button-hover);
      transform: translateY(-2px);
    }

    .page-33wine__button--secondary {
      background-color: transparent;
      color: var(--page-33wine-secondary-color);
      border: 2px solid var(--page-33wine-secondary-color);
    }

    .page-33wine__button--secondary:hover {
      background-color: var(--page-33wine-secondary-color);
      color: var(--page-33wine-dark-background);
      transform: translateY(-2px);
    }

    .page-33wine__button--large {
      padding: 15px 40px;
      font-size: 1.2em;
    }

    /* General Section Styling */
    .page-33wine__features-section,
    .page-33wine__games-section,
    .page-33wine__promotions-section,
    .page-33wine__faq-section,
    .page-33wine__cta-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-33wine__section-title {
      font-size: 2.5em;
      color: var(--page-33wine-accent-text-color);
      margin-bottom: 20px;
      position: relative;
    }

    .page-33wine__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: var(--page-33wine-primary-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-33wine__section-description {
      font-size: 1.1em;
      color: #bbb;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Features Section */
    .page-33wine__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-33wine__feature-item {
      background-color: var(--page-33wine-light-background);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px var(--page-33wine-shadow);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Responsive list item */
    }

    .page-33wine__feature-item:hover {
      transform: translateY(-10px);
    }

    .page-33wine__feature-icon {
      width: 150px; /* Minimum 200px requirement for images, this is for the container, not the image itself */
      height: auto;
      margin-bottom: 20px;
      max-width: 100% !important; /* Responsive image */
      box-sizing: border-box !important; /* Responsive image */
    }

    .page-33wine__feature-title {
      font-size: 1.5em;
      color: var(--page-33wine-secondary-color);
      margin-bottom: 15px;
    }

    .page-33wine__feature-description {
      font-size: 1em;
      color: #ccc;
    }

    /* Games Section */
    .page-33wine__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-33wine__game-card {
      background-color: var(--page-33wine-light-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px var(--page-33wine-shadow);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Responsive list item */
    }

    .page-33wine__game-card:hover {
      transform: translateY(-10px);
    }

    .page-33wine__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100% !important; /* Responsive image */
      box-sizing: border-box !important; /* Responsive image */
    }

    .page-33wine__game-title {
      font-size: 1.4em;
      color: var(--page-33wine-accent-text-color);
      margin: 15px 15px 10px;
    }

    .page-33wine__game-text {
      font-size: 0.95em;
      color: #bbb;
      padding: 0 15px 20px;
    }

    /* Promotions Section */
    .page-33wine__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-33wine__promotion-card {
      background-color: var(--page-33wine-light-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px var(--page-33wine-shadow);
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Responsive list item */
    }

    .page-33wine__promotion-card:hover {
      transform: translateY(-10px);
    }

    .page-33wine__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100% !important; /* Responsive image */
      box-sizing: border-box !important; /* Responsive image */
    }

    .page-33wine__promotion-title {
      font-size: 1.5em;
      color: var(--page-33wine-secondary-color);
      margin: 20px 20px 10px;
    }

    .page-33wine__promotion-text {
      font-size: 1em;
      color: #ccc;
      padding: 0 20px 15px;
    }

    .page-33wine__promotion-action {
      color: var(--page-33wine-primary-color);
      font-weight: bold;
      padding: 0 20px 20px;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .page-33wine__promotion-action:hover {
      color: var(--page-33wine-button-hover);
    }

    .page-33wine__button-wrapper {
      margin-top: 50px;
    }

    /* FAQ Section */
    .page-33wine__faq-container {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-33wine__faq-item {
      background-color: var(--page-33wine-light-background);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px var(--page-33wine-shadow);
      box-sizing: border-box; /* Responsive list item */
    }

    .page-33wine__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #333;
      color: var(--page-33wine-accent-text-color);
      font-size: 1.15em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-33wine__faq-question:hover {
      background-color: #444;
    }

    .page-33wine__faq-question-text {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-33wine__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent span from blocking click on parent div */
      transition: transform 0.3s ease;
    }

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

    .page-33wine__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
    }

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

    .page-33wine__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* CTA Section */
    .page-33wine__cta-section {
      background-color: var(--page-33wine-light-background);
      padding: 80px 20px;
      border-radius: 10px;
      margin-bottom: 60px;
    }

    .page-33wine__cta-title {
      font-size: 2.8em;
      color: var(--page-33wine-accent-text-color);
      margin-bottom: 20px;
    }

    .page-33wine__cta-description {
      font-size: 1.2em;
      color: #bbb;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Buttons */
    .page-33wine__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-33wine__floating-button {
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      min-width: 120px; /* Ensure buttons are wide enough */
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-33wine__floating-button--register {
      background-color: var(--page-33wine-primary-color);
      color: var(--page-33wine-accent-text-color);
    }

    .page-33wine__floating-button--register:hover {
      background-color: var(--page-33wine-button-hover);
      transform: translateY(-3px);
    }

    .page-33wine__floating-button--login {
      background-color: var(--page-33wine-secondary-color);
      color: var(--page-33wine-dark-background);
    }

    .page-33wine__floating-button--login:hover {
      background-color: #ffd700; /* Slightly brighter gold */
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-33wine__hero-title {
        font-size: 2.8em;
      }
      .page-33wine__section-title {
        font-size: 2em;
      }
      .page-33wine__cta-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-33wine__hero-section {
        height: 70vh;
      }
      .page-33wine__hero-title {
        font-size: 2.2em;
      }
      .page-33wine__hero-description {
        font-size: 1em;
      }
      .page-33wine__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-33wine__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }

      /* General section padding */
      .page-33wine__features-section,
      .page-33wine__games-section,
      .page-33wine__promotions-section,
      .page-33wine__faq-section,
      .page-33wine__cta-section {
        padding: 40px 15px;
      }

      .page-33wine__section-title {
        font-size: 1.8em;
      }

      /* List items responsive */
      .page-33wine__features-grid,
      .page-33wine__games-grid,
      .page-33wine__promotions-grid {
        grid-template-columns: 1fr; /* Single column layout */
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-33wine__feature-item,
      .page-33wine__game-card,
      .page-33wine__promotion-card,
      .page-33wine__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px; /* Adjust padding for mobile */
        padding-right: 15px; /* Adjust padding for mobile */
      }

      .page-33wine__feature-description,
      .page-33wine__game-text,
      .page-33wine__promotion-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-33wine__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Images responsive */
      .page-33wine__feature-icon,
      .page-33wine__game-image,
      .page-33wine__promotion-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }


      .page-33wine__cta-title {
        font-size: 1.8em;
      }
      .page-33wine__cta-description {
        font-size: 1em;
      }

      .page-33wine__floating-buttons {
        flex-direction: row; /* Keep row for floating buttons */
        bottom: 15px;
        gap: 10px;
      }
      .page-33wine__floating-button {
        padding: 10px 20px;
        font-size: 1em;
        min-width: unset;
      }

      .page-33wine__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }
      .page-33wine__faq-answer {
        padding: 0 20px;
      }
      .page-33wine__faq-item.active .page-33wine__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-33wine__hero-title {
        font-size: 1.8em;
      }
      .page-33wine__section-title {
        font-size: 1.6em;
      }
      .page-33wine__cta-title {
        font-size: 1.6em;
      }
      .page-33wine__floating-buttons {
        width: calc(100% - 30px); /* Adjust width to fit */
        left: 15px;
        transform: translateX(0);
        justify-content: space-around;
      }
      .page-33wine__floating-button {
        flex: 1; /* Distribute space evenly */
      }
    }
  