        * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
        }

        body {
          font-family: 'Segoe UI', sans-serif;
          background-color: #101010;
          overflow: hidden;
        }

        .hero {
          position: relative;
          height: 100vh;
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          text-align: center;
          z-index: 2;
          padding: 2em;
        }

        .hero::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: url('/images/curtain.png') no-repeat center center / cover;
          animation: curtainWave 35s ease-in-out infinite alternate;
          z-index: 0;
          opacity: 0.6;
        }

        .hero::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 50%;
          background: linear-gradient(to top, rgba(5, 8, 4, 0.953) 0%, rgba(255, 252, 252, 0) 100%);
          z-index: 1;
          pointer-events: none;
        }

        @keyframes curtainWave {
          0% {
            transform: scale(1);
          }

          50% {
            transform: scale(2.05);
          }

          100% {
            transform: scale(1);
          }
        }

        .content {
          position: relative;
          z-index: 2;
          max-width: 800px;
          width: 100%;
        }

        .content h1,
        .content h2 {
          background: linear-gradient(to right, #ffffff, #fefdfb8a);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          color: transparent;
        }

        @keyframes slide {
          0% {
            opacity: 0;
            transform: translateX(-100px);
          }

          100% {
            opacity: 1;
            transform: translateX(0);
          }
        }

        @keyframes fadeOnly {
          0% {
            opacity: 0;


          }

          100% {
            opacity: 1;
          }
        }

        .content h1 {
          font-size: 3rem;
          font-weight: bold;
          text-transform: uppercase;
          letter-spacing: 1px;
          background: linear-gradient(to right, #ffffff, #fefdfbb6);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          animation: fadeOnly 0s ease-out forwards;
          opacity: 0;
        }


        .content h2 {
          font-size: 1.5rem;
          font-weight: 700;
          /* margin-top: 0.5em; */
          font-weight: bold;
          /* font-style: italic; */
        }

        .content p {
          /* margin-top: 1em; */
          font-size: 14px;
          letter-spacing: 7px;
          font-weight: 600;
          color: linear-gradient(to right, #daf010, #fefdfb8a);

          color: #ccc;

        }

        .mattresslist {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          pointer-events: none;
          z-index: 3;
          overflow: hidden;
        }

        .mattresslist p {
          position: absolute;
          font-size: 14px;
          letter-spacing: 3px;
          font-weight: 600;
          background: linear-gradient(to right, #ffffff, #fefdfb8a);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          opacity: 0;
          animation: floatIn 3s ease-out forwards, float 25s infinite ease-in-out;
          text-shadow: 0 0 8px rgba(223, 246, 18, 0.3);
          transition: all 0.5s ease;
          will-change: transform;
          padding-bottom: 8px;
          /* Space for the line */
        }

        /* Add the animated line */
        .mattresslist p::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          width: 0;
          height: 2px;
          background: linear-gradient(to right, transparent, #dff612cb, transparent);
          transform: translateX(-50%);
          transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
          opacity: 0;
        }

        .mattresslist p:hover::after {
          width: 100%;
          opacity: 1;
        }

        /* Animation for the line on load */
        .mattresslist p:nth-child(1)::after {
          animation: lineReveal 1s ease-out 1.3s forwards;
        }

        .mattresslist p:nth-child(2)::after {
          animation: lineReveal 1s ease-out 1.6s forwards;
        }

        .mattresslist p:nth-child(3)::after {
          animation: lineReveal 1s ease-out 1.9s forwards;
        }

        .mattresslist p:nth-child(4)::after {
          animation: lineReveal 1s ease-out 2.2s forwards;
        }

        .mattresslist p:nth-child(5)::after {
          animation: lineReveal 1s ease-out 2.5s forwards;
        }

        .mattresslist p:nth-child(6)::after {
          animation: lineReveal 1s ease-out 2.8s forwards;
        }

        @keyframes lineReveal {
          0% {
            width: 0;
            opacity: 0;
          }

          100% {
            width: 100%;
            opacity: 0.7;
          }
        }


        /* Strategic positioning - avoids center area */
        .mattresslist p:nth-child(1) {
          top: 15%;
          left: 10%;
          animation-delay: 0.3s, 0.3s;
        }

        .mattresslist p:nth-child(2) {
          top: 70%;
          left: 15%;
          animation-delay: 0.6s, 0.6s;
        }

        .mattresslist p:nth-child(3) {
          top: 16%;
          left: 80%;
          animation-delay: 0.9s, 0.9s;
        }

        .mattresslist p:nth-child(4) {
          top: 70%;
          left: 75%;
          animation-delay: 1.2s, 1.2s;
        }

        .mattresslist p:nth-child(5) {
          top: 43%;
          left: 5%;
          animation-delay: 1.5s, 1.5s;
        }

        .mattresslist p:nth-child(6) {
          top: 43%;
          left: 80%;
          animation-delay: 1.8s, 1.8s;
        }

        /* Hover effects */
        .mattresslist p:hover {
          pointer-events: auto;
          transform: scale(1.4);
          text-shadow: 0 0 20px rgba(223, 246, 18, 0.8);
          z-index: 4;
        }

        /* Animations */
        @keyframes floatIn {
          0% {
            opacity: 0;
            transform: translateY(20px) scale(0.8);
          }

          100% {
            opacity: 0.85;
            transform: translateY(0) scale(1);
          }
        }

        @keyframes float {

          0%,
          100% {
            transform: translate(0, 0) rotate(0deg);
          }

          25% {
            transform: translate(5px, 8px) rotate(0.5deg);
          }

          50% {
            transform: translate(-5px, 5px) rotate(-0.5deg);
          }

          75% {
            transform: translate(3px, -3px) rotate(0.3deg);
          }
        }

        /* and so on... */

        .content h6 {
          /* margin-top: 1em; */
          font-size: 25px;
          letter-spacing: 2px;
          font-weight: 700;
          /* color: linear-gradient(to right, #e5ff00, #ffaa00); */

          color: #dff612cb;
          animation: fadeOnly 3.2s ease-out forwards;

        }

        .mattress {
          max-width: 100%;
          width: 600px;
          margin-top: 2em;
          border-radius: 8px;
        }

        .bottom-banner {
          position: relative;
          margin-top: 1em;
          width: 100%;
          text-align: center;
          z-index: 3;
        }

        .bottom-banner a {
          color: #f5f5f596;
          font-size: 12px;
          text-decoration: none;
          font-weight: 400;
          padding: 0.4em 1em;
          border-radius: 6px;
          transition: background 0.3s ease;
        }

        .bottom-banner a:hover {
          background: rgba(255, 255, 255, 0.1);
        }

        @media screen and (max-width: 768px) {
          .hero {
            flex-direction: column;
            justify-content: flex-start;
            padding-bottom: 180px;
            /* Space for mattress list */
          }

          .mattresslist p {
            position: absolute;
            font-size: 14px;
            letter-spacing: 3px;
            font-weight: 600;
            background: linear-gradient(to right, #ffffff, #fefdfb8a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0;
            animation: floatIn 3s ease-out forwards, float 25s infinite ease-in-out;
            text-shadow: 0 0 8px rgba(223, 246, 18, 0.3);
            transition: all 0.5s ease;
            will-change: transform;
            padding-bottom: 8px;
            /* Space for the line */
          }

          /* Add the animated line */
          /* .mattresslist p::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #dff612cb, transparent);
  transform: translateX(-50%);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
} */

          /* Strategic positioning - avoids center area */
          .mattresslist p:nth-child(1) {
            top: 85%;
            left: 25%;
            animation-delay: 0.3s, 0.3s;
          }

          .mattresslist p:nth-child(2) {
            top: 70%;
            left: 10%;
            animation-delay: 0.6s, 0.6s;
          }

          .mattresslist p:nth-child(3) {
            top: 79%;
            left: 52%;
            animation-delay: 0.9s, 0.9s;
          }

          .mattresslist p:nth-child(4) {
            top: 70%;
            left: 48%;
            animation-delay: 1.2s, 1.2s;
          }

          .mattresslist p:nth-child(5) {
            top: 79%;
            left: 11%;
            animation-delay: 1.5s, 1.5s;
          }

          .mattresslist p:nth-child(6) {
            top: 90%;
            left: 25%;
            animation-delay: 1.8s, 1.8s;
          }

          .mattresslist p:hover {
            transform: scale(1.05);
          }

          .mattresslist p::after {
            display: none;
            /* Remove desktop line animation */
          }

          /* Adjust content spacing */
          .content {
            margin-bottom: 20px;
          }

          .mattress {
            max-width: 90%;
            margin: 1em auto;
          }
        }

        @media screen and (max-width: 480px) {
          .mattresslist p {
            font-size: 10px;
            padding: 5px 8px;
            flex: 1 0 calc(50% - 16px);
            max-width: calc(50% - 16px);
          }

          .hero {
            padding-bottom: 160px;
          }
        }