
          @font-face {
            font-family: 'Poppins';
            src: url('fonts/poppins-300.woff2') format('woff2');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
          }

          @font-face {
            font-family: 'Poppins';
            src: url('fonts/poppins-regular.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
          }

          @font-face {
            font-family: 'Poppins';
            src: url('fonts/poppins-600.woff2') format('woff2');
            font-weight: 600;
            font-style: normal;
            font-display: swap;
          }
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          font-family: 'Poppins', sans-serif;
          scroll-behavior: smooth;
        }
    
        body {
          font-family: 'Poppins', Arial, sans-serif;
          background: url('tante777_bg2.webp') no-repeat center center/cover;
          backdrop-filter: blur(12px);
          background-size: cover;
          background-attachment: fixed;
          padding: 20px;
          display: flex;
          flex-direction: column;
          align-items: center;
        }
    
        .logo-container {
          text-align: center;
          margin-bottom: 20px;
        }
    
        .logo {
          width: 280px;
          max-width: 90%;
        }
    
        .btn-container {
          background: rgba(255, 255, 255, 0.733);
          padding: 20px;
          border-radius: 12px;
          max-width: 1200px;
          width: 100%;
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          align-items: center;
        }
    
        .btn-action {
            padding: 10px 25px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            color: #000;
            font-weight: bold;
            background: linear-gradient(270deg, #fff9a8, #273b37, #fff9a8);
            background-size: 600% 600%;
            animation: rainbowBG 5s ease infinite;
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            margin-right: 10px;
        }
        @keyframes rainbowBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
    
        .btn-action:hover {
          background: linear-gradient(45deg, #00ffc8, #fff6a0);
          box-shadow: 0 0 15px #ff0059, 0 0 25px #ff8c00;
          transform: scale(1.05);
        }
    
        .nav-links {
          display: flex;
          gap: 15px;
        }
    
        .btn-nav {
          color: #000;
          font-weight: bold;
          text-decoration: none;
          position: relative;
        }
    
        .btn-nav::after {
          content: "";
          position: absolute;
          width: 100%;
          height: 2px;
          bottom: -2px;
          left: 0;
          background-color: #000;
          transform: scaleX(0);
          transition: transform 0.3s ease;
          transform-origin: right;
        }
    
        .btn-nav:hover::after {
          transform: scaleX(1);
          transform-origin: left;
        }
    
        .main-layout {
          display: flex;
          flex-wrap: wrap;
          gap: 20px;
          margin-top: 20px;
          max-width: 1200px;
          width: 100%;
        }
    
        .main-image, .text-section, .gallery-section {
          background: rgba(255, 255, 255, 0.801);
          border-radius: 12px;
          box-shadow: 0 6px 20px rgba(0,0,0,0.2);
          padding: 20px;
        }
    
        .main-image {
          flex: 1;
          min-width: 300px;
        }
    
        .main-image img {
          width: 100%;
          border-radius: 10px;
        }
    
        .text-gallery-wrap {
          flex: 1;
          display: flex;
          flex-direction: column;
          gap: 20px;
          min-width: 300px;
          min-height: 500px;
        }
    
        .text-section h1, .text-section h2, .text-section h3 {
          color: #2f00ff;
        }
    
        .text-section p {
          color: #000000;
          font-size: 14px;
          margin-bottom: 10px;
        }
    
        .gallery-section {
          overflow: hidden;
          width: 100%;
          position: relative;
        }
    
        .scrolling-wrapper {
          display: flex;
          gap: 10px;
          animation: scrollLeft 30s linear infinite;
          width: max-content;
          white-space: nowrap;
        }
    
        .gallery-section:hover .scrolling-wrapper {
          animation-play-state: paused;
        }
    
        .scrolling-wrapper img {
          height: 200px;
          border-radius: 8px;
          flex-shrink: 0;
        }
    
        @keyframes scrollLeft {
          0% { transform: translateX(0); }
          100% { transform: translateX(-50%); }
        }
    
        .faq-section, .policy-section {
            margin-top: 30px;
            background: rgba(255, 255, 255, 0.801);
            backdrop-filter: blur(8px);
            padding: 20px;
            border-radius: 12px;
            max-width: 1200px;
            width: 100%;
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
        }
        @keyframes rainbowBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
            }

    
        .faq-item h3 {
          font-size: 18px;
          color: #2f00ff;
        }
    
        .faq-item p {
          color: #000000;
          font-size: 16px;
          margin-top: 5px;
        }
    
        .policy-list {
          list-style: none;
          padding-left: 0;
        }
    
        .policy-list li {
          margin-bottom: 15px;
        }
    
        .policy-list li strong {
          display: block;
          margin-bottom: 5px;
          font-size: 18px;
          color:  #2f00ff;
        }
    
        footer {
          text-align: center;
          padding: 15px 0;
          font-size: 14px;
          color: #fff;
          background: linear-gradient(to right, #333, #000);
          margin-top: 20px;
          width: 100vw;
          margin-left: calc(-50vw + 50%);
        }
        @media (max-width: 768px) {
        .logo-container {
            text-align: center;
            margin-bottom: 10px;
        }
        .logo {
            width: 180px;
            height: auto;
            margin: 0 auto;
        }
        .btn-container {
            flex-direction: column;
            align-items: center;
            gap: 10px;
            text-align: center;
            background-color: rgba(255, 255, 255, 0.76);
            padding: 15px;
            border-radius: 12px;
        }
        .btn-container > div {
            width: 100%;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .btn-container .btn-action {
            padding: 10px 20px;
            min-width: 120px;
            max-width: 180px;
            flex: 1;
            text-align: center;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
        }
        .text-gallery-wrap {
            gap: 10px;
        }
        .scrolling-wrapper img {
            height: 140px;
        }
        .text-section h1 {
            font-size: 22px;
            text-align: center;
        }
        .text-section h2, .text-section h3 {
            text-align: center;
        }
        .text-section p {
            font-size: 14px;
            text-align: justify;
        }
        .gallery-section {
            padding: 10px;
        }
        .main-image img {
            border-radius: 10px;
            width: 100%;
            height: auto;
        }
        .faq-section, .policy-section {
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 16px;
        }
        .faq-item p {
            font-size: 14px;
        }
        .policy-list li p {
            font-size: 14px;
        }
      } 
      .back-to-top {
        position: fixed; /* Ini wajib fixed */
        bottom: 30px;
        right: 30px;
        background: #ff0066;
        color: white;
        font-size: 20px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        text-align: center;
        line-height: 45px;
        text-decoration: none;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        z-index: 9999;
        opacity: 1; /* Langsung tampil */
        transition: background 0.3s, transform 0.3s;
      }
      
      .back-to-top:hover {
        background: #2f00ff;
        transform: scale(1.1);
      }

      
      