/* style/yo88top.css */
      :root {
          --primary-color: #2563eb;
          --secondary-color: #64748b;
          --text-dark: #333333;
          --text-light: #ffffff;
          --bg-light: #f8f8f8;
          --bg-dark: #1a1a1a;
          --border-color: #e0e0e0;
      }

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

      .page-yo88top__container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 20px;
      }

      .page-yo88top__section {
          padding: 60px 0;
          text-align: center;
      }

      .page-yo88top__section-title {
          font-size: 36px;
          color: var(--primary-color);
          margin-bottom: 20px;
          font-weight: bold;
      }

      .page-yo88top__section-subtitle {
          font-size: 18px;
          color: var(--secondary-color);
          margin-bottom: 40px;
      }

      .page-yo88top__text-block {
          max-width: 800px;
          margin: 0 auto 30px auto;
          font-size: 17px;
          line-height: 1.7;
      }

      .page-yo88top__cta-button {
          display: inline-block;
          padding: 15px 40px;
          background: var(--primary-color);
          color: var(--text-light);
          text-decoration: none;
          border-radius: 8px;
          font-size: 18px;
          font-weight: bold;
          margin-top: 20px;
          transition: all 0.3s ease;
          border: none;
          cursor: pointer;
      }

      .page-yo88top__cta-button:hover {
          background: #1a4cdb;
          transform: translateY(-2px);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      }

      .page-yo88top__dark-section {
          background: var(--primary-color);
          color: var(--text-light);
      }

      .page-yo88top__dark-section .page-yo88top__section-title,
      .page-yo88top__dark-section .page-yo88top__section-subtitle {
          color: var(--text-light);
      }

      /* HERO Section */
      .page-yo88top__hero-section {
          position: relative;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          text-align: center;
          padding: 60px 20px;
          padding-top: 10px; /* Small top padding, body handles header offset */
          overflow: hidden;
      }

      .page-yo88top__hero-container {
          position: relative;
          max-width: 1200px;
          width: 100%;
          margin: 0 auto;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          z-index: 1;
      }

      .page-yo88top__hero-image {
          width: 100%;
          margin-bottom: 30px;
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      }

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

      .page-yo88top__hero-content {
          position: relative;
          z-index: 2;
          text-align: center;
          width: 100%;
      }

      .page-yo88top__hero-content h1 {
          font-size: 48px;
          color: var(--primary-color);
          margin-bottom: 15px;
          font-weight: 800;
          line-height: 1.2;
          max-width: 800px;
          margin-left: auto;
          margin-right: auto;
      }

      .page-yo88top__hero-content p {
          font-size: 20px;
          color: var(--text-dark);
          max-width: 700px;
          margin: 0 auto 30px auto;
          line-height: 1.5;
      }

      /* Introduction Section */
      .page-yo88top__introduction-section {
          background-color: #ffffff;
      }

      /* Quick Access Section */
      .page-yo88top__quick-access-section {
          background-color: var(--bg-light);
      }

      .page-yo88top__quick-access-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 25px;
          margin-top: 40px;
      }

      .page-yo88top__quick-access-item {
          background: #ffffff;
          padding: 25px;
          border-radius: 10px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          min-height: 180px;
      }

      .page-yo88top__quick-access-item:hover {
          transform: translateY(-8px);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      }

      .page-yo88top__quick-access-item h3 {
          font-size: 22px;
          color: var(--primary-color);
          margin-bottom: 15px;
          font-weight: 700;
      }

      .page-yo88top__quick-access-item a {
          display: inline-block;
          padding: 10px 25px;
          background: var(--secondary-color);
          color: var(--text-light);
          text-decoration: none;
          border-radius: 6px;
          font-size: 16px;
          font-weight: bold;
          transition: background-color 0.3s ease;
      }

      .page-yo88top__quick-access-item a:hover {
          background: #5a6a7c;
      }

      /* Games Section */
      .page-yo88top__games-section {
          background-color: var(--dark-bg);
          color: var(--text-light);
      }

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

      .page-yo88top__game-card {
          background: var(--bg-dark);
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          text-align: left;
      }

      .page-yo88top__game-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      }

      .page-yo88top__game-card-image img {
          width: 100%;
          height: 200px;
          object-fit: cover;
          display: block;
      }

      .page-yo88top__game-card-content {
          padding: 20px;
      }

      .page-yo88top__game-card-content h3 {
          font-size: 24px;
          color: var(--primary-color);
          margin-bottom: 10px;
          font-weight: 700;
      }

      .page-yo88top__game-card-content p {
          font-size: 15px;
          color: #cccccc;
          margin-bottom: 20px;
      }

      .page-yo88top__game-card-content a {
          display: inline-block;
          padding: 10px 20px;
          background: var(--primary-color);
          color: var(--text-light);
          text-decoration: none;
          border-radius: 6px;
          font-size: 15px;
          font-weight: bold;
          transition: background-color 0.3s ease;
      }

      .page-yo88top__game-card-content a:hover {
          background: #1a4cdb;
      }

      /* Promotions Section */
      .page-yo88top__promotions-section {
          background-color: #ffffff;
      }

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

      .page-yo88top__promo-card {
          background: var(--bg-light);
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          text-align: left;
      }

      .page-yo88top__promo-card:hover {
          transform: translateY(-8px);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      }

      .page-yo88top__promo-card-image img {
          width: 100%;
          height: 180px;
          object-fit: cover;
          display: block;
      }

      .page-yo88top__promo-card-content {
          padding: 20px;
      }

      .page-yo88top__promo-card-content h3 {
          font-size: 22px;
          color: var(--primary-color);
          margin-bottom: 10px;
          font-weight: 700;
      }

      .page-yo88top__promo-card-content p {
          font-size: 15px;
          color: var(--text-dark);
          margin-bottom: 20px;
      }

      .page-yo88top__promo-card-content a {
          display: inline-block;
          padding: 10px 20px;
          background: var(--secondary-color);
          color: var(--text-light);
          text-decoration: none;
          border-radius: 6px;
          font-size: 15px;
          font-weight: bold;
          transition: background-color 0.3s ease;
      }

      .page-yo88top__promo-card-content a:hover {
          background: #5a6a7c;
      }

      /* Security & Support Section */
      .page-yo88top__security-support-section {
          background-color: var(--bg-dark);
          color: var(--text-light);
      }

      .page-yo88top__security-support-section .page-yo88top__section-title,
      .page-yo88top__security-support-section .page-yo88top__section-subtitle {
          color: var(--text-light);
      }

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

      .page-yo88top__security-item {
          background: #2a2a2a;
          padding: 25px;
          border-radius: 10px;
          text-align: center;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      }

      .page-yo88top__security-item h3 {
          font-size: 22px;
          color: var(--primary-color);
          margin-bottom: 10px;
      }

      .page-yo88top__security-item p {
          font-size: 16px;
          color: #cccccc;
      }

      /* FAQ Section */
      .page-yo88top__faq-section {
          background-color: #ffffff;
      }

      .page-yo88top__faq-list {
          max-width: 900px;
          margin: 40px auto 0 auto;
          text-align: left;
      }

      details.page-yo88top__faq-item {
          margin-bottom: 15px;
          border-radius: 8px;
          border: 1px solid var(--border-color);
          overflow: hidden;
          background: #fff;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      }

      details.page-yo88top__faq-item summary.page-yo88top__faq-question {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 18px 20px;
          cursor: pointer;
          user-select: none;
          list-style: none;
          transition: background-color 0.3s ease;
      }

      details.page-yo88top__faq-item summary.page-yo88top__faq-question::-webkit-details-marker {
          display: none;
      }

      details.page-yo88top__faq-item summary.page-yo88top__faq-question:hover {
          background: #f5f5f5;
      }

      .page-yo88top__faq-qtext {
          flex: 1;
          font-size: 18px;
          font-weight: 600;
          line-height: 1.5;
          text-align: left;
          color: var(--text-dark);
      }

      .page-yo88top__faq-toggle {
          font-size: 24px;
          font-weight: bold;
          color: var(--primary-color);
          flex-shrink: 0;
          margin-left: 15px;
          width: 28px;
          text-align: center;
      }

      details.page-yo88top__faq-item .page-yo88top__faq-answer {
          padding: 0 20px 20px;
          background: #f9f9f9;
          border-radius: 0 0 8px 8px;
          color: var(--text-dark);
      }

      details.page-yo88top__faq-item .page-yo88top__faq-answer p {
          margin-bottom: 0;
          font-size: 16px;
      }

      /* Blog Section */
      .page-yo88top__blog-section {
          background-color: var(--bg-light);
      }

      .page-yo88top__blog-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
          margin-top: 40px;
      }

      .page-yo88top__blog-card {
          background: #ffffff;
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          text-align: left;
      }

      .page-yo88top__blog-card:hover {
          transform: translateY(-8px);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      }

      .page-yo88top__blog-card-image img {
          width: 100%;
          height: 220px;
          object-fit: cover;
          display: block;
      }

      .page-yo88top__blog-card-content {
          padding: 20px;
      }

      .page-yo88top__blog-card-content h3 {
          font-size: 20px;
          color: var(--primary-color);
          margin-bottom: 10px;
          font-weight: 700;
      }

      .page-yo88top__blog-card-content h3 a {
          color: var(--primary-color);
          text-decoration: none;
      }

      .page-yo88top__blog-card-content h3 a:hover {
          text-decoration: underline;
      }

      .page-yo88top__blog-card-content p {
          font-size: 15px;
          color: var(--text-dark);
          margin-bottom: 15px;
      }

      .page-yo88top__blog-card-meta {
          font-size: 13px;
          color: var(--secondary-color);
      }

      .page-yo88top__blog-card-link {
          display: inline-block;
          padding: 8px 15px;
          background: var(--secondary-color);
          color: var(--text-light);
          text-decoration: none;
          border-radius: 5px;
          font-size: 14px;
          font-weight: bold;
          margin-top: 15px;
          transition: background-color 0.3s ease;
      }

      .page-yo88top__blog-card-link:hover {
          background: #5a6a7c;
      }

      /* Floating Login Button */
      .page-yo88top__floating-login-button {
          position: fixed;
          bottom: 20px;
          right: 20px;
          z-index: 1000;
          padding: 15px 25px;
          background: linear-gradient(90deg, #ff6b6b, #ee3333);
          color: #ffffff;
          border-radius: 50px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
          font-size: 18px;
          font-weight: bold;
          text-decoration: none;
          text-align: center;
          transition: all 0.3s ease;
          animation: pulse 2s infinite;
      }

      .page-yo88top__floating-login-button:hover {
          transform: scale(1.05);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      }

      @keyframes pulse {
          0% { transform: scale(1); }
          50% { transform: scale(1.03); }
          100% { transform: scale(1); }
      }

      /* Responsive Styles */
      @media (max-width: 768px) {
          .page-yo88top__container {
              padding: 15px;
          }

          .page-yo88top__section {
              padding: 40px 0;
          }

          .page-yo88top__section-title {
              font-size: 28px;
          }

          .page-yo88top__section-subtitle {
              font-size: 16px;
              margin-bottom: 30px;
          }

          .page-yo88top__hero-section {
              padding-top: 10px !important;
              padding-bottom: 40px;
              padding-left: 15px;
              padding-right: 15px;
          }

          .page-yo88top__hero-content h1 {
              font-size: 36px;
          }

          .page-yo88top__hero-content p {
              font-size: 17px;
          }

          .page-yo88top__cta-button {
              padding: 12px 30px;
              font-size: 16px;
              max-width: 100% !important;
              width: 100% !important;
              box-sizing: border-box !important;
              white-space: normal !important;
              word-wrap: break-word !important;
          }

          .page-yo88top__quick-access-grid,
          .page-yo88top__games-grid,
          .page-yo88top__promotions-grid,
          .page-yo88top__security-grid,
          .page-yo88top__blog-grid {
              grid-template-columns: 1fr;
              gap: 20px;
          }

          .page-yo88top__quick-access-item,
          .page-yo88top__game-card,
          .page-yo88top__promo-card,
          .page-yo88top__security-item,
          .page-yo88top__blog-card {
              max-width: 100% !important;
              width: 100% !important;
              box-sizing: border-box !important;
          }

          .page-yo88top__quick-access-item a {
              max-width: 100% !important;
              width: 100% !important;
              box-sizing: border-box !important;
              white-space: normal !important;
              word-wrap: break-word !important;
          }

          .page-yo88top__game-card-content a,
          .page-yo88top__promo-card-content a,
          .page-yo88top__blog-card-link {
              max-width: 100% !important;
              width: 100% !important;
              box-sizing: border-box !important;
              white-space: normal !important;
              word-wrap: break-word !important;
          }

          .page-yo88top__faq-list {
              margin-left: 15px;
              margin-right: 15px;
          }

          details.page-yo88top__faq-item summary.page-yo88top__faq-question {
              padding: 15px;
          }

          .page-yo88top__faq-qtext {
              font-size: 16px;
          }

          .page-yo88top__faq-toggle {
              font-size: 20px;
              width: 24px;
              height: 24px;
          }

          details.page-yo88top__faq-item .page-yo88top__faq-answer {
              padding: 0 15px 15px;
          }

          .page-yo88top__floating-login-button {
              bottom: 15px;
              right: 15px;
              padding: 12px 20px;
              font-size: 16px;
              max-width: calc(100% - 30px) !important;
              width: calc(100% - 30px) !important;
              box-sizing: border-box !important;
          }

          .page-yo88top img {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
          }

          .page-yo88top__hero-image,
          .page-yo88top__game-card-image,
          .page-yo88top__promo-card-image,
          .page-yo88top__blog-card-image {
            max-width: 100% !important;
            width: 100% !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
          }
      }