
    :root {
      --page-uk88bet-primary-color: #FFD700; /* Gold */
      --page-uk88bet-secondary-color: #1A237E; /* Dark Blue */
      --page-uk88bet-text-color: #333333;
      --page-uk88bet-background-color: #F8F8F8;
      --page-uk88bet-dark-bg: #0D1117;
      --page-uk88bet-light-text: #FFFFFF;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-uk88bet-text-color);
      background-color: var(--page-uk88bet-background-color);
      margin: 0;
      padding: 0;
    }

    .page-uk88bet {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
    }

    .page-uk88bet-hero {
      position: relative;
      text-align: center;
      color: var(--page-uk88bet-light-text);
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 2rem;
    }

    .page-uk88bet-hero-banner {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      display: block;
    }

    .page-uk88bet-hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 1rem;
    }

    .page-uk88bet-hero h1 {
      font-size: 2.2rem;
      margin-top: 0;
      margin-bottom: 0.5rem;
      color: var(--page-uk88bet-primary-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-uk88bet-hero p {
      font-size: 1.1rem;
      max-width: 800px;
      margin-bottom: 1.5rem;
      color: var(--page-uk88bet-light-text);
    }

    .page-uk88bet-button {
      display: inline-block;
      background-color: var(--page-uk88bet-primary-color);
      color: var(--page-uk88bet-secondary-color);
      padding: 0.8rem 1.8rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      font-size: 1rem;
      text-align: center;
      border: none;
      cursor: pointer;
    }

    .page-uk88bet-button:hover {
      background-color: #FFEB3B; /* Lighter gold */
      transform: translateY(-2px);
    }

    .page-uk88bet-section {
      background-color: var(--page-uk88bet-light-text);
      padding: 2rem;
      margin-bottom: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .page-uk88bet-section h2 {
      color: var(--page-uk88bet-secondary-color);
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      border-bottom: 3px solid var(--page-uk88bet-primary-color);
      padding-bottom: 0.5rem;
      text-align: center;
    }

    .page-uk88bet-section h3 {
      color: var(--page-uk88bet-secondary-color);
      font-size: 1.4rem;
      margin-top: 1.5rem;
      margin-bottom: 1rem;
    }

    .page-uk88bet-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
    }

    .page-uk88bet-card {
      background-color: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-uk88bet-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .page-uk88bet-card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .page-uk88bet-card-content {
      padding: 1.2rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-uk88bet-card-content h3 {
      font-size: 1.2rem;
      color: var(--page-uk88bet-secondary-color);
      margin-top: 0;
      margin-bottom: 0.8rem;
    }

    .page-uk88bet-card-content p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 1rem;
      flex-grow: 1;
    }

    .page-uk88bet-list {
      list-style-type: decimal;
      padding-left: 1.5rem;
    }

    .page-uk88bet-list li {
      margin-bottom: 0.8rem;
      color: var(--page-uk88bet-text-color);
    }

    .page-uk88bet-list li strong {
      color: var(--page-uk88bet-secondary-color);
    }

    .page-uk88bet-cta {
      text-align: center;
      padding: 2rem;
      background-color: var(--page-uk88bet-secondary-color);
      color: var(--page-uk88bet-light-text);
      border-radius: 8px;
      margin-top: 2rem;
    }

    .page-uk88bet-cta h2 {
      color: var(--page-uk88bet-primary-color);
      margin-bottom: 1rem;
      font-size: 2rem;
      border-bottom: none;
    }

    .page-uk88bet-cta p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }

    .page-uk88bet-faq-item {
      margin-bottom: 1rem;
      border-bottom: 1px solid #eee;
      padding-bottom: 1rem;
    }

    .page-uk88bet-faq-question {
      font-weight: bold;
      color: var(--page-uk88bet-secondary-color);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 0;
    }

    .page-uk88bet-faq-question::after {
      content: '+';
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .page-uk88bet-faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-uk88bet-faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      color: var(--page-uk88bet-text-color);
      padding-left: 1rem;
    }

    .page-uk88bet-floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #FF4081; /* Accent color for button */
      color: var(--page-uk88bet-light-text);
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 6px 15px rgba(0,0,0,0.4);
      z-index: 1000;
      font-size: 1.1rem;
      white-space: nowrap;
      animation: page-uk88bet-pulse 2s infinite;
      border: none;
      cursor: pointer;
    }

    .page-uk88bet-floating-button:hover {
      background-color: #E0306E;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-uk88bet-hero h1 {
        font-size: 1.8rem;
      }
      .page-uk88bet-hero p {
        font-size: 0.95rem;
      }
      .page-uk88bet-section {
        padding: 1.5rem;
      }
      .page-uk88bet-section h2 {
        font-size: 1.5rem;
      }
      .page-uk88bet-grid {
        grid-template-columns: 1fr;
      }
      .page-uk88bet-floating-button {
        width: calc(100% - 40px);
        bottom: 15px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .page-uk88bet-hero h1 {
        font-size: 1.5rem;
      }
      .page-uk88bet-hero p {
        font-size: 0.9rem;
      }
      .page-uk88bet-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
      }
      .page-uk88bet-section h2 {
        font-size: 1.3rem;
      }
    }
  