* { box-sizing: border-box; font-family: 'Poppins', sans-serif; margin: 0; padding: 0; }

        body {
            background: linear-gradient(135deg, #2ee7fd, #39a4f6, #00c19a);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .box {
            position: relative;
            background: #fff;
            padding: 48px 40px;
            max-width: 460px;
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            text-align: center;
            animation: fadeIn 0.6s ease;
        }

        h1 {
            font-family: 'Fredoka', sans-serif;
            font-size: 35px;
          	font-weight: 600;
            color: #0f172a;
            margin-top: 18px;
            margin-bottom: 12px;
        }

        h3 {
            font-size: 18px;
            color: #334155;
            margin-bottom: 15px;
        }

        p {
            font-size: 14px;
            color: #475569;
            margin-bottom: 28px;
        }

        .badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #ecfeff;
            color: #0ea5e9;
            font-size: 13px;
            padding: 6px 14px;
            border-radius: 999px;
            font-weight: 500;
            margin-bottom: 16px;
        }

        .visits {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #fef3c7;
            color: #f59e0b;
            font-size: 13px;
            padding: 6px 14px;
            border-radius: 999px;
            font-weight: 500;
            margin-bottom: 16px;
        }

        form { margin-top: 10px; }

        input[type="email"] {
            width: 100%;
            padding: 14px 16px;
            font-size: 14px;
            border-radius: 12px;
            border: 1px solid #cbd5e1;
            margin-bottom: 16px;
        }

        input[type="email"]:focus {
            outline: none;
            border-color: rgba(255,108,71,0.2);
            box-shadow: 0 0 0 3px rgba(255,108,71,0.2);
        }

        button {
            width: 100%;
            padding: 14px;
            margin-bottom: 20px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 14px;
            background: linear-gradient(135deg, #ff6c47, #ffe688);
            color: #fff;
            border: none;
            cursor: pointer;
            transition: transform .15s ease, box-shadow .15s ease;
        }

        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255,108,71,0.35);
        }

        .message {
            font-size: 16px;
            font-weight: 600;
            color: #0f766e;
            margin-top: 20px;
        }

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