.page-tongits-go-video-game {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small top padding for visual separation from header */
    }

    .page-tongits-go-video-game__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-tongits-go-video-game__section {
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      margin-bottom: 30px;
      padding: 30px;
      box-sizing: border-box;
    }

    .page-tongits-go-video-game__hero-section {
      position: relative;
      color: #ffffff;
      text-align: center;
      padding: 80px 20px;
      background-size: cover;
      background-position: center;
      border-radius: 12px;
      overflow: hidden;
    }

    .page-tongits-go-video-game__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
      z-index: 1;
    }

    .page-tongits-go-video-game__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-tongits-go-video-game__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      font-weight: 700;
      text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    }

    .page-tongits-go-video-game__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      font-weight: 400;
      opacity: 0.9;
    }

    .page-tongits-go-video-game__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #333;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: 600;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .page-tongits-go-video-game__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    .page-tongits-go-video-game__heading {
      font-size: 2.5em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 40px;
      font-weight: 700;
      position: relative;
    }

    .page-tongits-go-video-game__heading::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ffcc00;
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .page-tongits-go-video-game__intro-text {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      color: #555;
    }

    .page-tongits-go-video-game__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-tongits-go-video-game__feature-item {
      background-color: #fefefe;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-tongits-go-video-game__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .page-tongits-go-video-game__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      object-fit: contain;
    }

    .page-tongits-go-video-game__feature-title {
      font-size: 1.4em;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-tongits-go-video-game__feature-description {
      font-size: 0.95em;
      color: #666;
    }

    .page-tongits-go-video-game__quick-links-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-tongits-go-video-game__quick-link-button {
      display: block;
      background-color: #4CAF50;
      color: #ffffff;
      padding: 12px 20px;
      border-radius: 8px;
      text-align: center;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: 500;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-tongits-go-video-game__quick-link-button:nth-child(even) {
      background-color: #2196F3;
    }

    .page-tongits-go-video-game__quick-link-button:hover {
      background-color: #3e8e41;
      transform: translateY(-2px);
    }

    .page-tongits-go-video-game__quick-link-button:nth-child(even):hover {
      background-color: #1976D2;
    }

    .page-tongits-go-video-game__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-tongits-go-video-game__game-card {
      background-color: #fefefe;
      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-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-tongits-go-video-game__game-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-tongits-go-video-game__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-tongits-go-video-game__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-tongits-go-video-game__game-title {
      font-size: 1.5em;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-tongits-go-video-game__game-description {
      font-size: 0.95em;
      color: #666;
      flex-grow: 1;
    }

    .page-tongits-go-video-game__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-tongits-go-video-game__promo-card {
      background-color: #fefefe;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      padding: 25px;
      box-sizing: border-box;
    }

    .page-tongits-go-video-game__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-tongits-go-video-game__promo-title {
      font-size: 1.6em;
      color: #e74c3c;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .page-tongits-go-video-game__promo-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 25px;
    }

    .page-tongits-go-video-game__security-items {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-tongits-go-video-game__security-item {
      background-color: #e8f5e9;
      color: #2e7d32;
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1em;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-tongits-go-video-game__faq-list {
      margin-top: 30px;
    }

    .page-tongits-go-video-game__faq-item {
      background-color: #fefefe;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-tongits-go-video-game__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      font-size: 1.2em;
      font-weight: 600;
      color: #34495e;
      cursor: pointer;
      user-select: none;
      background-color: #f9f9f9;
      border-bottom: 1px solid #eee;
    }

    .page-tongits-go-video-game__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-tongits-go-video-game__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #34495e;
      pointer-events: none;
    }

    .page-tongits-go-video-game__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none;
      color: #ffcc00;
    }

    .page-tongits-go-video-game__faq-item.active .page-tongits-go-video-game__faq-toggle {
      transform: rotate(45deg);
    }

    .page-tongits-go-video-game__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1em;
      opacity: 0;
    }

    .page-tongits-go-video-game__faq-item.active .page-tongits-go-video-game__faq-answer {
      max-height: 2000px !important;
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-tongits-go-video-game__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-tongits-go-video-game__blog-card {
      background-color: #fefefe;
      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-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-tongits-go-video-game__blog-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-tongits-go-video-game__blog-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-tongits-go-video-game__blog-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-tongits-go-video-game__blog-title {
      font-size: 1.4em;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-tongits-go-video-game__blog-excerpt {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-tongits-go-video-game__blog-date {
      font-size: 0.85em;
      color: #999;
      text-align: right;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-tongits-go-video-game__container {
        padding: 15px;
      }

      .page-tongits-go-video-game__hero-section {
        padding: 60px 15px;
      }

      .page-tongits-go-video-game__hero-title {
        font-size: 2.2em;
      }

      .page-tongits-go-video-game__hero-subtitle {
        font-size: 1.1em;
      }

      .page-tongits-go-video-game__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-tongits-go-video-game__heading {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-tongits-go-video-game__intro-text {
        font-size: 1em;
      }

      .page-tongits-go-video-game__feature-grid,
      .page-tongits-go-video-game__quick-links-grid,
      .page-tongits-go-video-game__game-categories,
      .page-tongits-go-video-game__promo-grid,
      .page-tongits-go-video-game__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-tongits-go-video-game__feature-item,
      .page-tongits-go-video-game__quick-link-button,
      .page-tongits-go-video-game__game-card,
      .page-tongits-go-video-game__promo-card,
      .page-tongits-go-video-game__security-item,
      .page-tongits-go-video-game__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-tongits-go-video-game__game-image,
      .page-tongits-go-video-game__promo-image,
      .page-tongits-go-video-game__blog-image {
        height: 180px;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-tongits-go-video-game__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-tongits-go-video-game__faq-question h3 {
        font-size: 1.1em;
      }

      .page-tongits-go-video-game__faq-answer {
        padding: 0 20px;
      }

      .page-tongits-go-video-game__faq-item.active .page-tongits-go-video-game__faq-answer {
        padding: 15px 20px !important;
      }

      /* Ensure text wrapping for list-like items */
      .page-tongits-go-video-game__feature-description,
      .page-tongits-go-video-game__game-description,
      .page-tongits-go-video-game__promo-description,
      .page-tongits-go-video-game__blog-excerpt,
      .page-tongits-go-video-game__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-tongits-go-video-game__section {
        padding: 20px;
      }
    }

    @media (max-width: 480px) {
      .page-tongits-go-video-game__hero-title {
        font-size: 1.8em;
      }

      .page-tongits-go-video-game__hero-subtitle {
        font-size: 0.95em;
      }

      .page-tongits-go-video-game__heading {
        font-size: 1.8em;
      }
    }