:root {
      --primary-color: #e0b300;
      --secondary-color: #333;
      --text-color-light: #f8f8f8;
      --text-color-dark: #222;
      --background-dark: #1a1a1a;
      --background-light: #f4f4f4;
      --accent-color: #007bff;
      --border-color: #ddd;
    }

    .page-how-to-check-playtime-ghost-of-tsushima {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color-dark);
      background-color: var(--background-light);
      padding-top: var(--header-offset, 122px); /* Fallback for body padding */
    }

    .page-how-to-check-playtime-ghost-of-tsushima__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__section--dark {
      background-color: var(--background-dark);
      color: var(--text-color-light);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__section--dark h2,
    .page-how-to-check-playtime-ghost-of-tsushima__section--dark h3,
    .page-how-to-check-playtime-ghost-of-tsushima__section--dark p,
    .page-how-to-check-playtime-ghost-of-tsushima__section--dark li {
      color: var(--text-color-light);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__section-title {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.2em;
      color: var(--primary-color);
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__section-title--dark {
      color: var(--primary-color);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__hero {
      position: relative;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--text-color-light);
      overflow: hidden;
      padding: 10px 20px 40px; /* Add some top padding, relying on body for header offset */
    }

    .page-how-to-check-playtime-ghost-of-tsushima__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__hero-content {
      z-index: 1;
      max-width: 900px;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--text-color-dark);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__button:hover {
      background-color: #ffc107;
      transform: translateY(-2px);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__intro-text {
      max-width: 800px;
      margin: 0 auto 30px;
      text-align: center;
      font-size: 1.1em;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__feature-item {
      background-color: var(--background-light);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: var(--text-color-dark);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      object-fit: contain;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__feature-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--primary-color);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__quick-access-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__quick-access-item .page-how-to-check-playtime-ghost-of-tsushima__button {
      width: 100%;
      text-align: center;
      box-sizing: border-box;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__game-card {
      background-color: var(--background-dark);
      color: var(--text-color-light);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__game-image {
      width: 100%;
      height: 150px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__game-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: var(--primary-color);
      padding: 0 15px;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__game-description {
      font-size: 0.9em;
      color: #ccc;
      padding: 0 15px 15px;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__promo-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__promo-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__promo-content {
      padding: 20px;
      text-align: center;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__promo-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--primary-color);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__promo-description {
      font-size: 0.95em;
      margin-bottom: 20px;
      color: var(--text-color-dark);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__faq-item {
      background-color: #fff;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #f9f9f9;
      font-weight: bold;
      color: var(--secondary-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--secondary-color);
      pointer-events: none; /* Prevent text selection from interfering with click */
    }

    .page-how-to-check-playtime-ghost-of-tsushima__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent icon from interfering with click */
      color: var(--primary-color);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__faq-item.active .page-how-to-check-playtime-ghost-of-tsushima__faq-toggle {
      transform: rotate(45deg);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__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;
      color: var(--text-color-dark);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__faq-item.active .page-how-to-check-playtime-ghost-of-tsushima__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__blog-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__blog-content {
      padding: 20px;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__blog-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--secondary-color);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__blog-title a {
      text-decoration: none;
      color: var(--secondary-color);
      transition: color 0.3s ease;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__blog-title a:hover {
      color: var(--primary-color);
    }

    .page-how-to-check-playtime-ghost-of-tsushima__blog-excerpt {
      font-size: 0.9em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-how-to-check-playtime-ghost-of-tsushima__blog-date {
      font-size: 0.8em;
      color: #999;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-how-to-check-playtime-ghost-of-tsushima__hero-title {
        font-size: 2.5em;
      }
      .page-how-to-check-playtime-ghost-of-tsushima__hero-description {
        font-size: 1.1em;
      }
      .page-how-to-check-playtime-ghost-of-tsushima__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-how-to-check-playtime-ghost-of-tsushima__hero {
        height: 400px;
        padding: 10px 15px 30px;
      }
      .page-how-to-check-playtime-ghost-of-tsushima__hero-title {
        font-size: 2em;
      }
      .page-how-to-check-playtime-ghost-of-tsushima__hero-description {
        font-size: 1em;
      }
      .page-how-to-check-playtime-ghost-of-tsushima__section {
        padding: 30px 15px;
      }
      .page-how-to-check-playtime-ghost-of-tsushima__section-title {
        font-size: 1.8em;
      }
      .page-how-to-check-playtime-ghost-of-tsushima__intro-text {
        font-size: 1em;
      }
      .page-how-to-check-playtime-ghost-of-tsushima__features-grid,
      .page-how-to-check-playtime-ghost-of-tsushima__quick-access-grid,
      .page-how-to-check-playtime-ghost-of-tsushima__game-grid,
      .page-how-to-check-playtime-ghost-of-tsushima__promo-grid,
      .page-how-to-check-playtime-ghost-of-tsushima__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item specific responsive styles */
      .page-how-to-check-playtime-ghost-of-tsushima__features-grid > *,
      .page-how-to-check-playtime-ghost-of-tsushima__quick-access-grid > *,
      .page-how-to-check-playtime-ghost-of-tsushima__game-grid > *,
      .page-how-to-check-playtime-ghost-of-tsushima__promo-grid > *,
      .page-how-to-check-playtime-ghost-of-tsushima__blog-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-how-to-check-playtime-ghost-of-tsushima__faq-question h3 {
        font-size: 1em;
      }
      .page-how-to-check-playtime-ghost-of-tsushima__faq-toggle {
        font-size: 1.3em;
      }
      .page-how-to-check-playtime-ghost-of-tsushima__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-how-to-check-playtime-ghost-of-tsushima__hero-title {
        font-size: 1.7em;
      }
      .page-how-to-check-playtime-ghost-of-tsushima__hero-description {
        font-size: 0.9em;
      }
      .page-how-to-check-playtime-ghost-of-tsushima__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-how-to-check-playtime-ghost-of-tsushima__section-title {
        font-size: 1.5em;
      }
    }