
    /* General Styling */
    .page-dagatruc-tiep-c2 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small top padding, assuming body padding is handled by shared.css */
    }

    .page-dagatruc-tiep-c2 * {
      box-sizing: border-box;
    }

    .page-dagatruc-tiep-c2__section-title {
      font-size: 2.2em;
      color: #a01a1a; /* Darker red for emphasis */
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-dagatruc-tiep-c2__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #a01a1a;
      border-radius: 2px;
    }

    .page-dagatruc-tiep-c2__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 15px;
    }

    .page-dagatruc-tiep-c2__keyword-highlight {
      color: #a01a1a;
      font-weight: bold;
    }

    .page-dagatruc-tiep-c2__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1.1em;
    }

    .page-dagatruc-tiep-c2__button--primary {
      background-color: #a01a1a;
      color: #fff;
    }

    .page-dagatruc-tiep-c2__button--primary:hover {
      background-color: #7a1414;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-dagatruc-tiep-c2__button--secondary {
      background-color: #ffc107; /* Yellowish for secondary */
      color: #333;
    }

    .page-dagatruc-tiep-c2__button--secondary:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Hero Section */
    .page-dagatruc-tiep-c2__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 60px 20px;
      background-color: #1a1a1a; /* Dark background for hero */
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .page-dagatruc-tiep-c2__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin-top: 30px;
        border-radius: 10px;
    }

    .page-dagatruc-tiep-c2__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 10px;
    }

    .page-dagatruc-tiep-c2__hero-content {
      max-width: 900px;
      z-index: 1;
    }

    .page-dagatruc-tiep-c2__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: #fff;
      line-height: 1.2;
    }

    .page-dagatruc-tiep-c2__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-dagatruc-tiep-c2__hero-cta {
      margin-top: 30px;
    }

    /* About Section */
    .page-dagatruc-tiep-c2__about-section {
      padding: 60px 20px;
      background-color: #fff;
      text-align: center;
    }

    .page-dagatruc-tiep-c2__content-wrapper {
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-dagatruc-tiep-c2__image-container {
        width: 100%;
        max-width: 800px;
        margin: 30px auto;
        overflow: hidden;
        border-radius: 10px;
    }

    .page-dagatruc-tiep-c2__content-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      object-fit: cover;
    }

    /* Features Section */
    .page-dagatruc-tiep-c2__features-section {
      padding: 60px 20px;
      background-color: #f0f0f0;
    }

    .page-dagatruc-tiep-c2__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-dagatruc-tiep-c2__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-dagatruc-tiep-c2__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-dagatruc-tiep-c2__feature-icon {
      width: 100%; /* Ensure max-width: 100% is applied */
      max-width: 250px; /* Example size, ensure it's >=200px and not a tiny icon */
      height: auto;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      border-radius: 8px;
      object-fit: cover;
    }

    .page-dagatruc-tiep-c2__feature-title {
      font-size: 1.5em;
      color: #a01a1a;
      margin-bottom: 15px;
    }

    .page-dagatruc-tiep-c2__feature-description {
      font-size: 1em;
      color: #555;
    }

    /* How-to-Play Section */
    .page-dagatruc-tiep-c2__how-to-play-section {
      padding: 60px 20px;
      background-color: #fff;
    }

    .page-dagatruc-tiep-c2__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-dagatruc-tiep-c2__step-item {
      text-align: center;
      padding: 20px;
      border: 1px solid #ddd;
      border-radius: 10px;
      background-color: #fafafa;
    }

    .page-dagatruc-tiep-c2__step-image {
      width: 100%; /* Ensure max-width: 100% is applied */
      max-width: 300px; /* Example size, ensure it's >=200px */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      object-fit: cover;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-dagatruc-tiep-c2__step-title {
      font-size: 1.4em;
      color: #a01a1a;
      margin-bottom: 10px;
    }

    .page-dagatruc-tiep-c2__step-description {
      font-size: 1em;
      color: #555;
    }

    /* Promotions Section */
    .page-dagatruc-tiep-c2__promotions-section {
      padding: 60px 20px;
      background-color: #f0f0f0;
      text-align: center;
    }

    .page-dagatruc-tiep-c2__promo-list {
      list-style: none;
      padding: 0;
      margin: 30px auto;
      max-width: 800px;
    }

    .page-dagatruc-tiep-c2__promo-item {
      background-color: #fff;
      margin-bottom: 15px;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      font-size: 1.1em;
      color: #333;
      text-align: left;
    }

    /* FAQ Section */
    .page-dagatruc-tiep-c2__faq-section {
      padding: 60px 20px;
      background-color: #fff;
    }

    .page-dagatruc-tiep-c2__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-dagatruc-tiep-c2__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-dagatruc-tiep-c2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #a01a1a;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      border-radius: 8px 8px 0 0;
    }

    .page-dagatruc-tiep-c2__faq-question:hover {
      background-color: #7a1414;
    }

    .page-dagatruc-tiep-c2__faq-title {
      margin: 0;
      font-size: 1.2em;
      color: #fff;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-dagatruc-tiep-c2__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click on parent div */
    }

    .page-dagatruc-tiep-c2__faq-item.active .page-dagatruc-tiep-c2__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-dagatruc-tiep-c2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fff;
      color: #333;
      border-radius: 0 0 8px 8px;
    }

    .page-dagatruc-tiep-c2__faq-item.active .page-dagatruc-tiep-c2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-dagatruc-tiep-c2__faq-answer p {
      margin: 0;
      font-size: 1em;
      line-height: 1.6;
    }

    /* Call to Action Bottom */
    .page-dagatruc-tiep-c2__cta-bottom {
      padding: 60px 20px;
      background-color: #1a1a1a;
      color: #fff;
      text-align: center;
    }

    .page-dagatruc-tiep-c2__cta-bottom .page-dagatruc-tiep-c2__section-title {
      color: #fff;
    }

    .page-dagatruc-tiep-c2__cta-bottom .page-dagatruc-tiep-c2__section-title::after {
      background-color: #fff;
    }

    .page-dagatruc-tiep-c2__cta-bottom .page-dagatruc-tiep-c2__paragraph {
      color: #e0e0e0;
    }

    /* Floating Buttons */
    .page-dagatruc-tiep-c2__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-dagatruc-tiep-c2__floating-button {
      padding: 10px 20px;
      border-radius: 25px;
      border: none;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
      font-size: 1em;
    }

    .page-dagatruc-tiep-c2__floating-button:hover {
      transform: translateY(-3px);
    }

    .page-dagatruc-tiep-c2__floating-button--register {
      background-color: #a01a1a;
      color: #fff;
    }

    .page-dagatruc-tiep-c2__floating-button--login {
      background-color: #ffc107;
      color: #333;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-dagatruc-tiep-c2__hero-title {
        font-size: 2.8em;
      }
      .page-dagatruc-tiep-c2__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-dagatruc-tiep-c2__hero-section {
        padding: 40px 15px;
      }
      .page-dagatruc-tiep-c2__hero-title {
        font-size: 2.2em;
      }
      .page-dagatruc-tiep-c2__hero-description {
        font-size: 1.1em;
      }
      .page-dagatruc-tiep-c2__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-dagatruc-tiep-c2__paragraph {
        font-size: 1em;
        padding: 0 10px;
      }
      .page-dagatruc-tiep-c2__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      /* Image Responsiveness */
      .page-dagatruc-tiep-c2__hero-image-wrapper,
      .page-dagatruc-tiep-c2__image-container,
      .page-dagatruc-tiep-c2__feature-icon,
      .page-dagatruc-tiep-c2__step-image {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-dagatruc-tiep-c2__hero-image,
      .page-dagatruc-tiep-c2__content-image,
      .page-dagatruc-tiep-c2__feature-icon,
      .page-dagatruc-tiep-c2__step-image {
        max-width: 100% !important;
        height: auto !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* List items responsiveness */
      .page-dagatruc-tiep-c2__promo-list,
      .page-dagatruc-tiep-c2__faq-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Adjust if parent has padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-dagatruc-tiep-c2__promo-item,
      .page-dagatruc-tiep-c2__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 10px !important; /* Reduce padding for mobile */
        padding-right: 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-dagatruc-tiep-c2__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-dagatruc-tiep-c2__faq-title {
        font-size: 1.1em;
      }

      .page-dagatruc-tiep-c2__faq-answer {
        padding: 0 10px;
      }

      .page-dagatruc-tiep-c2__faq-item.active .page-dagatruc-tiep-c2__faq-answer {
        padding: 15px 10px !important;
      }

      .page-dagatruc-tiep-c2__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }
      .page-dagatruc-tiep-c2__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-dagatruc-tiep-c2__hero-title {
        font-size: 1.8em;
      }
      .page-dagatruc-tiep-c2__section-title {
        font-size: 1.5em;
      }
      .page-dagatruc-tiep-c2__hero-description {
        font-size: 1em;
      }
      .page-dagatruc-tiep-c2__feature-title,
      .page-dagatruc-tiep-c2__step-title {
        font-size: 1.2em;
      }
    }
  