
    :root {
      --primary-color: #e44d26; /* Màu cam đỏ */
      --secondary-color: #f7931e; /* Màu cam */
      --accent-color: #4CAF50; /* Màu xanh lá cây */
      --dark-background: #1a1a1a;
      --light-text: #ffffff;
      --dark-text: #333333;
      --border-color: #333333;
    }

    .page-33-bet {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-33-bet__hero-section {
      text-align: center;
      padding: 10px 15px 40px; /* Small padding-top, assuming body handles main offset */
      background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
      border-bottom: 5px solid var(--primary-color);
    }

    .page-33-bet__brand-title {
      font-size: 2.8em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-shadow: 0 0 10px rgba(228, 77, 38, 0.7);
      font-weight: bold;
    }

    .page-33-bet__hero-image-container {
      width: 100%;
      max-width: 800px;
      margin: 20px auto;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      box-sizing: border-box;
    }

    .page-33-bet__hero-image-container img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-33-bet__hero-description {
      font-size: 1.1em;
      margin: 20px auto;
      max-width: 700px;
      color: #ccc;
    }

    .page-33-bet__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-33-bet__cta-button:hover {
      background-color: #ff6a40;
      transform: translateY(-2px);
    }

    .page-33-bet__cta-button--secondary {
      background-color: var(--accent-color);
    }

    .page-33-bet__cta-button--secondary:hover {
      background-color: #5cb85c;
    }

    .page-33-bet__section-title {
      font-size: 2em;
      color: var(--secondary-color);
      text-align: center;
      margin: 50px 0 30px;
      position: relative;
      padding-bottom: 10px;
      text-transform: uppercase;
    }

    .page-33-bet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }

    .page-33-bet__products-section, 
    .page-33-bet__promotions-section, 
    .page-33-bet__news-section, 
    .page-33-bet__about-section, 
    .page-33-bet__faq-section {
      padding: 20px 15px;
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .page-33-bet__product-card, 
    .page-33-bet__promotion-card, 
    .page-33-bet__news-card, 
    .page-33-bet__about-item {
      background-color: #2c2c2c;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      border: 1px solid var(--border-color);
    }

    .page-33-bet__product-card:hover, 
    .page-33-bet__promotion-card:hover, 
    .page-33-bet__news-card:hover, 
    .page-33-bet__about-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-33-bet__product-card img, 
    .page-33-bet__promotion-card img, 
    .page-33-bet__news-card img, 
    .page-33-bet__about-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid var(--border-color);
      max-width: 100%;
    }

    .page-33-bet__product-title, 
    .page-33-bet__promotion-title, 
    .page-33-bet__news-title, 
    .page-33-bet__about-item-title {
      font-size: 1.4em;
      color: var(--light-text);
      margin: 15px 10px 10px;
      flex-grow: 1;
    }

    .page-33-bet__product-description, 
    .page-33-bet__promotion-description, 
    .page-33-bet__news-excerpt {
      font-size: 0.95em;
      color: #aaa;
      padding: 0 15px 15px;
    }

    .page-33-bet__news-date {
      font-size: 0.85em;
      color: var(--secondary-color);
      margin-top: 5px;
      margin-bottom: 10px;
    }

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

    .page-33-bet__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      color: var(--light-text);
      box-sizing: border-box;
    }

    .page-33-bet__floating-button--register {
      background-color: var(--primary-color);
    }

    .page-33-bet__floating-button--register:hover {
      background-color: #ff6a40;
    }

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

    .page-33-bet__floating-button--login:hover {
      background-color: #fca73f;
    }

    /* FAQ Section */
    .page-33-bet__faq-container {
      margin-top: 30px;
    }

    .page-33-bet__faq-item {
      background-color: #2c2c2c;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-33-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      color: var(--light-text);
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-33-bet__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-33-bet__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      color: var(--light-text);
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-33-bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      color: var(--primary-color);
      pointer-events: none; /* Prevents icon from interfering with click */
    }

    .page-33-bet__faq-item.active .page-33-bet__faq-toggle {
      transform: rotate(45deg);
      color: var(--accent-color);
    }

    .page-33-bet__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;
      color: #ccc;
      font-size: 0.95em;
    }

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

    .page-33-bet__faq-answer p {
      margin: 0;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-33-bet__brand-title {
        font-size: 2.2em;
      }

      .page-33-bet__hero-description {
        font-size: 1em;
      }

      .page-33-bet__section-title {
        font-size: 1.8em;
        margin: 40px 0 25px;
      }

      .page-33-bet__product-grid, 
      .page-33-bet__promotion-grid, 
      .page-33-bet__news-grid, 
      .page-33-bet__about-content {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-33-bet__product-card, 
      .page-33-bet__promotion-card, 
      .page-33-bet__news-card, 
      .page-33-bet__about-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      
      .page-33-bet__product-card img, 
      .page-33-bet__promotion-card img, 
      .page-33-bet__news-card img, 
      .page-33-bet__about-item img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-33-bet__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

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

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

      .page-33-bet__floating-button {
        font-size: 1em;
        padding: 10px 0;
      }
    }

    @media (max-width: 480px) {
      .page-33-bet__brand-title {
        font-size: 1.8em;
      }
      .page-33-bet__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-33-bet__faq-question h3 {
        font-size: 0.95em;
      }
    }
  