:root {
      --primary-color: #e50914; /* Netflix red, strong and engaging */
      --secondary-color: #f5f5f5; /* Light grey for backgrounds */
      --dark-background: #1a1a1a; /* Dark background for sections */
      --text-color: #ffffff; /* White text on dark backgrounds */
      --dark-text-color: #333333; /* Dark text on light backgrounds */
      --accent-color: #fcd12a; /* Gold/yellow for accents */
      --border-radius: 8px;
      --spacing-unit: 16px;
    }

    .page-nustar-price {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--dark-background);
      padding-top: 10px; /* Small top padding for visual separation from header */
    }

    .page-nustar-price__section {
      padding: calc(2 * var(--spacing-unit)) var(--spacing-unit);
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--dark-background);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .page-nustar-price__section:last-of-type {
      border-bottom: none;
    }

    .page-nustar-price__section-title {
      color: var(--primary-color);
      text-align: center;
      margin-bottom: calc(2 * var(--spacing-unit));
      font-size: 2.5em;
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-nustar-price__section-subtitle {
      color: var(--accent-color);
      text-align: center;
      margin-bottom: calc(3 * var(--spacing-unit));
      font-size: 1.2em;
    }

    /* Hero Section */
    .page-nustar-price__hero-section {
      position: relative;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--text-color);
      overflow: hidden;
      padding: var(--spacing-unit);
      background-color: #000;
    }

    .page-nustar-price__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.5;
    }

    .page-nustar-price__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: var(--spacing-unit);
    }

    .page-nustar-price__hero-title {
      font-size: 3.5em;
      margin-bottom: var(--spacing-unit);
      line-height: 1.2;
      color: var(--primary-color);
    }

    .page-nustar-price__hero-description {
      font-size: 1.3em;
      margin-bottom: calc(2 * var(--spacing-unit));
      color: var(--secondary-color);
    }

    .page-nustar-price__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--text-color);
      padding: 15px 30px;
      border-radius: var(--border-radius);
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-nustar-price__cta-button:hover {
      background-color: #ff3344;
      transform: translateY(-2px);
    }

    /* Introduction Section */
    .page-nustar-price__introduction-section {
      background-color: #222;
      color: var(--secondary-color);
      text-align: center;
    }

    .page-nustar-price__introduction-text {
      font-size: 1.1em;
      margin-bottom: var(--spacing-unit);
    }

    .page-nustar-price__key-features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: var(--spacing-unit);
      margin-top: calc(2 * var(--spacing-unit));
    }

    .page-nustar-price__feature-item {
      background-color: #333;
      padding: var(--spacing-unit);
      border-radius: var(--border-radius);
      text-align: center;
      flex: 1 1 calc(33% - 2 * var(--spacing-unit));
      min-width: 250px;
      box-sizing: border-box;
      border: 1px solid var(--primary-color);
      transition: transform 0.3s ease;
    }

    .page-nustar-price__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-nustar-price__feature-icon {
      margin-bottom: var(--spacing-unit);
      width: 60px;
      height: 60px;
      object-fit: contain;
    }

    .page-nustar-price__feature-title {
      color: var(--accent-color);
      font-size: 1.2em;
      margin-bottom: 0.5em;
    }

    .page-nustar-price__feature-description {
      font-size: 0.9em;
      color: #ccc;
    }

    /* Quick Access Section */
    .page-nustar-price__quick-access-section {
      background-color: var(--dark-background);
      text-align: center;
    }

    .page-nustar-price__access-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: var(--spacing-unit);
    }

    .page-nustar-price__access-button {
      background-color: var(--accent-color);
      color: var(--dark-text-color);
      padding: 12px 25px;
      border-radius: var(--border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      flex: 1 1 calc(25% - 2 * var(--spacing-unit));
      min-width: 200px;
      box-sizing: border-box;
      border: none;
      cursor: pointer;
    }

    .page-nustar-price__access-button:hover {
      background-color: #ffd700;
      transform: translateY(-2px);
    }

    /* Games Section */
    .page-nustar-price__games-section {
      background-color: #222;
    }

    .page-nustar-price__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: calc(1.5 * var(--spacing-unit));
    }

    .page-nustar-price__game-card {
      background-color: #333;
      border-radius: var(--border-radius);
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-nustar-price__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    .page-nustar-price__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-nustar-price__game-content {
      padding: var(--spacing-unit);
    }

    .page-nustar-price__game-title {
      color: var(--primary-color);
      font-size: 1.4em;
      margin-bottom: var(--spacing-unit);
    }

    .page-nustar-price__game-description {
      color: #ccc;
      font-size: 0.9em;
      margin-bottom: calc(1.5 * var(--spacing-unit));
    }

    .page-nustar-price__play-button {
      background-color: var(--primary-color);
      color: var(--text-color);
      padding: 10px 20px;
      border-radius: var(--border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-nustar-price__play-button:hover {
      background-color: #ff3344;
    }

    /* Promotions Section */
    .page-nustar-price__promotions-section {
      background-color: var(--dark-background);
    }

    .page-nustar-price__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: calc(1.5 * var(--spacing-unit));
    }

    .page-nustar-price__promo-card {
      background-color: #333;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      border: 1px solid var(--accent-color);
    }

    .page-nustar-price__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    .page-nustar-price__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-nustar-price__promo-content {
      padding: var(--spacing-unit);
    }

    .page-nustar-price__promo-title {
      color: var(--accent-color);
      font-size: 1.5em;
      margin-bottom: 0.5em;
    }

    .page-nustar-price__promo-description {
      color: #ccc;
      font-size: 0.95em;
      margin-bottom: calc(1.5 * var(--spacing-unit));
    }

    .page-nustar-price__claim-button {
      background-color: var(--primary-color);
      color: var(--text-color);
      padding: 10px 20px;
      border-radius: var(--border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-nustar-price__claim-button:hover {
      background-color: #ff3344;
    }

    /* Security & Customer Service Section */
    .page-nustar-price__security-section {
      background-color: #222;
      text-align: center;
    }

    .page-nustar-price__security-features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: calc(1.5 * var(--spacing-unit));
      margin-top: calc(2 * var(--spacing-unit));
    }

    .page-nustar-price__security-item {
      background-color: #333;
      padding: calc(1.5 * var(--spacing-unit));
      border-radius: var(--border-radius);
      flex: 1 1 calc(33% - 2 * var(--spacing-unit));
      min-width: 280px;
      box-sizing: border-box;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-nustar-price__security-icon {
      margin-bottom: var(--spacing-unit);
      width: 70px;
      height: 70px;
      object-fit: contain;
    }

    .page-nustar-price__security-title {
      color: var(--primary-color);
      font-size: 1.3em;
      margin-bottom: 0.5em;
    }

    .page-nustar-price__security-description {
      color: #ccc;
      font-size: 0.9em;
    }

    .page-nustar-price__contact-button {
      margin-top: calc(2 * var(--spacing-unit));
      background-color: var(--accent-color);
      color: var(--dark-text-color);
      padding: 15px 30px;
      border-radius: var(--border-radius);
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-nustar-price__contact-button:hover {
      background-color: #ffd700;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-nustar-price__faq-section {
      background-color: var(--dark-background);
      color: var(--secondary-color);
    }

    .page-nustar-price__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-nustar-price__faq-item {
      background-color: #2a2a2a;
      margin-bottom: var(--spacing-unit);
      border-radius: var(--border-radius);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-nustar-price__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: var(--spacing-unit) calc(1.5 * var(--spacing-unit));
      cursor: pointer;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--text-color);
      background-color: #333;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-nustar-price__faq-question h3 {
      margin: 0;
      color: var(--text-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
      text-align: left;
    }

    .page-nustar-price__faq-question:hover {
      background-color: #444;
    }

    .page-nustar-price__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click event */
      width: 24px;
      text-align: center;
      color: var(--primary-color);
      transition: transform 0.3s ease;
    }

    .page-nustar-price__faq-item.active .page-nustar-price__faq-toggle {
      transform: rotate(45deg);
    }

    .page-nustar-price__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 calc(1.5 * var(--spacing-unit));
      color: #ccc;
      font-size: 0.95em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-nustar-price__faq-item.active .page-nustar-price__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: var(--spacing-unit) calc(1.5 * var(--spacing-unit)) !important;
      opacity: 1;
    }

    /* Blog Section */
    .page-nustar-price__blog-section {
      background-color: #222;
    }

    .page-nustar-price__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: calc(1.5 * var(--spacing-unit));
    }

    .page-nustar-price__blog-card {
      background-color: #333;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-nustar-price__blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    .page-nustar-price__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-nustar-price__blog-content {
      padding: var(--spacing-unit);
    }

    .page-nustar-price__blog-date {
      font-size: 0.85em;
      color: var(--accent-color);
      margin-bottom: 0.5em;
    }

    .page-nustar-price__blog-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: var(--spacing-unit);
    }

    .page-nustar-price__blog-title a {
      color: var(--primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-nustar-price__blog-title a:hover {
      color: #ff3344;
    }

    .page-nustar-price__blog-summary {
      color: #ccc;
      font-size: 0.9em;
      margin-bottom: calc(1.5 * var(--spacing-unit));
    }

    .page-nustar-price__read-more-button {
      background-color: var(--accent-color);
      color: var(--dark-text-color);
      padding: 8px 15px;
      border-radius: var(--border-radius);
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-nustar-price__read-more-button:hover {
      background-color: #ffd700;
    }

    /* Utility */
    .page-nustar-price__text-center {
      text-align: center;
    }

    /* Floating buttons */
    .page-nustar-price__floating-buttons {
      position: fixed;
      bottom: var(--spacing-unit);
      right: var(--spacing-unit);
      display: flex;
      flex-direction: column;
      gap: var(--spacing-unit);
      z-index: 1000;
    }

    .page-nustar-price__floating-button {
      background-color: var(--primary-color);
      color: var(--text-color);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 120px;
      border: none;
      cursor: pointer;
    }

    .page-nustar-price__floating-button--login {
      background-color: var(--accent-color);
      color: var(--dark-text-color);
    }

    .page-nustar-price__floating-button:hover {
      transform: translateY(-3px);
    }

    .page-nustar-price__floating-button--login:hover {
      background-color: #ffd700;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-nustar-price__hero-section {
        height: 70vh;
      }

      .page-nustar-price__hero-title {
        font-size: 2.5em;
      }

      .page-nustar-price__hero-description {
        font-size: 1em;
      }

      .page-nustar-price__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-nustar-price__section {
        padding: calc(1.5 * var(--spacing-unit)) var(--spacing-unit);
      }

      .page-nustar-price__section-title {
        font-size: 2em;
      }

      .page-nustar-price__feature-item,
      .page-nustar-price__access-button,
      .page-nustar-price__security-item {
        flex: 1 1 100%;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-nustar-price__game-categories,
      .page-nustar-price__promo-grid,
      .page-nustar-price__blog-grid {
        grid-template-columns: 1fr;
      }

      .page-nustar-price__game-image,
      .page-nustar-price__promo-image,
      .page-nustar-price__blog-image {
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
      }

      .page-nustar-price__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-nustar-price__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-nustar-price__floating-buttons {
        bottom: var(--spacing-unit);
        right: var(--spacing-unit);
        left: auto;
        flex-direction: row;
        justify-content: center;
        width: auto;
      }

      .page-nustar-price__floating-button {
        min-width: unset;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-nustar-price__hero-title {
        font-size: 2em;
      }
      .page-nustar-price__section-title {
        font-size: 1.8em;
      }
      .page-nustar-price__floating-buttons {
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        border-top: 1px solid #333;
        background-color: #1a1a1a;
        padding: var(--spacing-unit) 0;
        gap: 0;
        justify-content: space-around;
      }
      .page-nustar-price__floating-button {
        border-radius: 0;
        box-shadow: none;
        flex: 1;
        padding: 10px 5px;
        font-size: 0.85em;
      }
    }