@charset "utf-8";
/* CSS Document */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Oswald", sans-serif;
        }

        body {
/*            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);*/
			background: #ffffff;
           
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            overflow-x: hidden;
        }

        .container {
            max-width: 98%;
            width: 98vw; /* Takes up 90% of the viewport width */
     		 height: 94vh; /* Takes up 70% of the viewport height */
/*            padding: 40px 20px;padding: 40px 20px;*/
			border-radius: 20px;
			border: 9px solid #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
			background: #E9D1E7;
            background: linear-gradient(133deg,rgba(233, 209, 231, 1) 0%, rgba(215, 230, 252, 1) 27%, rgba(250, 249, 255, 1) 62%, rgba(248, 242, 251, 1) 100%);
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 15px;
            color: #ffde59;
        }

        .main-content {
            max-width: 800px;
            margin: 0 auto;
			margin-top: 130px;
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
			font-weight: 500;
/*            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);*/
        }

        .highlight {
            color: #f67474;
            position: relative;
            display: inline-block;
        }

        .highlight:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background-color: rgba(255, 222, 89, 0.2);
            z-index: -1;
        }

        .subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            line-height: 1.6;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 50px 0;
            flex-wrap: wrap;
        }

        .countdown-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px 20px;
            min-width: 130px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .countdown-value {
            font-size: 3.5rem;
            font-weight: 700;
            display: block;
            line-height: 1;
        }

        .countdown-label {
            font-size: 1rem;
            opacity: 0.8;
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .notify-form {
            max-width: 600px;
            margin: 50px auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
           /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);*/
        }

        .form-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .form-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        input {
            flex: 1;
            min-width: 250px;
            padding: 18px 25px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        input:focus {
            outline: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            background: white;
        }

        button {
            background: #ffde59;
            color: #333;
            border: none;
            border-radius: 50px;
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 222, 89, 0.3);
        }

        button:hover {
            background: #ffd32a;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 222, 89, 0.4);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 50px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .footer {
            margin-top: 60px;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .success-message {
            display: none;
            background: rgba(76, 217, 100, 0.2);
            border-left: 4px solid #4cd964;
            padding: 15px 20px;
            margin-top: 20px;
            border-radius: 0 8px 8px 0;
            text-align: left;
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            animation: fadeInUp 0.8s ease forwards;
        }

        .delay-1 { animation-delay: 0.2s; opacity: 0; }
        .delay-2 { animation-delay: 0.4s; opacity: 0; }
        .delay-3 { animation-delay: 0.6s; opacity: 0; }
        .delay-4 { animation-delay: 0.8s; opacity: 0; }
        .delay-5 { animation-delay: 1s; opacity: 0; }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .countdown-box {
                min-width: 100px;
                padding: 20px 15px;
            }
            
            .countdown-value {
                font-size: 2.8rem;
            }
            
            .notify-form {
                padding: 30px 20px;
            }
            
            .form-group {
                flex-direction: column;
            }
            
            input {
                min-width: 100%;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            
            .countdown-box {
                min-width: 80px;
                padding: 15px 10px;
            }
            
            .countdown-value {
                font-size: 2.2rem;
            }
            
            .logo {
                font-size: 2rem;
            }
        }




.macbook-screen {
    width: 800px; /* Adjust as needed */
    height: 500px; /* Adjust as needed */
    background-color: #1a1a1a;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dynamic-island {
	 
    position: absolute;
    top: 0px; /* Adjust position */
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 0px 0px 20px 20px; /* Rounded pill shape */
    padding: 3px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px; /* Initial size */
   
    transition: all 0.3s ease-in-out; /* Smooth transitions for expansion */
    color: white;
    font-size: 14px;
	
	

}

.dynamic-island.expanded {
    min-width: 400px; /* Expanded size */
    height: 60px; /* Expanded height */
    border-radius: 30px;
    padding: 10px 20px;
}

.island-content {
    display: flex;
    align-items: center;
    gap: 10px;
}


.error-message {
    background-color: #ffe6e6;
    border: 1px solid #ff9999;
    color: #cc0000;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.success-message {
    background-color: #e6ffe6;
    border: 1px solid #99ff99;
    color: #006600;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group {
    position: relative;
}

.form-group input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}