
    /* CSS Reset & Base for page-cardgameforprizes */
    .page-cardgameforprizes {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333333; /* Dark grey for text */
      background-color: #f0f2f5; /* Light grey background */
      margin: 0;
      padding: 0;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-cardgameforprizes a {
      color: #004d40; /* Dark green for links */
      text-decoration: none;
    }

    .page-cardgameforprizes a:hover {
      text-decoration: underline;
    }

    .page-cardgameforprizes .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
    }

    .page-cardgameforprizes .text-center {
      text-align: center;
    }

    /* Hero Section */
    .page-cardgameforprizes .hero-section {
      background: linear-gradient(135deg, #004d40, #00665c); /* Dark green gradient */
      color: #ffffff;
      padding: 4rem 1rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-cardgameforprizes .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:pattern:geometric, abstract, subtle]');
      background-size: cover;
      opacity: 0.1;
      z-index: 0;
    }

    .page-cardgameforprizes .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-cardgameforprizes .hero-section h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #ffcc00; /* Gold for H1 */
      line-height: 1.2;
    }
    .page-cardgameforprizes .hero-section h1 strong {
      color: #ffffff;
    }

    .page-cardgameforprizes .hero-section p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }

    .page-cardgameforprizes .hero-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      margin-top: 2rem;
      display: block; /* Ensure image is block-level for margin auto to work */
      margin-left: auto;
      margin-right: auto;
    }

    /* Section Styling */
    .page-cardgameforprizes .section {
      padding: 3rem 1rem;
      background-color: #ffffff;
      margin-bottom: 1rem;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .page-cardgameforprizes .section:nth-of-type(even) {
      background-color: #f8f8f8;
    }

    .page-cardgameforprizes .section h2 {
      font-size: 2rem;
      color: #004d40; /* Dark green for H2 */
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .page-cardgameforprizes .section h3 {
      font-size: 1.5rem;
      color: #00665c; /* Slightly lighter green for H3 */
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    .page-cardgameforprizes .section p {
      margin-bottom: 1rem;
    }

    .page-cardgameforprizes .section ul {
      list-style: disc;
      margin-left: 20px;
      margin-bottom: 1rem;
    }

    .page-cardgameforprizes .section ol {
      list-style: decimal;
      margin-left: 20px;
      margin-bottom: 1rem;
    }

    .page-cardgameforprizes .section li {
      margin-bottom: 0.5rem;
    }

    /* Game Cards */
    .page-cardgameforprizes .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .page-cardgameforprizes .game-card {
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-align: center;
    }

    .page-cardgameforprizes .game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .page-cardgameforprizes .game-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-cardgameforprizes .game-card-content {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-cardgameforprizes .game-card h3 {
      font-size: 1.3rem;
      color: #004d40;
      margin-top: 0;
      margin-bottom: 0.8rem;
    }

    .page-cardgameforprizes .game-card p {
      font-size: 0.95rem;
      color: #555555;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }

    .page-cardgameforprizes .game-card .btn-play {
      display: inline-block;
      background-color: #ffcc00; /* Gold button */
      color: #004d40; /* Dark green text */
      padding: 0.8rem 1.5rem;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      text-transform: uppercase;
    }

    .page-cardgameforprizes .game-card .btn-play:hover {
      background-color: #e6b800; /* Darker gold on hover */
    }

    /* Floating CTA Button */
    .page-cardgameforprizes .floating-cta {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ffcc00; /* Gold */
      color: #004d40; /* Dark green */
      padding: 1rem 2rem;
      border-radius: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      font-size: 1.2rem;
      font-weight: bold;
      text-align: center;
      z-index: 1000;
      animation: pulse 2s infinite;
      display: block; /* Ensure it's block for full width on mobile */
      width: calc(100% - 40px); /* Adjust for padding */
      max-width: 350px;
    }

    .page-cardgameforprizes .floating-cta:hover {
      background-color: #e6b800;
      text-decoration: none;
    }

    @keyframes pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.03); }
      100% { transform: translateX(-50%) scale(1); }
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-cardgameforprizes .hero-section {
        padding: 6rem 1rem;
      }
      .page-cardgameforprizes .hero-section h1 {
        font-size: 3.5rem;
      }
      .page-cardgameforprizes .hero-section p {
        font-size: 1.2rem;
      }
      .page-cardgameforprizes .section {
        padding: 4rem 1rem;
      }
      .page-cardgameforprizes .section h2 {
        font-size: 2.5rem;
      }
      .page-cardgameforprizes .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }
      .page-cardgameforprizes .floating-cta {
        width: auto;
        max-width: none;
        bottom: 30px;
        font-size: 1.3rem;
      }
    }

    @media (min-width: 1024px) {
      .page-cardgameforprizes .container {
        padding: 1rem 2rem;
      }
    }
  