
        
        html, body {
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    margin: 0;
    padding: 0;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #525963 0%, #313C42 40%, #101818 100%);
            color: #ffffff;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(107, 255, 198, 0.3);
            position: relative;
            overflow: hidden;
            text-align: center;
                padding: 10px 18px;             /* Slightly tighter padding */
    border-radius: 5px;            /* Squarish look */
    font-size: 0.8rem;              /* Smaller font to fit more easily */
    min-width: 100px;               /* Optional: makes each button consistent */
    flex: none;                     /* Prevents stretching */
    white-space: nowrap;           /* Keeps text on one line */
}


       

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(38, 209, 252, 0.2), transparent);
            transition: left 0.5s ease;
        }
    .button-container {
               display: flex;
    flex-direction: row;            /* Forces horizontal layout */
    gap: 20px;                      /* Adds spacing between buttons */
    justify-content: center;       /* Centers buttons horizontally */
    flex-wrap: nowrap;             /* Prevent wrapping on smaller screens */
}

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(107, 225, 255, 0.4);
        }

        /* connect Section */
        .connect {
            padding: 100px 0;
            background: rgba(255, 255, 255, 0.02);
            flex: 1;
        }

        .connect h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .connect-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #ffffff;
            text-align: center;
        }

        .feature-card .desc {
            opacity: 0.8;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .thumb {
            width: 100%;
            max-width: 250px;
            border-radius: 12px;
            margin: 0 auto 20px auto;
            display: block;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

    

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.5);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: auto;
        }

        .footer-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .footer-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-content p {
            opacity: 0.7;
            margin-bottom: 30px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            transform: translateY(-2px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .connect-grid {
                grid-template-columns: 1fr;
            }
            
            .button-container {
                flex-direction: column;
                gap: 10px;
            }
            
            .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
        }

        /* Scroll effects */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .animated-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            background: linear-gradient(135deg, #525963 0%, #313C42 40%, #101818 100%);
            opacity: 1;
        }

        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite ease-in-out;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #00d4ff, #0078d4);
            border-radius: 50%;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 20s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 60px;
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            border-radius: 30px;
            top: 60%;
            right: 15%;
            animation-delay: -5s;
            animation-duration: 25s;
        }

        .shape:nth-child(3) {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #4ecdc4, #44a08d);
            border-radius: 20px;
            top: 40%;
            left: 20%;
            animation-delay: -10s;
            animation-duration: 18s;
        }

        .shape:nth-child(4) {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #ffeaa7, #fdcb6e);
            border-radius: 50%;
            top: 80%;
            left: 70%;
            animation-delay: -15s;
            animation-duration: 22s;
        }

        .shape:nth-child(5) {
            width: 140px;
            height: 70px;
            background: linear-gradient(45deg, #a29bfe, #6c5ce7);
            border-radius: 35px;
            top: 10%;
            right: 25%;
            animation-delay: -8s;
            animation-duration: 28s;
        }

        .shape:nth-child(6) {
            width: 90px;
            height: 90px;
            background: linear-gradient(45deg, #fd79a8, #e84393);
            border-radius: 15px;
            top: 70%;
            left: 5%;
            animation-delay: -12s;
            animation-duration: 16s;
        }

        .shape:nth-child(7) {
            width: 110px;
            height: 55px;
            background: linear-gradient(45deg, #00b894, #00a085);
            border-radius: 27px;
            top: 30%;
            right: 40%;
            animation-delay: -3s;
            animation-duration: 24s;
        }

        .shape:nth-child(8) {
            width: 75px;
            height: 75px;
            background: linear-gradient(45deg, #e17055, #d63031);
            border-radius: 50%;
            top: 50%;
            left: 80%;
            animation-delay: -18s;
            animation-duration: 19s;
        }

        @keyframes float {
            0% { 
                transform: translateY(0px) translateX(0px) rotate(0deg);
                opacity: 0.1;
            }
            25% { 
                transform: translateY(-50px) translateX(30px) rotate(90deg);
                opacity: 0.2;
            }
            50% { 
                transform: translateY(-20px) translateX(-40px) rotate(180deg);
                opacity: 0.15;
            }
            75% { 
                transform: translateY(-80px) translateX(20px) rotate(270deg);
                opacity: 0.25;
            }
            100% { 
                transform: translateY(0px) translateX(0px) rotate(360deg);
                opacity: 0.1;
            }
        }

        .debug {
            background: rgba(255, 0, 0, 0.1);
            border: 1px solid rgba(255, 0, 0, 0.3);
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
            color: #ff6b6b;
        }
  
.price-tag {
    color: #ffc42b;
    font-weight: bold;
    display: flex;
    align-items: center;
    font-family: 'Press Start 2P', sans-serif;
    gap: 6px;
}
        .price-tag img {
            width: 18px;
            height: 18px;
        }
        .product-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.85rem;
            font-weight: bold;
        }
        .product-type {
            color: #ffffffdd;
            font-weight: 500;
            background: rgba(58, 54, 54, 0.41);
            padding: 4px 8px;
            border-radius: 4px;
        }

         .bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, #3335c7 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, #4ecdc4 0%, transparent 60%),
                radial-gradient(circle at 40% 40%, #45b7d1 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
    /* You can adjust the duration for faster/slower pulse */
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.7;
    }
}

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(15px) rotate(240deg); }
        }

        
.ocean { 
  height: 5%;
  width:100%;
  position:absolute;
  bottom:0;
  left:0;
  background: #015871;
}

.wave {
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/wave.svg) repeat-x; 
  position: absolute;
  top: -198px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
  top: -175px;
  animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}

@keyframes swell {
  0%, 100% {
    transform: translate3d(0,-25px,0);
  }
  50% {
    transform: translate3d(0,5px,0);
  }
}
      /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            
            z-index: 1000;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    gap: 10px;
    margin-bottom: 94px; /* Add this line for extra space below nav */
}


        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: #ffffff;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;

        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #3335c7, #4ecdc4);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }
