:root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #8B0000; /* Dark Red */
      --text-color: #F5F5DC; /* Beige */
      --background-dark: #1A1A1A;
      --background-light: #2A2A2A;
      --border-color: #444;
      --button-hover-color: #FFECB3;
    }

    .page-kuya-j-eastwood-reviews {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative top padding as body handles offset */
    }

    .page-kuya-j-eastwood-reviews__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-kuya-j-eastwood-reviews h1,
    .page-kuya-j-eastwood-reviews h2,
    .page-kuya-j-eastwood-reviews h3 {
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-kuya-j-eastwood-reviews h1 {
      font-size: 2.8em;
    }

    .page-kuya-j-eastwood-reviews h2 {
      font-size: 2.2em;
    }

    .page-kuya-j-eastwood-reviews h3 {
      font-size: 1.6em;
    }

    .page-kuya-j-eastwood-reviews p {
      margin-bottom: 15px;
      text-align: center;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kuya-j-eastwood-reviews__cta-button,
    .page-kuya-j-eastwood-reviews__access-button,
    .page-kuya-j-eastwood-reviews__game-button,
    .page-kuya-j-eastwood-reviews__promo-button,
    .page-kuya-j-eastwood-reviews__support-button,
    .page-kuya-j-eastwood-reviews__blog-link {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--background-dark);
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      margin-top: 15px;
      border: none;
      cursor: pointer;
    }

    .page-kuya-j-eastwood-reviews__cta-button:hover,
    .page-kuya-j-eastwood-reviews__access-button:hover,
    .page-kuya-j-eastwood-reviews__game-button:hover,
    .page-kuya-j-eastwood-reviews__promo-button:hover,
    .page-kuya-j-eastwood-reviews__support-button:hover,
    .page-kuya-j-eastwood-reviews__blog-link:hover {
      background-color: var(--button-hover-color);
      color: var(--secondary-color);
    }

    /* Hero Section */
    .page-kuya-j-eastwood-reviews__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background-color: var(--background-dark);
    }

    .page-kuya-j-eastwood-reviews__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.4;
    }

    .page-kuya-j-eastwood-reviews__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

    .page-kuya-j-eastwood-reviews__hero-content h1 {
      color: #FFF;
      margin-bottom: 15px;
      font-size: 3.2em;
    }

    .page-kuya-j-eastwood-reviews__hero-content p {
      color: #E0E0E0;
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    /* Intro Section */
    .page-kuya-j-eastwood-reviews__intro-section {
      @extend .page-kuya-j-eastwood-reviews__section;
      background-color: var(--background-light);
    }

    .page-kuya-j-eastwood-reviews__intro-features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-kuya-j-eastwood-reviews__feature-item {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

    .page-kuya-j-eastwood-reviews__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-kuya-j-eastwood-reviews__feature-icon {
      width: 100%;
      max-width: 200px;
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
    }

    /* Quick Access */
    .page-kuya-j-eastwood-reviews__quick-access-section {
      @extend .page-kuya-j-eastwood-reviews__section;
      text-align: center;
    }

    .page-kuya-j-eastwood-reviews__access-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    /* Games Section */
    .page-kuya-j-eastwood-reviews__games-section {
      @extend .page-kuya-j-eastwood-reviews__section;
      background-color: var(--background-light);
    }

    .page-kuya-j-eastwood-reviews__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-kuya-j-eastwood-reviews__game-card {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .page-kuya-j-eastwood-reviews__game-card:hover {
      transform: translateY(-5px);
    }

    .page-kuya-j-eastwood-reviews__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-kuya-j-eastwood-reviews__game-card h3 {
      color: var(--primary-color);
      margin-bottom: 10px;
      font-size: 1.4em;
    }

    .page-kuya-j-eastwood-reviews__game-card p {
      font-size: 0.95em;
      padding: 0 15px;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-kuya-j-eastwood-reviews__promo-section {
      @extend .page-kuya-j-eastwood-reviews__section;
    }

    .page-kuya-j-eastwood-reviews__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-kuya-j-eastwood-reviews__promo-card {
      background-color: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .page-kuya-j-eastwood-reviews__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-kuya-j-eastwood-reviews__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-kuya-j-eastwood-reviews__promo-card h3 {
      color: var(--primary-color);
      margin-bottom: 10px;
      font-size: 1.5em;
    }

    .page-kuya-j-eastwood-reviews__promo-card p {
      font-size: 1em;
      padding: 0 15px;
      margin-bottom: 15px;
    }

    /* Security Section */
    .page-kuya-j-eastwood-reviews__security-section {
      @extend .page-kuya-j-eastwood-reviews__section;
      background-color: var(--background-light);
    }

    .page-kuya-j-eastwood-reviews__security-features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-kuya-j-eastwood-reviews__security-item {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

    .page-kuya-j-eastwood-reviews__security-item:hover {
      transform: translateY(-5px);
    }

    .page-kuya-j-eastwood-reviews__security-icon {
      width: 100%;
      max-width: 150px;
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
    }

    /* FAQ Section */
    .page-kuya-j-eastwood-reviews__faq-section {
      @extend .page-kuya-j-eastwood-reviews__section;
      background-color: var(--background-dark);
    }

    .page-kuya-j-eastwood-reviews__faq-container {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kuya-j-eastwood-reviews__faq-item {
      background-color: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-kuya-j-eastwood-reviews__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--background-light);
      border-bottom: 1px solid var(--border-color);
      user-select: none;
    }

    .page-kuya-j-eastwood-reviews__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      font-size: 1.2em;
      text-align: left;
    }

    .page-kuya-j-eastwood-reviews__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
    }

    .page-kuya-j-eastwood-reviews__faq-item.active .page-kuya-j-eastwood-reviews__faq-toggle {
      transform: rotate(45deg);
    }

    .page-kuya-j-eastwood-reviews__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--text-color);
    }

    .page-kuya-j-eastwood-reviews__faq-item.active .page-kuya-j-eastwood-reviews__faq-answer {
      max-height: 2000px !important; /* Sufficiently large for content */
      padding: 20px !important;
      opacity: 1;
    }

    .page-kuya-j-eastwood-reviews__faq-answer p {
      text-align: left;
      margin-bottom: 0;
    }

    /* Blog Section */
    .page-kuya-j-eastwood-reviews__blog-section {
      @extend .page-kuya-j-eastwood-reviews__section;
      background-color: var(--background-light);
    }

    .page-kuya-j-eastwood-reviews__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-kuya-j-eastwood-reviews__blog-card {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .page-kuya-j-eastwood-reviews__blog-card:hover {
      transform: translateY(-5px);
    }

    .page-kuya-j-eastwood-reviews__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-kuya-j-eastwood-reviews__blog-card h3 {
      color: var(--primary-color);
      margin-bottom: 10px;
      font-size: 1.4em;
      padding: 0 15px;
    }

    .page-kuya-j-eastwood-reviews__blog-card p {
      font-size: 0.95em;
      padding: 0 15px;
      margin-bottom: 15px;
    }

    /* General Image Styling */
    .page-kuya-j-eastwood-reviews img {
      max-width: 100%;
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-kuya-j-eastwood-reviews h1 {
        font-size: 2.5em;
      }
      .page-kuya-j-eastwood-reviews h2 {
        font-size: 2em;
      }
      .page-kuya-j-eastwood-reviews__feature-item,
      .page-kuya-j-eastwood-reviews__security-item {
        flex: 1 1 calc(50% - 30px);
      }
    }

    @media (max-width: 768px) {
      .page-kuya-j-eastwood-reviews__hero-section {
        height: 50vh;
        min-height: 350px;
      }
      .page-kuya-j-eastwood-reviews__hero-content h1 {
        font-size: 2.2em;
      }
      .page-kuya-j-eastwood-reviews h1 {
        font-size: 2em;
      }
      .page-kuya-j-eastwood-reviews h2 {
        font-size: 1.8em;
      }
      .page-kuya-j-eastwood-reviews h3 {
        font-size: 1.4em;
      }
      .page-kuya-j-eastwood-reviews p {
        font-size: 0.95em;
      }

      .page-kuya-j-eastwood-reviews__cta-button,
      .page-kuya-j-eastwood-reviews__access-button,
      .page-kuya-j-eastwood-reviews__game-button,
      .page-kuya-j-eastwood-reviews__promo-button,
      .page-kuya-j-eastwood-reviews__support-button,
      .page-kuya-j-eastwood-reviews__blog-link {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-kuya-j-eastwood-reviews__feature-item,
      .page-kuya-j-eastwood-reviews__security-item {
        flex: 1 1 100%;
        min-width: unset;
      }

      .page-kuya-j-eastwood-reviews__game-categories,
      .page-kuya-j-eastwood-reviews__promo-grid,
      .page-kuya-j-eastwood-reviews__blog-grid {
        grid-template-columns: 1fr;
      }

      .page-kuya-j-eastwood-reviews__faq-question {
        padding: 12px 15px;
      }
      .page-kuya-j-eastwood-reviews__faq-question h3 {
        font-size: 1.1em;
      }
      .page-kuya-j-eastwood-reviews__faq-toggle {
        font-size: 1.3em;
      }
      .page-kuya-j-eastwood-reviews__faq-answer {
        padding: 0 15px;
      }
      .page-kuya-j-eastwood-reviews__faq-item.active .page-kuya-j-eastwood-reviews__faq-answer {
        padding: 15px !important;
      }

      .page-kuya-j-eastwood-reviews img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-kuya-j-eastwood-reviews__hero-content h1 {
        font-size: 1.8em;
      }
      .page-kuya-j-eastwood-reviews h1 {
        font-size: 1.6em;
      }
      .page-kuya-j-eastwood-reviews h2 {
        font-size: 1.5em;
      }
      .page-kuya-j-eastwood-reviews h3 {
        font-size: 1.2em;
      }
      .page-kuya-j-eastwood-reviews__section {
        padding: 30px 15px;
      }
      .page-kuya-j-eastwood-reviews__intro-features,
      .page-kuya-j-eastwood-reviews__access-links,
      .page-kuya-j-eastwood-reviews__security-features {
        gap: 10px;
      }
      .page-kuya-j-eastwood-reviews__access-button {
        flex: 1 1 100%;
      }
    }