        :root {
            --laptiva-blue: #0962ea;
            --laptiva-yellow: #faf15d;
            --laptiva-gray: #414141;
            --laptiva-light-blue: #e6f0ff;
            --laptiva-white: #ffffff;
            --laptiva-light-gray: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--laptiva-light-blue);
            color: var(--laptiva-gray);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        .heart {display: inline-block; transition: transform 0.3s ease;}
        .heart:hover {transform: scale(1.3);}
        
        /* Soft background elements */
        .soft-bg-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .soft-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.15;
            filter: blur(60px);
        }
        
        .soft-shape-1 {
            width: 600px;
            height: 600px;
            background: var(--laptiva-blue);
            top: -300px;
            left: -200px;
            animation: soft-float 30s infinite ease-in-out;
        }
        
        .soft-shape-2 {
            width: 500px;
            height: 500px;
            background: var(--laptiva-yellow);
            bottom: -200px;
            right: -150px;
            animation: soft-float 35s infinite ease-in-out reverse;
        }
        
        .soft-shape-3 {
            width: 400px;
            height: 400px;
            background: #a8d0ff;
            top: 30%;
            left: 70%;
            animation: soft-float 25s infinite ease-in-out;
        }
        
        @keyframes soft-float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -20px) scale(1.05); }
            66% { transform: translate(-20px, 15px) scale(0.95); }
        }
        
        /* Main container */
        .main-container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 3rem 0px 1rem 0px;
            position: relative;
            z-index: 1;
        }
        
        /* Header & Logo */
        .logo-container {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 4.2rem;
            background: linear-gradient(135deg, var(--laptiva-blue), #2b82fa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }
        
        .logo-subtitle {
            font-size: 1rem;
            color: var(--laptiva-gray);
            letter-spacing: 4px;
            text-transform: uppercase;
            opacity: 0.8;
            position: relative;
            display: inline-block;
            padding: 0 20px;
        }
        
        .logo-subtitle::before, .logo-subtitle::after {
            content: '•';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--laptiva-blue);
            font-size: 1.2rem;
        }
        
        .logo-subtitle::before {
            left: 0;
        }
        
        .logo-subtitle::after {
            right: 0;
        }
        
        /* Main content */
        .hero-section {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }
        
        .hero-title {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: var(--laptiva-gray);
        }
        
        .hero-title span {
            color: var(--laptiva-blue);
            position: relative;
        }
        
        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 6px;
            background: rgba(9, 98, 234, 0.1);
            border-radius: 3px;
            z-index: -1;
        }
        
        .hero-description {
            font-size: 1.04rem;
            color: #414141;
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        
        /* Countdown Section */
        .countdown-section {
            margin: 0rem auto;
            max-width: 900px;
        }
        
        .countdown-title {
            text-align: center;
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            color: var(--laptiva-blue);
            font-weight: 600;
        }
        
        .countdown-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        
        .countdown-item {
            background: var(--laptiva-white);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            min-width: 150px;
            text-align: center;
            border: none;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(9, 98, 234, 0.08);
        }
        
        .countdown-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(9, 98, 234, 0.15);
        }
        
        .countdown-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--laptiva-blue), #a8d0ff);
        }
        
        .countdown-value {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--laptiva-blue);
            line-height: 1;
            margin-bottom: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .countdown-label {
            font-size: 1rem;
            color: #777;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }
        
        /* Launch Progress */
        .launch-progress {
            max-width: 700px;
            margin: 3rem auto;
            background: var(--laptiva-white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(9, 98, 234, 0.08);
        }
        
        .progress-text {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: var(--laptiva-gray);
            font-weight: 500;
        }
        
        .progress-bar-container {
            height: 12px;
            background: #e9ecef;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            background: linear-gradient(to right, var(--laptiva-blue), #2b82fa);
            border-radius: 10px;
            width: 85%;
            position: relative;
            animation: progressAnimation 2s ease-out;
        }
        
        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shine 3s infinite;
        }
        
        @keyframes progressAnimation {
            0% { width: 0%; }
            100% { width: 85%; }
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        /* Notify Form */
        .notify-section {
            max-width: 700px;
            margin: 3rem auto;
            background: var(--laptiva-white);
            border-radius: 25px;
            padding: 3rem;
            box-shadow: 0 15px 40px rgba(9, 98, 234, 0.1);
            border: 1px solid rgba(9, 98, 234, 0.05);
        }
        
        .notify-title {
            font-size: 2rem;
            margin-bottom: 1rem;
            text-align: center;
            color: var(--laptiva-gray);
        }
        
        .notify-description {
            text-align: center;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .notify-form {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }
        
        .form-input {
            flex: 1;
            min-width: 250px;
            padding: 1.1rem 1.8rem;
            background: var(--laptiva-light-blue);
            border: 2px solid transparent;
            border-radius: 50px;
            color: var(--laptiva-gray);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--laptiva-blue);
            background: white;
            box-shadow: 0 0 0 4px rgba(9, 98, 234, 0.1);
        }
        
        .form-input::placeholder {
            color: #999;
        }
        
        .submit-btn {
            padding: 1.1rem 2.8rem;
            background: linear-gradient(to right, var(--laptiva-blue), #2b82fa);
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(9, 98, 234, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(9, 98, 234, 0.3);
        }
        
        .submit-btn:active {
            transform: translateY(0);
        }
        
        /* Social Links */
        .social-section {
            text-align: center;
            margin: 3rem 0;
        }
        
        .social-title {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: #666;
            font-weight: 500;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: white;
            border: 1px solid rgba(9, 98, 234, 0.1);
            color: var(--laptiva-blue);
            font-size: 1.3rem;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .social-link:hover {
            transform: translateY(-5px);
            background: var(--laptiva-blue);
            color: white;
            box-shadow: 0 10px 20px rgba(9, 98, 234, 0.2);
        }
        
        /* Footer */
        .footer {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(9, 98, 234, 0.1);
            color: #777;
        }
        
        .contact-link {
            color: var(--laptiva-blue);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .contact-link:hover {
            color: #084bc8;
            text-decoration: underline;
        }
        
        /* Floating animation */
        .floating {
            animation: floating 4s ease-in-out infinite;
        }
        
        @keyframes floating {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }
        
        /* Pulse animation */
        .pulse {
            animation: pulse 2.5s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(9, 98, 234, 0.4); }
            70% { box-shadow: 0 0 0 12px rgba(9, 98, 234, 0); }
            100% { box-shadow: 0 0 0 0 rgba(9, 98, 234, 0); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .logo {
                font-size: 3.5rem;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .countdown-item {
                min-width: 130px;
                padding: 1.8rem 1.2rem;
            }
            
            .countdown-value {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .logo {
                font-size: 3rem;
            }
            
            .hero-title {
                font-size: 2.4rem;
            }
            
            .countdown-item {
                min-width: 110px;
                padding: 1.5rem 1rem;
            }
            
            .countdown-value {
                font-size: 2.5rem;
            }
            
            .notify-section {
                padding: 2.5rem 1.8rem;
            }
            
            .form-input, .submit-btn {
                width: 100%;
            }
            
            .soft-shape-1, .soft-shape-2, .soft-shape-3 {
                opacity: 0.1;
            }
        }
        
        @media (max-width: 576px) {
            .logo {
                font-size: 2.5rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .countdown-container {
                gap: 1rem;
            }
            
            .countdown-item {
                min-width: 100px;
                padding: 1.3rem 0.8rem;
            }
            
            .countdown-value {
                font-size: 2.2rem;
            }
            
            .notify-section {
                padding: 2rem 1.5rem;
            }
            
            .logo-subtitle {
                letter-spacing: 2px;
                font-size: 1rem;
            }
        }
        
        /* Success message styling */
        .success-message {
            background: linear-gradient(to right, #4CAF50, #8BC34A);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 1rem;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }