body {
            background-color: #f7edf7;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #4a4a4a;
            min-height: 100vh; /* allows content to grow beyond screen height */
            padding-top: 20px;  /* gives space above the logo */
            
        }
        .container-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .header-box {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            margin-top: 60px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .logo {
            font-weight: 800;
            font-size: 3.5rem;
            letter-spacing: 2px;
            margin-bottom: 10px;
            margin-top: 10px;
        }
        .tagline {
            font-weight: 300;
            font-size: 1.5rem;
            margin-bottom: 0;
        }
        .content-box {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .countdown-box {
            background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
            color: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .countdown-number {
            font-size: 2.5rem;
            font-weight: 700;
        }
        .countdown-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .notify-box {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .social-box {
            background: linear-gradient(135deg, #42e695 0%, #3bb2b8 100%);
            color: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .social-icon {
            font-size: 1.8rem;
            margin: 0 15px;
            color: white;
            transition: all 0.3s;
        }
        .social-icon:hover {
            transform: translateY(-5px);
            color: #f7edf7;
        }
        .btn-notify {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 15px;
        }
        .btn-notify:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        h1 {
            color: #333;
            font-weight: 700;
            margin-bottom: 20px;
        }
        p.lead {
            color: #555;
            line-height: 1.6;
            font-size: 1.2rem;
        }
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #6a11cb;
        }
        .feature-box {
            padding: 20px;
            transition: transform 0.3s;
        }
        .feature-box:hover {
            transform: translateY(-5px);
        }
        .feature-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }
        input.form-control {
            padding: 12px 20px;
            border-radius: 50px;
            border: 1px solid #ddd;
        }
        input.form-control:focus {
            box-shadow: 0 0 0 0.25rem rgba(106, 17, 203, 0.25);
            border-color: #6a11cb;
        }