
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #000000 0%, #1a0000 25%, #330000 50%, #000000 75%, #000000 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow: hidden;
            position: relative;
        }

        /* Floating decorative elements */
        .floating-element {
            position: absolute;
            animation: float 6s ease-in-out infinite;
            opacity: 0.8;
        }

        .element-1 {
            top: 10%;
            left: 15%;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #fb0605, #cd4e4e);
            border-radius: 50% 20% 50% 20%;
            animation-delay: 0s;
        }

        .element-2 {
            top: 15%;
            right: 20%;
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #fb0605, #cd4e4e);
            border-radius: 20% 50% 20% 50%;
            animation-delay: 2s;
        }

        .element-3 {
            bottom: 20%;
            left: 10%;
            width: 50px;
            height: 30px;
            background: linear-gradient(45deg, #fb0605, #cd4e4e);
            border-radius: 50px;
            animation-delay: 4s;
        }

        .element-4 {
            bottom: 10%;
            right: 15%;
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, #fb0605, #cd4e4e);
            border-radius: 30% 70% 30% 70%;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-20px) rotate(5deg); }
            50% { transform: translateY(-15px) rotate(-5deg); }
            75% { transform: translateY(-25px) rotate(3deg); }
        }

       .container {
    background: rgba(255, 255, 255, 0.7); /* Lower opacity for more transparency */
    backdrop-filter: blur(10px); /* Increase blur for a frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.5); /* Subtle white border for glass-like edge */
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); /* Softer shadow for depth */
    position: relative;
    z-index: 10;
    animation: slideUp 1s ease-out;
}
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
            animation: fadeIn 1s ease-out 0.3s both;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #fb0605, #7f0202);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 600;
            color: #2d3748;
        }

        .imgLogo{
           width: 300px;
           
        }

        .cooking-icon {
            font-size: 60px;
            margin-bottom: 30px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .status-text {
            font-size: 16px;
            color: #6b7280;
            font-weight: 500;
            letter-spacing: 2px;
            margin-bottom: 20px;
            animation: fadeIn 1s ease-out 0.6s both;
        }

        .main-heading {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, #1e293b, #334155);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 30px;
            line-height: 1.2;
            animation: fadeIn 1s ease-out 0.9s both;
            padding-bottom: 5px;
            /* border: solid red 2px; */
        }

        .description {
            font-size: 18px;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 40px;
            animation: fadeIn 1s ease-out 1.2s both;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .notify-btn {
            background: linear-gradient(135deg, #1e293b, #334155);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(30, 41, 59, 0.3);
            animation: fadeIn 1s ease-out 1.5s both;
        }

        .notify-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(30, 41, 59, 0.4);
            background: linear-gradient(135deg, #0f172a, #1e293b);
        }

        .notify-btn:active {
            transform: translateY(-1px);
        }

        .email-icon {
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e293b;
            font-size: 12px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
            animation: fadeIn 1s ease-out 1.8s both;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(107, 114, 128, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #6b7280;
            transition: all 0.3s ease;
            font-size: 20px;
        }

        .social-link:hover {
            background: rgba(107, 114, 128, 0.2);
            transform: translateY(-3px);
            color: #fb0605;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 40px 30px;
                margin: 20px;
            }

            .main-heading {
                font-size: 36px;
            }

            .description {
                font-size: 16px;
            }

            .floating-element {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 30px 20px;
            }

            .main-heading {
                font-size: 28px;
            }

            .notify-btn {
                padding: 14px 28px;
                font-size: 14px;
            }
        }
      