.hero-section {
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
      background: var(--gradient-dark);
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -5%;
      right: -3%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      animation: pulse 4s ease-in-out infinite;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -5%;
      left: -3%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 51, 102, 0.12) 0%, transparent 70%);
      border-radius: 50%;
      animation: pulse 5s ease-in-out infinite reverse;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 0.6;
      }
      50% {
        transform: scale(1.1);
        opacity: 1;
      }
    }

    .hero-section .container {
      position: relative;
      z-index: 1;
      max-width: 900px;
      text-align: center;
    }

    .hero-section h1 {
      background: linear-gradient(135deg, var(--primary-cyan), var(--accent-coral));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1.5rem;
      animation: fadeInUp 0.8s ease;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-section p {
      font-size: 1.125rem;
      line-height: 1.8;
      margin-bottom: 2.5rem;
      animation: fadeInUp 0.8s ease 0.2s backwards;
    }

    .hero-section .cta-button {
      padding: 18px 48px;
      font-size: 1.125rem;
      animation: fadeInUp 0.8s ease 0.4s backwards;
    }

    .quick-links {
      padding: 4rem 0;
      background: var(--dark-navy);
    }

    .quick-links h2 {
      text-align: center;
      margin-bottom: 3rem;
      background: linear-gradient(135deg, var(--text-primary), var(--primary-cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .link-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .link-card {
      background: var(--light-navy);
      padding: 2rem;
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 1rem;
      text-decoration: none;
      color: var(--text-primary);
      transition: all 0.4s ease;
      border: 1px solid rgba(0, 217, 255, 0.1);
      position: relative;
      overflow: hidden;
    }

    .link-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .link-card:hover::before {
      left: 100%;
    }

    .link-card:hover {
      transform: translateX(8px);
      border-color: var(--primary-cyan);
      box-shadow: var(--shadow-glow);
      color: var(--primary-cyan);
    }

    .link-card .icon {
      font-size: 2rem;
      flex-shrink: 0;
      filter: grayscale(0.3);
      transition: filter 0.3s ease;
    }

    .link-card:hover .icon {
      filter: grayscale(0);
    }

    .link-card span:last-child {
      font-weight: 500;
      font-size: 1.05rem;
    }

    .registration {
      padding: 5rem 0;
      background: var(--mid-navy);
      position: relative;
    }

    .registration h2 {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .registration > .container > p {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 3rem;
      font-size: 1.1rem;
    }

    .timeline-item {
      background: var(--light-navy);
      border-radius: 16px;
      padding: 2.5rem;
      margin-bottom: 2rem;
      border-left: 4px solid var(--primary-cyan);
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
    }

    .timeline-item:hover {
      transform: translateX(8px);
      border-left-width: 6px;
      box-shadow: var(--shadow-lg);
    }

    .timeline-item h3 {
      color: var(--primary-cyan);
      margin-bottom: 1.5rem;
    }

    .games {
      padding: 5rem 0;
      background: var(--dark-navy);
    }

    .games h2 {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .games > .container > p {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 3rem;
      font-size: 1.1rem;
    }

    .games article {
      margin-bottom: 3rem;
    }

    .games article h3 {
      color: var(--primary-cyan);
      margin-bottom: 1.5rem;
      font-size: 2rem;
    }

    .pokies-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .category-card {
      background: var(--light-navy);
      border-radius: 16px;
      padding: 2rem;
      border: 1px solid rgba(0, 217, 255, 0.1);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .category-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--gradient-main);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .category-card:hover::before {
      transform: scaleX(1);
    }

    .category-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-glow);
      border-color: var(--primary-cyan);
    }

    .category-card h4 {
      color: var(--text-primary);
      margin-bottom: 1rem;
    }

    .mobile {
      padding: 5rem 0;
      background: var(--mid-navy);
    }

    .mobile h2 {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .mobile > .container > p {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 3rem;
      font-size: 1.1rem;
    }

    .feature-block {
      background: var(--light-navy);
      border-radius: 16px;
      padding: 2.5rem;
      margin-bottom: 2rem;
      border: 1px solid rgba(0, 217, 255, 0.1);
      transition: all 0.3s ease;
    }

    .feature-block:hover {
      border-color: var(--primary-cyan);
      box-shadow: var(--shadow-lg);
    }

    .feature-block h3 {
      color: var(--primary-cyan);
      margin-bottom: 1.5rem;
    }

    .benefits {
      padding: 5rem 0;
      background: var(--dark-navy);
    }

    .benefits h2 {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .benefits > .container > p {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 3rem;
      font-size: 1.1rem;
    }

    .benefit-card {
      background: var(--light-navy);
      border-radius: 16px;
      padding: 2.5rem;
      margin-bottom: 2rem;
      border: 1px solid rgba(0, 217, 255, 0.1);
      transition: all 0.3s ease;
    }

    .benefit-card:hover {
      border-color: var(--primary-cyan);
      box-shadow: var(--shadow-lg);
    }

    .benefit-card h3 {
      color: var(--primary-cyan);
      margin-bottom: 1.5rem;
      font-size: 1.75rem;
    }

    .benefit-card h4 {
      color: var(--text-primary);
      margin-top: 1.5rem;
      margin-bottom: 1rem;
    }

    .licensing {
      padding: 5rem 0;
      background: var(--mid-navy);
    }

    .licensing h2 {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .licensing > .container > p {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 3rem;
      font-size: 1.1rem;
    }

    .highlight-box {
      background: var(--light-navy);
      border-radius: 16px;
      padding: 2.5rem;
      margin-bottom: 2rem;
      border-left: 4px solid var(--accent-coral);
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
    }

    .highlight-box:hover {
      transform: translateX(8px);
      border-left-width: 6px;
      box-shadow: var(--shadow-lg);
    }

    .highlight-box h3 {
      color: var(--accent-coral);
      margin-bottom: 1.5rem;
    }

    .faq {
      padding: 5rem 0;
      background: var(--dark-navy);
    }

    .faq h2 {
      text-align: center;
      margin-bottom: 3rem;
    }

    .accordion-item {
      background: var(--light-navy);
      border-radius: 12px;
      margin-bottom: 1rem;
      overflow: hidden;
      border: 1px solid rgba(0, 217, 255, 0.1);
      transition: all 0.3s ease;
    }

    .accordion-item:hover {
      border-color: var(--primary-cyan);
    }

    .accordion-header button {
      width: 100%;
      background: transparent;
      border: none;
      padding: 1.5rem;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      color: var(--text-primary);
      font-size: 1.1rem;
      font-weight: 600;
      transition: all 0.3s ease;
      min-height: 44px;
    }

    .accordion-header button:hover {
      color: var(--primary-cyan);
    }

    .accordion-header button .icon::after {
      content: '+';
      font-size: 1.5rem;
      transition: transform 0.3s ease;
      display: block;
    }

    .accordion-header button[aria-expanded="true"] .icon::after {
      transform: rotate(45deg);
    }

    .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding: 0 1.5rem 0.3rem 1.5rem !important;
    }

    .accordion-body.active {
      max-height: 1000px;
      padding: 0 1.5rem 0.3rem 1.5rem !important;
    }

    .cta-section {
      padding: 6rem 0;
      background: var(--gradient-dark);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      animation: pulse 6s ease-in-out infinite;
    }

    .cta-section .container {
      position: relative;
      z-index: 1;
    }

    .cta-section h2 {
      margin-bottom: 1rem;
      background: linear-gradient(135deg, var(--text-primary), var(--primary-cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cta-section p {
      font-size: 1.125rem;
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-section .cta-button {
      padding: 18px 48px;
      font-size: 1.125rem;
    }

    @media (max-width: 767px) {
      .hero-section {
        padding: 3rem 0;
      }

      .hero-section::before,
      .hero-section::after {
        width: 300px;
        height: 300px;
      }

      .quick-links,
      .registration,
      .games,
      .mobile,
      .benefits,
      .licensing,
      .faq {
        padding: 3rem 0;
      }

      .link-grid {
        grid-template-columns: 1fr;
      }

      .pokies-categories {
        grid-template-columns: 1fr;
      }

      .timeline-item,
      .feature-block,
      .benefit-card,
      .highlight-box {
        padding: 1.5rem;
      }

      .cta-section {
        padding: 3rem 0;
      }

      .cta-section::before {
        width: 400px;
        height: 400px;
      }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .link-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .pokies-categories {
        grid-template-columns: repeat(2, 1fr);
      }
    }