
    /* Base styles for the page */
    .page-10bet-mobile {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a1a;
      color: #f0f0f0;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
      padding-top: 10px; /* Small decorative padding at the top, assuming body has header offset */
    }

    /* Section styles */
    .page-10bet-mobile__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-10bet-mobile__section--dark {
      background-color: #222222;
    }

    .page-10bet-mobile__section-title {
      font-size: 2.5em;
      color: #e44d26;
      margin-bottom: 30px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-10bet-mobile__section-subtitle {
      font-size: 1.2em;
      color: #cccccc;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-10bet-mobile__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
      background-size: cover;
      background-position: center;
      padding: 60px 20px;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
    }

    .page-10bet-mobile__hero-title {
      font-size: 3em;
      color: #ffffff;
      margin-bottom: 15px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.2;
    }

    .page-10bet-mobile__hero-description {
      font-size: 1.3em;
      color: #f0f0f0;
      max-width: 800px;
      margin-bottom: 30px;
    }

    .page-10bet-mobile__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      margin-top: 30px;
    }
    
    .page-10bet-mobile__hero-image-container {
      width: 100%;
      max-width: 800px; /* Limit hero image width */
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto;
    }

    /* Floating Buttons */
    .page-10bet-mobile__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 10px 20px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-10bet-mobile__button {
      display: block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
      flex: 1;
      margin: 0 5px;
      box-sizing: border-box;
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-10bet-mobile__button--primary {
      background-color: #e44d26;
      color: #ffffff;
    }

    .page-10bet-mobile__button--primary:hover {
      background-color: #ff6f40;
      transform: translateY(-2px);
    }

    .page-10bet-mobile__button--secondary {
      background-color: #333333;
      color: #e44d26;
      border: 1px solid #e44d26;
    }

    .page-10bet-mobile__button--secondary:hover {
      background-color: #444444;
      transform: translateY(-2px);
    }

    /* Product Grid */
    .page-10bet-mobile__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-10bet-mobile__product-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-10bet-mobile__product-card:hover {
      transform: translateY(-5px);
    }

    .page-10bet-mobile__product-image-container {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #3a3a3a;
      box-sizing: border-box;
    }

    .page-10bet-mobile__product-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-10bet-mobile__product-content {
      padding: 20px;
    }

    .page-10bet-mobile__product-title {
      font-size: 1.5em;
      color: #e44d26;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-10bet-mobile__product-description {
      font-size: 0.95em;
      color: #cccccc;
    }

    /* Features List */
    .page-10bet-mobile__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-10bet-mobile__feature-item {
      background-color: #2a2a2a;
      border-left: 5px solid #e44d26;
      padding: 25px;
      border-radius: 8px;
      text-align: left;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Required for list items */
    }

    .page-10bet-mobile__feature-title {
      font-size: 1.3em;
      color: #e44d26;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-10bet-mobile__feature-description {
      color: #cccccc;
    }

    /* How-to Section (Download) */
    .page-10bet-mobile__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-10bet-mobile__step-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      box-sizing: border-box; /* Required for list items */
    }

    .page-10bet-mobile__step-number {
      font-size: 2.5em;
      color: #e44d26;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-10bet-mobile__step-title {
      font-size: 1.3em;
      color: #ffffff;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-10bet-mobile__step-description {
      color: #cccccc;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-10bet-mobile__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-10bet-mobile__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

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

    .page-10bet-mobile__faq-question:hover {
      background-color: #444444;
    }

    .page-10bet-mobile__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: #ffffff;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-10bet-mobile__faq-toggle {
      font-size: 1.5em;
      color: #e44d26;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

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

    .page-10bet-mobile__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
    }

    .page-10bet-mobile__faq-item.active .page-10bet-mobile__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important;
      opacity: 1;
    }
    
    .page-10bet-mobile__cta-section {
        background-color: #2a2a2a;
        padding: 50px 20px;
        text-align: center;
        border-radius: 10px;
        margin-top: 50px;
    }

    .page-10bet-mobile__cta-title {
        font-size: 2em;
        color: #e44d26;
        margin-bottom: 20px;
    }

    .page-10bet-mobile__cta-description {
        font-size: 1.1em;
        color: #f0f0f0;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-10bet-mobile__section {
        padding: 30px 15px;
      }

      .page-10bet-mobile__section-title {
        font-size: 2em;
      }

      .page-10bet-mobile__hero-title {
        font-size: 2.2em;
      }

      .page-10bet-mobile__hero-description {
        font-size: 1.1em;
      }

      .page-10bet-mobile__floating-buttons {
        padding: 8px 10px;
      }

      .page-10bet-mobile__button {
        padding: 10px 15px;
        font-size: 1em;
      }
      
      .page-10bet-mobile__product-grid,
      .page-10bet-mobile__features-list,
      .page-10bet-mobile__steps-grid {
        grid-template-columns: 1fr; /* Stack items on small screens */
      }
      
      /* List item specific responsive styles */
      .page-10bet-mobile__feature-item,
      .page-10bet-mobile__step-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-10bet-mobile__faq-question {
        padding: 12px 15px;
      }

      .page-10bet-mobile__faq-question h3 {
        font-size: 1em;
      }

      .page-10bet-mobile__faq-answer {
        padding: 0 15px;
      }
      
      .page-10bet-mobile__faq-item.active .page-10bet-mobile__faq-answer {
        padding: 15px !important;
      }

      .page-10bet-mobile__cta-title {
          font-size: 1.8em;
      }

      .page-10bet-mobile__cta-description {
          font-size: 1em;
      }
      
      /* Image responsiveness */
      .page-10bet-mobile__hero-image,
      .page-10bet-mobile__product-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-10bet-mobile__hero-image-container,
      .page-10bet-mobile__product-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-10bet-mobile__hero-title {
        font-size: 1.8em;
      }
      .page-10bet-mobile__section-title {
        font-size: 1.7em;
      }
      .page-10bet-mobile__button {
        font-size: 0.9em;
        padding: 10px 10px;
      }
    }
  