
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f9e6ff 0%, #ffe6f2 100%);
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            flex: 1;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #d63384;
            display: flex;
            align-items: center;
        }

        .logo img {
            margin-right: 10px;
            width: 110px;
            height: auto;
        }

        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 60px 0;
            gap: 40px;
        }

        .hero-content {
            flex: 1;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        h1 {
            font-size: 48px;
            color: #d63384;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .highlight {
            color: #ff66b2;
            position: relative;
            display: inline-block;
        }

        .highlight:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(255, 182, 193, 0.4);
            z-index: -1;
        }

        p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #555;
        }

        .countdown {
            display: flex;
            gap: 15px;
            margin: 40px 0;
        }

        .countdown-item {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            min-width: 80px;
        }

        .countdown-number {
            font-size: 32px;
            font-weight: 700;
            color: #d63384;
        }

        .countdown-label {
            font-size: 14px;
            color: #777;
            margin-top: 5px;
        }

        .notify-form {
            display: flex;
            margin: 30px 0;
            max-width: 500px;
        }

        .notify-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 16px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .notify-button {
            background: #d63384;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 0 50px 50px 0;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .notify-button:hover {
            background: #c22574;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin: 30px 0;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d63384;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #d63384;
            color: white;
            transform: translateY(-3px);
        }

        footer {
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            color: #777;
            font-size: 14px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                text-align: center;
            }
            
            h1 {
                font-size: 36px;
            }
            
            .countdown {
                justify-content: center;
            }
            
            .notify-form {
                flex-direction: column;
                gap: 10px;
            }
            
            .notify-input, .notify-button {
                border-radius: 50px;
                width: 100%;
            }
        }
   