      /* Reset & base */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      /* Custom scrollbar */
      ::-webkit-scrollbar {
        width: 8px;
      }

      ::-webkit-scrollbar-track {
        background: rgba(161, 138, 255, 0.1);
      }

      ::-webkit-scrollbar-thumb {
        background: linear-gradient(45deg, #a18aff, #6e3eff);
        border-radius: 4px;
      }

      ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(45deg, #b88eff, #8e6eff);
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        height: 200vh;
        /* Extended for more content */
        overflow-x: hidden;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        transition: background 0.3s ease;
        background: #0d0d1a;
      }

      .header {
        height: 100vh;
        overflow: hidden;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        z-index: 1;
      }

      /* Logo with hover effect */
      .logo {
        position: absolute;
        top: 30px;
        left: 30px;
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 2;
        transition: transform 0.3s ease;
        cursor: pointer;
      }

      .logo:hover {
        transform: scale(1.05) rotate(2deg);
      }

      .logo-placeholder {
        width: 50px;
        height: 50px;
        background: linear-gradient(45deg, #a18aff, #6e3eff);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: white;
        animation: logoFloat 3s ease-in-out infinite;
      }

      @keyframes logoFloat {

        0%,
        100% {
          transform: translateY(0px);
        }

        50% {
          transform: translateY(-10px);
        }
      }

      .logo-text {
        font-size: 1.5em;
        color: #a18aff;
        text-shadow: 0 0 5px #6e3eff;
        font-weight: bold;
      }

      /* Enhanced main header text */
      h1 {
        font-size: 3em;
        text-align: center;
        color: #a18aff;
        text-shadow: 0 0 15px #000000, 0 0 30px #6e3eff;
        animation: glow 3s ease-in-out infinite alternate;
        z-index: 1;
        transition: transform 0.3s ease;
        cursor: pointer;
      }

      .service-header h1 {
        font-size: 3em;
        text-align: center;
        color: #6844f8;
        text-shadow: 0 0 15px #000000, 0 0 30px #6e3eff;
        animation: glow 3s ease-in-out infinite alternate;
        z-index: 1;
        transition: transform 0.3s ease;
        cursor: pointer;
      }


      h1:hover {
        transform: scale(1.05);
        animation-duration: 1s;
      }

      p {
        font-size: 1.2em;
        margin-top: 10px;
        color: #ddd;
        text-shadow: 0 0 5px #a18aff;
        opacity: 0;
        animation: fadeInUp 1s ease 0.5s forwards;
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes glow {
        from {
          text-shadow: 0 0 10px #a18aff, 0 0 20px #6e3eff;
        }

        to {
          text-shadow: 0 0 25px #fff, 0 0 35px #8e6eff;
        }
      }

      /* Enhanced portal button */
      .portal-button {
        margin-top: 30px;
        padding: 15px 40px;
        font-size: 1.2em;
        border: 2px solid #a18aff;
        background: transparent;
        color: #a18aff;
        cursor: pointer;
        border-radius: 30px;
        transition: all 0.3s ease;
        box-shadow: 0 0 10px #a18aff;
        z-index: 1;
        position: relative;
        overflow: hidden;
        opacity: 0;
        animation: fadeInUp 1s ease 1s forwards;
      }

      .portal-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
        transition: left 0.5s ease;
      }

      .portal-button:hover {
        background: #a18aff;
        color: #0d0d1a;
        box-shadow: 0 0 20px #a18aff, 0 0 40px #6e3eff;
        transform: translateY(-2px);
      }

      .portal-button:hover::before {
        left: 100%;
      }

      .portal-button:active {
        transform: translateY(0px);
      }

      /* Optimized stars with performance improvements */
      .stars {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow: hidden;
      }

      .star {
        position: absolute;
        background: white;
        border-radius: 50%;
        opacity: 0.8;
        will-change: opacity, transform;
      }

      .star.small {
        width: 1px;
        height: 1px;
        animation: twinkle 3s infinite ease-in-out;
      }

      .star.medium {
        width: 2px;
        height: 2px;
        animation: twinkle 2s infinite ease-in-out;
      }

      .star.large {
        width: 3px;
        height: 3px;
        animation: twinkle 4s infinite ease-in-out;
        box-shadow: 0 0 4px white;
      }

      .star.shooting {
        width: 2px;
        height: 2px;
        background: linear-gradient(45deg, white, #a18aff);
        animation: shootingStar 3s linear infinite;
      }

      @keyframes twinkle {

        0%,
        100% {
          opacity: 0.2;
          transform: scale(1);
        }

        50% {
          opacity: 1;
          transform: scale(1.2);
        }
      }

      @keyframes shootingStar {
        0% {
          transform: translateX(-100px) translateY(100px);
          opacity: 0;
        }

        10% {
          opacity: 1;
        }

        90% {
          opacity: 1;
        }

        100% {
          transform: translateX(100vw) translateY(-100px);
          opacity: 0;
        }
      }

      /* Enhanced sun with rays */
      .sun {
        position: absolute;
        top: 20%;
        left: 80%;
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, #ffff00 0%, #ffa500 100%);
        border-radius: 50%;
        box-shadow: 0 0 50px 20px rgba(255, 255, 0, 0.3),
          0 0 100px 40px rgba(255, 165, 0, 0.1);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 0;
      }

      .sun::before {
        content: "";
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        border: 2px solid rgba(255, 255, 0, 0.3);
        border-radius: 50%;
        animation: sunRotate 10s linear infinite;
      }

      @keyframes sunRotate {
        from {
          transform: rotate(0deg);
        }

        to {
          transform: rotate(360deg);
        }
      }

      /* Interactive clouds */
      .cloud {
        position: fixed;
        /* Changed to fixed so they stay visible during scroll */
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        width: 150px;
        height: 60px;
        filter: blur(1px);
        opacity: 0;
        animation: moveClouds 40s linear infinite;
        z-index: 0;
        /* Behind everything */
        transition: transform 0.3s ease;
        cursor: pointer;
      }

      .cloud:hover {
        transform: scale(1.1);
        filter: blur(0px);
      }

      .cloud::before,
      .cloud::after {
        content: "";
        position: absolute;
        background: rgba(255, 255, 255, 0.9);
        width: 80px;
        height: 60px;
        border-radius: 50%;
        z-index: 2;
      }

      .cloud::before {
        top: -20px;
        left: 10px;
      }

      .cloud::after {
        top: -10px;
        right: 10px;
      }

      @keyframes moveClouds {
        0% {
          transform: translateX(-200px);
        }

        100% {
          transform: translateX(calc(100vw + 200px));
        }
      }

      /* Enhanced content section */
      .content {
        min-height: 100vh;
        padding: 50px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        color: #333;
        position: relative;
      }

      .services {
        position: relative;
        width: 70%;
        max-width: 1200px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        padding: 20px;
      }

      .service-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
        transform: translateY(20px);
        opacity: 0;
        animation: slideInUp 0.6s ease forwards;
        z-index: 3;
      }

      .service-card:nth-child(1) {
        animation-delay: 0.1s;
      }

      .service-card:nth-child(2) {
        animation-delay: 0.3s;
      }

      .service-card:nth-child(3) {
        animation-delay: 0.5s;
      }

      @keyframes slideInUp {
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }

      .service-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(161, 138, 255, 0.2);
      }

      .service-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(45deg, #a18aff, #6e3eff);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
      }

      .service-card:hover .service-icon {
        transform: rotate(360deg) scale(1.1);
      }

      .service-title {
        font-size: 1.5em;
        color: #333;
        margin-bottom: 15px;
        font-weight: bold;
      }

      .service-description {
        color: #666;
        line-height: 1.6;
      }

      /* Parallax elements */
      .parallax-element {
        position: fixed;
        pointer-events: none;
        z-index: 0;
      }

      .floating-orb {
        width: 20px;
        height: 20px;
        background: radial-gradient(circle, #a18aff, transparent);
        border-radius: 50%;
        animation: floatOrb 6s ease-in-out infinite;
      }

      @keyframes floatOrb {

        0%,
        100% {
          transform: translateY(0px) translateX(0px);
        }

        25% {
          transform: translateY(-20px) translateX(10px);
        }

        50% {
          transform: translateY(-10px) translateX(-10px);
        }

        75% {
          transform: translateY(-30px) translateX(5px);
        }
      }

      /* Scroll progress indicator */
      .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: rgba(161, 138, 255, 0.2);
        z-index: 1000;
      }

      .scroll-progress-bar {
        height: 100%;
        background: linear-gradient(90deg, #a18aff, #6e3eff);
        width: 0%;
        transition: width 0.1s ease;
      }

      /* Responsive improvements */
      @media (max-width: 768px) {
        h1 {
          font-size: 2em;
        }

        .logo {
          top: 20px;
          left: 20px;
        }

        .services {
          width: 95%;
          grid-template-columns: 1fr;
        }

        .portal-button {
          padding: 12px 30px;
          font-size: 1em;
        }
      }